2005-03-01 22:37:28 +01:00
|
|
|
/*
|
2008-01-23 00:25:15 +01:00
|
|
|
* QEMU Cocoa CG display driver
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2008-01-23 00:25:15 +01:00
|
|
|
* Copyright (c) 2008 Mike Kronenberg
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2005-03-01 22:37:28 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2005-03-02 23:22:43 +01:00
|
|
|
|
2016-01-29 17:23:34 +01:00
|
|
|
#include "qemu/osdep.h"
|
|
|
|
|
2005-03-01 22:37:28 +01:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2011-05-29 19:42:51 +02:00
|
|
|
#include <crt_externs.h>
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#include "qemu-common.h"
|
2021-06-16 16:19:54 +02:00
|
|
|
#include "ui/clipboard.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2013-12-04 14:08:04 +01:00
|
|
|
#include "ui/input.h"
|
2021-03-10 15:46:02 +01:00
|
|
|
#include "ui/kbd-state.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2019-08-12 07:23:59 +02:00
|
|
|
#include "sysemu/runstate.h"
|
2020-06-29 11:35:03 +02:00
|
|
|
#include "sysemu/cpu-throttle.h"
|
2018-02-01 12:18:31 +01:00
|
|
|
#include "qapi/error.h"
|
2018-12-20 09:45:59 +01:00
|
|
|
#include "qapi/qapi-commands-block.h"
|
2020-10-12 14:15:33 +02:00
|
|
|
#include "qapi/qapi-commands-machine.h"
|
2018-12-20 09:45:59 +01:00
|
|
|
#include "qapi/qapi-commands-misc.h"
|
2015-06-19 11:53:27 +02:00
|
|
|
#include "sysemu/blockdev.h"
|
2016-08-16 04:11:06 +02:00
|
|
|
#include "qemu-version.h"
|
2021-03-09 13:22:25 +01:00
|
|
|
#include "qemu/cutils.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2016-03-23 15:26:18 +01:00
|
|
|
#include <Carbon/Carbon.h>
|
2019-07-09 17:20:52 +02:00
|
|
|
#include "hw/core/cpu.h"
|
2005-03-02 23:22:43 +01:00
|
|
|
|
2019-02-01 08:12:25 +01:00
|
|
|
#ifndef MAC_OS_X_VERSION_10_13
|
|
|
|
#define MAC_OS_X_VERSION_10_13 101300
|
|
|
|
#endif
|
2009-12-13 00:45:40 +01:00
|
|
|
|
2019-02-01 08:12:25 +01:00
|
|
|
/* 10.14 deprecates NSOnState and NSOffState in favor of
|
|
|
|
* NSControlStateValueOn/Off, which were introduced in 10.13.
|
|
|
|
* Define for older versions
|
|
|
|
*/
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_13
|
|
|
|
#define NSControlStateValueOn NSOnState
|
|
|
|
#define NSControlStateValueOff NSOffState
|
|
|
|
#endif
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
//#define DEBUG
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define COCOA_DEBUG(...) { (void) fprintf (stdout, __VA_ARGS__); }
|
2007-06-10 18:07:38 +02:00
|
|
|
#else
|
2008-01-23 00:25:15 +01:00
|
|
|
#define COCOA_DEBUG(...) ((void) 0)
|
2007-06-10 18:07:38 +02:00
|
|
|
#endif
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
#define cgrect(nsrect) (*(CGRect *)&(nsrect))
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
typedef struct {
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
} QEMUScreen;
|
|
|
|
|
2021-02-19 09:44:19 +01:00
|
|
|
static void cocoa_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
|
|
|
|
|
|
|
static void cocoa_switch(DisplayChangeListener *dcl,
|
|
|
|
DisplaySurface *surface);
|
|
|
|
|
|
|
|
static void cocoa_refresh(DisplayChangeListener *dcl);
|
|
|
|
|
2021-02-25 09:42:02 +01:00
|
|
|
static NSWindow *normalWindow, *about_window;
|
2021-02-19 09:44:19 +01:00
|
|
|
static const DisplayChangeListenerOps dcl_ops = {
|
|
|
|
.dpy_name = "cocoa",
|
|
|
|
.dpy_gfx_update = cocoa_update,
|
|
|
|
.dpy_gfx_switch = cocoa_switch,
|
|
|
|
.dpy_refresh = cocoa_refresh,
|
|
|
|
};
|
|
|
|
static DisplayChangeListener dcl = {
|
|
|
|
.ops = &dcl_ops,
|
|
|
|
};
|
2013-12-04 14:08:04 +01:00
|
|
|
static int last_buttons;
|
2020-02-06 12:27:50 +01:00
|
|
|
static int cursor_hide = 1;
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2021-02-25 09:42:02 +01:00
|
|
|
static int gArgc;
|
|
|
|
static char **gArgv;
|
|
|
|
static bool stretch_video;
|
|
|
|
static NSTextField *pauseLabel;
|
|
|
|
static NSArray * supportedImageFileTypes;
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
static QemuSemaphore display_init_sem;
|
|
|
|
static QemuSemaphore app_started_sem;
|
2019-10-15 03:07:34 +02:00
|
|
|
static bool allow_events;
|
2019-02-25 11:24:33 +01:00
|
|
|
|
2021-06-16 16:19:54 +02:00
|
|
|
static NSInteger cbchangecount = -1;
|
|
|
|
static QemuClipboardInfo *cbinfo;
|
|
|
|
static QemuEvent cbevent;
|
|
|
|
|
2019-02-25 11:24:31 +01:00
|
|
|
// Utility functions to run specified code block with iothread lock held
|
2019-02-25 11:24:27 +01:00
|
|
|
typedef void (^CodeBlock)(void);
|
2019-02-25 11:24:31 +01:00
|
|
|
typedef bool (^BoolCodeBlock)(void);
|
2019-02-25 11:24:27 +01:00
|
|
|
|
|
|
|
static void with_iothread_lock(CodeBlock block)
|
|
|
|
{
|
|
|
|
bool locked = qemu_mutex_iothread_locked();
|
|
|
|
if (!locked) {
|
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
}
|
|
|
|
block();
|
|
|
|
if (!locked) {
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:31 +01:00
|
|
|
static bool bool_with_iothread_lock(BoolCodeBlock block)
|
|
|
|
{
|
|
|
|
bool locked = qemu_mutex_iothread_locked();
|
|
|
|
bool val;
|
|
|
|
|
|
|
|
if (!locked) {
|
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
}
|
|
|
|
val = block();
|
|
|
|
if (!locked) {
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2016-03-23 15:26:18 +01:00
|
|
|
// Mac to QKeyCode conversion
|
2021-02-25 09:42:02 +01:00
|
|
|
static const int mac_to_qkeycode_map[] = {
|
2016-03-23 15:26:18 +01:00
|
|
|
[kVK_ANSI_A] = Q_KEY_CODE_A,
|
|
|
|
[kVK_ANSI_B] = Q_KEY_CODE_B,
|
|
|
|
[kVK_ANSI_C] = Q_KEY_CODE_C,
|
|
|
|
[kVK_ANSI_D] = Q_KEY_CODE_D,
|
|
|
|
[kVK_ANSI_E] = Q_KEY_CODE_E,
|
|
|
|
[kVK_ANSI_F] = Q_KEY_CODE_F,
|
|
|
|
[kVK_ANSI_G] = Q_KEY_CODE_G,
|
|
|
|
[kVK_ANSI_H] = Q_KEY_CODE_H,
|
|
|
|
[kVK_ANSI_I] = Q_KEY_CODE_I,
|
|
|
|
[kVK_ANSI_J] = Q_KEY_CODE_J,
|
|
|
|
[kVK_ANSI_K] = Q_KEY_CODE_K,
|
|
|
|
[kVK_ANSI_L] = Q_KEY_CODE_L,
|
|
|
|
[kVK_ANSI_M] = Q_KEY_CODE_M,
|
|
|
|
[kVK_ANSI_N] = Q_KEY_CODE_N,
|
|
|
|
[kVK_ANSI_O] = Q_KEY_CODE_O,
|
|
|
|
[kVK_ANSI_P] = Q_KEY_CODE_P,
|
|
|
|
[kVK_ANSI_Q] = Q_KEY_CODE_Q,
|
|
|
|
[kVK_ANSI_R] = Q_KEY_CODE_R,
|
|
|
|
[kVK_ANSI_S] = Q_KEY_CODE_S,
|
|
|
|
[kVK_ANSI_T] = Q_KEY_CODE_T,
|
|
|
|
[kVK_ANSI_U] = Q_KEY_CODE_U,
|
|
|
|
[kVK_ANSI_V] = Q_KEY_CODE_V,
|
|
|
|
[kVK_ANSI_W] = Q_KEY_CODE_W,
|
|
|
|
[kVK_ANSI_X] = Q_KEY_CODE_X,
|
|
|
|
[kVK_ANSI_Y] = Q_KEY_CODE_Y,
|
|
|
|
[kVK_ANSI_Z] = Q_KEY_CODE_Z,
|
|
|
|
|
|
|
|
[kVK_ANSI_0] = Q_KEY_CODE_0,
|
|
|
|
[kVK_ANSI_1] = Q_KEY_CODE_1,
|
|
|
|
[kVK_ANSI_2] = Q_KEY_CODE_2,
|
|
|
|
[kVK_ANSI_3] = Q_KEY_CODE_3,
|
|
|
|
[kVK_ANSI_4] = Q_KEY_CODE_4,
|
|
|
|
[kVK_ANSI_5] = Q_KEY_CODE_5,
|
|
|
|
[kVK_ANSI_6] = Q_KEY_CODE_6,
|
|
|
|
[kVK_ANSI_7] = Q_KEY_CODE_7,
|
|
|
|
[kVK_ANSI_8] = Q_KEY_CODE_8,
|
|
|
|
[kVK_ANSI_9] = Q_KEY_CODE_9,
|
|
|
|
|
|
|
|
[kVK_ANSI_Grave] = Q_KEY_CODE_GRAVE_ACCENT,
|
|
|
|
[kVK_ANSI_Minus] = Q_KEY_CODE_MINUS,
|
|
|
|
[kVK_ANSI_Equal] = Q_KEY_CODE_EQUAL,
|
|
|
|
[kVK_Delete] = Q_KEY_CODE_BACKSPACE,
|
|
|
|
[kVK_CapsLock] = Q_KEY_CODE_CAPS_LOCK,
|
|
|
|
[kVK_Tab] = Q_KEY_CODE_TAB,
|
|
|
|
[kVK_Return] = Q_KEY_CODE_RET,
|
|
|
|
[kVK_ANSI_LeftBracket] = Q_KEY_CODE_BRACKET_LEFT,
|
|
|
|
[kVK_ANSI_RightBracket] = Q_KEY_CODE_BRACKET_RIGHT,
|
|
|
|
[kVK_ANSI_Backslash] = Q_KEY_CODE_BACKSLASH,
|
|
|
|
[kVK_ANSI_Semicolon] = Q_KEY_CODE_SEMICOLON,
|
|
|
|
[kVK_ANSI_Quote] = Q_KEY_CODE_APOSTROPHE,
|
|
|
|
[kVK_ANSI_Comma] = Q_KEY_CODE_COMMA,
|
|
|
|
[kVK_ANSI_Period] = Q_KEY_CODE_DOT,
|
|
|
|
[kVK_ANSI_Slash] = Q_KEY_CODE_SLASH,
|
|
|
|
[kVK_Space] = Q_KEY_CODE_SPC,
|
|
|
|
|
|
|
|
[kVK_ANSI_Keypad0] = Q_KEY_CODE_KP_0,
|
|
|
|
[kVK_ANSI_Keypad1] = Q_KEY_CODE_KP_1,
|
|
|
|
[kVK_ANSI_Keypad2] = Q_KEY_CODE_KP_2,
|
|
|
|
[kVK_ANSI_Keypad3] = Q_KEY_CODE_KP_3,
|
|
|
|
[kVK_ANSI_Keypad4] = Q_KEY_CODE_KP_4,
|
|
|
|
[kVK_ANSI_Keypad5] = Q_KEY_CODE_KP_5,
|
|
|
|
[kVK_ANSI_Keypad6] = Q_KEY_CODE_KP_6,
|
|
|
|
[kVK_ANSI_Keypad7] = Q_KEY_CODE_KP_7,
|
|
|
|
[kVK_ANSI_Keypad8] = Q_KEY_CODE_KP_8,
|
|
|
|
[kVK_ANSI_Keypad9] = Q_KEY_CODE_KP_9,
|
|
|
|
[kVK_ANSI_KeypadDecimal] = Q_KEY_CODE_KP_DECIMAL,
|
|
|
|
[kVK_ANSI_KeypadEnter] = Q_KEY_CODE_KP_ENTER,
|
|
|
|
[kVK_ANSI_KeypadPlus] = Q_KEY_CODE_KP_ADD,
|
|
|
|
[kVK_ANSI_KeypadMinus] = Q_KEY_CODE_KP_SUBTRACT,
|
|
|
|
[kVK_ANSI_KeypadMultiply] = Q_KEY_CODE_KP_MULTIPLY,
|
|
|
|
[kVK_ANSI_KeypadDivide] = Q_KEY_CODE_KP_DIVIDE,
|
|
|
|
[kVK_ANSI_KeypadEquals] = Q_KEY_CODE_KP_EQUALS,
|
|
|
|
[kVK_ANSI_KeypadClear] = Q_KEY_CODE_NUM_LOCK,
|
|
|
|
|
|
|
|
[kVK_UpArrow] = Q_KEY_CODE_UP,
|
|
|
|
[kVK_DownArrow] = Q_KEY_CODE_DOWN,
|
|
|
|
[kVK_LeftArrow] = Q_KEY_CODE_LEFT,
|
|
|
|
[kVK_RightArrow] = Q_KEY_CODE_RIGHT,
|
|
|
|
|
|
|
|
[kVK_Help] = Q_KEY_CODE_INSERT,
|
|
|
|
[kVK_Home] = Q_KEY_CODE_HOME,
|
|
|
|
[kVK_PageUp] = Q_KEY_CODE_PGUP,
|
|
|
|
[kVK_PageDown] = Q_KEY_CODE_PGDN,
|
|
|
|
[kVK_End] = Q_KEY_CODE_END,
|
|
|
|
[kVK_ForwardDelete] = Q_KEY_CODE_DELETE,
|
|
|
|
|
|
|
|
[kVK_Escape] = Q_KEY_CODE_ESC,
|
|
|
|
|
|
|
|
/* The Power key can't be used directly because the operating system uses
|
|
|
|
* it. This key can be emulated by using it in place of another key such as
|
|
|
|
* F1. Don't forget to disable the real key binding.
|
|
|
|
*/
|
|
|
|
/* [kVK_F1] = Q_KEY_CODE_POWER, */
|
|
|
|
|
|
|
|
[kVK_F1] = Q_KEY_CODE_F1,
|
|
|
|
[kVK_F2] = Q_KEY_CODE_F2,
|
|
|
|
[kVK_F3] = Q_KEY_CODE_F3,
|
|
|
|
[kVK_F4] = Q_KEY_CODE_F4,
|
|
|
|
[kVK_F5] = Q_KEY_CODE_F5,
|
|
|
|
[kVK_F6] = Q_KEY_CODE_F6,
|
|
|
|
[kVK_F7] = Q_KEY_CODE_F7,
|
|
|
|
[kVK_F8] = Q_KEY_CODE_F8,
|
|
|
|
[kVK_F9] = Q_KEY_CODE_F9,
|
|
|
|
[kVK_F10] = Q_KEY_CODE_F10,
|
|
|
|
[kVK_F11] = Q_KEY_CODE_F11,
|
|
|
|
[kVK_F12] = Q_KEY_CODE_F12,
|
|
|
|
[kVK_F13] = Q_KEY_CODE_PRINT,
|
|
|
|
[kVK_F14] = Q_KEY_CODE_SCROLL_LOCK,
|
|
|
|
[kVK_F15] = Q_KEY_CODE_PAUSE,
|
|
|
|
|
2021-02-12 01:04:04 +01:00
|
|
|
// JIS keyboards only
|
|
|
|
[kVK_JIS_Yen] = Q_KEY_CODE_YEN,
|
|
|
|
[kVK_JIS_Underscore] = Q_KEY_CODE_RO,
|
|
|
|
[kVK_JIS_KeypadComma] = Q_KEY_CODE_KP_COMMA,
|
|
|
|
[kVK_JIS_Eisu] = Q_KEY_CODE_MUHENKAN,
|
|
|
|
[kVK_JIS_Kana] = Q_KEY_CODE_HENKAN,
|
|
|
|
|
2016-03-23 15:26:18 +01:00
|
|
|
/*
|
|
|
|
* The eject and volume keys can't be used here because they are handled at
|
|
|
|
* a lower level than what an Application can see.
|
|
|
|
*/
|
2005-03-01 22:37:28 +01:00
|
|
|
};
|
|
|
|
|
2009-12-13 00:55:53 +01:00
|
|
|
static int cocoa_keycode_to_qemu(int keycode)
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2016-03-23 15:26:18 +01:00
|
|
|
if (ARRAY_SIZE(mac_to_qkeycode_map) <= keycode) {
|
2021-02-23 14:11:06 +01:00
|
|
|
error_report("(cocoa) warning unknown keycode 0x%x", keycode);
|
2005-03-01 22:37:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2016-03-23 15:26:18 +01:00
|
|
|
return mac_to_qkeycode_map[keycode];
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2015-06-19 11:53:27 +02:00
|
|
|
/* Displays an alert dialog box with the specified message */
|
|
|
|
static void QEMU_Alert(NSString *message)
|
|
|
|
{
|
|
|
|
NSAlert *alert;
|
|
|
|
alert = [NSAlert new];
|
|
|
|
[alert setMessageText: message];
|
|
|
|
[alert runModal];
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2015-06-19 11:53:27 +02:00
|
|
|
/* Handles any errors that happen with a device transaction */
|
|
|
|
static void handleAnyDeviceErrors(Error * err)
|
|
|
|
{
|
|
|
|
if (err) {
|
|
|
|
QEMU_Alert([NSString stringWithCString: error_get_pretty(err)
|
|
|
|
encoding: NSASCIIStringEncoding]);
|
|
|
|
error_free(err);
|
|
|
|
}
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2005-03-01 22:37:28 +01:00
|
|
|
/*
|
|
|
|
------------------------------------------------------
|
2008-01-23 00:25:15 +01:00
|
|
|
QemuCocoaView
|
2005-03-01 22:37:28 +01:00
|
|
|
------------------------------------------------------
|
|
|
|
*/
|
2008-01-23 00:25:15 +01:00
|
|
|
@interface QemuCocoaView : NSView
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
QEMUScreen screen;
|
|
|
|
NSWindow *fullScreenWindow;
|
|
|
|
float cx,cy,cw,ch,cdx,cdy;
|
2019-02-25 11:24:33 +01:00
|
|
|
pixman_image_t *pixman_image;
|
2021-03-10 15:46:02 +01:00
|
|
|
QKbdState *kbd;
|
2013-12-08 23:59:03 +01:00
|
|
|
BOOL isMouseGrabbed;
|
2008-01-23 00:25:15 +01:00
|
|
|
BOOL isFullscreen;
|
|
|
|
BOOL isAbsoluteEnabled;
|
|
|
|
}
|
2019-02-25 11:24:28 +01:00
|
|
|
- (void) switchSurface:(pixman_image_t *)image;
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) grabMouse;
|
|
|
|
- (void) ungrabMouse;
|
|
|
|
- (void) toggleFullScreen:(id)sender;
|
2017-11-07 11:14:14 +01:00
|
|
|
- (void) handleMonitorInput:(NSEvent *)event;
|
2019-02-25 11:24:31 +01:00
|
|
|
- (bool) handleEvent:(NSEvent *)event;
|
|
|
|
- (bool) handleEventLocked:(NSEvent *)event;
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
|
2014-06-23 11:35:24 +02:00
|
|
|
/* The state surrounding mouse grabbing is potentially confusing.
|
|
|
|
* isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
|
|
|
|
* pointing device an absolute-position one?"], but is only updated on
|
|
|
|
* next refresh.
|
|
|
|
* isMouseGrabbed tracks whether GUI events are directed to the guest;
|
|
|
|
* it controls whether special keys like Cmd get sent to the guest,
|
|
|
|
* and whether we capture the mouse when in non-absolute mode.
|
|
|
|
*/
|
2013-12-08 23:59:03 +01:00
|
|
|
- (BOOL) isMouseGrabbed;
|
2008-01-23 00:25:15 +01:00
|
|
|
- (BOOL) isAbsoluteEnabled;
|
|
|
|
- (float) cdx;
|
|
|
|
- (float) cdy;
|
|
|
|
- (QEMUScreen) gscreen;
|
2015-09-26 00:14:00 +02:00
|
|
|
- (void) raiseAllKeys;
|
2008-01-23 00:25:15 +01:00
|
|
|
@end
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2011-06-09 20:53:32 +02:00
|
|
|
QemuCocoaView *cocoaView;
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
@implementation QemuCocoaView
|
|
|
|
- (id)initWithFrame:(NSRect)frameRect
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
self = [super initWithFrame:frameRect];
|
|
|
|
if (self) {
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
screen.width = frameRect.size.width;
|
|
|
|
screen.height = frameRect.size.height;
|
2021-03-10 15:46:02 +01:00
|
|
|
kbd = qkbd_state_init(dcl.con);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaView: dealloc\n");
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2021-02-12 01:06:29 +01:00
|
|
|
if (pixman_image) {
|
2019-02-25 11:24:33 +01:00
|
|
|
pixman_image_unref(pixman_image);
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2021-03-10 15:46:02 +01:00
|
|
|
qkbd_state_free(kbd);
|
2008-01-23 00:25:15 +01:00
|
|
|
[super dealloc];
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2009-12-13 02:03:33 +01:00
|
|
|
- (BOOL) isOpaque
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2014-06-23 11:35:23 +02:00
|
|
|
- (BOOL) screenContainsPoint:(NSPoint) p
|
|
|
|
{
|
|
|
|
return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
|
|
|
|
}
|
|
|
|
|
2019-06-04 11:36:00 +02:00
|
|
|
/* Get location of event and convert to virtual screen coordinate */
|
|
|
|
- (CGPoint) screenLocationOfEvent:(NSEvent *)ev
|
|
|
|
{
|
|
|
|
NSWindow *eventWindow = [ev window];
|
|
|
|
// XXX: Use CGRect and -convertRectFromScreen: to support macOS 10.10
|
|
|
|
CGRect r = CGRectZero;
|
|
|
|
r.origin = [ev locationInWindow];
|
|
|
|
if (!eventWindow) {
|
|
|
|
if (!isFullscreen) {
|
|
|
|
return [[self window] convertRectFromScreen:r].origin;
|
|
|
|
} else {
|
|
|
|
CGPoint locationInSelfWindow = [[self window] convertRectFromScreen:r].origin;
|
|
|
|
CGPoint loc = [self convertPoint:locationInSelfWindow fromView:nil];
|
|
|
|
if (stretch_video) {
|
|
|
|
loc.x /= cdx;
|
|
|
|
loc.y /= cdy;
|
|
|
|
}
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
} else if ([[self window] isEqual:eventWindow]) {
|
|
|
|
if (!isFullscreen) {
|
|
|
|
return r.origin;
|
|
|
|
} else {
|
|
|
|
CGPoint loc = [self convertPoint:r.origin fromView:nil];
|
|
|
|
if (stretch_video) {
|
|
|
|
loc.x /= cdx;
|
|
|
|
loc.y /= cdy;
|
|
|
|
}
|
|
|
|
return loc;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return [[self window] convertRectFromScreen:[eventWindow convertRectToScreen:r]].origin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-23 11:35:25 +02:00
|
|
|
- (void) hideCursor
|
|
|
|
{
|
|
|
|
if (!cursor_hide) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
[NSCursor hide];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) unhideCursor
|
|
|
|
{
|
|
|
|
if (!cursor_hide) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
[NSCursor unhide];
|
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) drawRect:(NSRect) rect
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaView: drawRect\n");
|
|
|
|
|
|
|
|
// get CoreGraphic context
|
2019-02-01 08:12:25 +01:00
|
|
|
CGContextRef viewContextRef = [[NSGraphicsContext currentContext] CGContext];
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
|
|
|
|
CGContextSetShouldAntialias (viewContextRef, NO);
|
|
|
|
|
|
|
|
// draw screen bitmap directly to Core Graphics context
|
2021-02-12 01:06:29 +01:00
|
|
|
if (!pixman_image) {
|
2013-12-24 03:51:47 +01:00
|
|
|
// Draw request before any guest device has set up a framebuffer:
|
|
|
|
// just draw an opaque black rectangle
|
|
|
|
CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
|
|
|
|
CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
|
|
|
|
} else {
|
2021-02-12 01:06:29 +01:00
|
|
|
int w = pixman_image_get_width(pixman_image);
|
|
|
|
int h = pixman_image_get_height(pixman_image);
|
|
|
|
int bitsPerPixel = PIXMAN_FORMAT_BPP(pixman_image_get_format(pixman_image));
|
2021-02-22 15:40:12 +01:00
|
|
|
int stride = pixman_image_get_stride(pixman_image);
|
2021-02-12 01:06:29 +01:00
|
|
|
CGDataProviderRef dataProviderRef = CGDataProviderCreateWithData(
|
|
|
|
NULL,
|
|
|
|
pixman_image_get_data(pixman_image),
|
2021-02-22 15:40:12 +01:00
|
|
|
stride * h,
|
2021-02-12 01:06:29 +01:00
|
|
|
NULL
|
|
|
|
);
|
2008-01-23 00:25:15 +01:00
|
|
|
CGImageRef imageRef = CGImageCreate(
|
2021-02-12 01:06:29 +01:00
|
|
|
w, //width
|
|
|
|
h, //height
|
2021-02-22 15:40:12 +01:00
|
|
|
DIV_ROUND_UP(bitsPerPixel, 8) * 2, //bitsPerComponent
|
2021-02-12 01:06:29 +01:00
|
|
|
bitsPerPixel, //bitsPerPixel
|
2021-02-22 15:40:12 +01:00
|
|
|
stride, //bytesPerRow
|
2021-03-05 13:13:04 +01:00
|
|
|
CGColorSpaceCreateWithName(kCGColorSpaceSRGB), //colorspace
|
|
|
|
kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, //bitmapInfo
|
2008-01-23 00:25:15 +01:00
|
|
|
dataProviderRef, //provider
|
|
|
|
NULL, //decode
|
|
|
|
0, //interpolate
|
|
|
|
kCGRenderingIntentDefault //intent
|
|
|
|
);
|
2015-05-19 10:11:17 +02:00
|
|
|
// selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
|
|
|
|
const NSRect *rectList;
|
|
|
|
NSInteger rectCount;
|
|
|
|
int i;
|
|
|
|
CGImageRef clipImageRef;
|
|
|
|
CGRect clipRect;
|
|
|
|
|
|
|
|
[self getRectsBeingDrawn:&rectList count:&rectCount];
|
|
|
|
for (i = 0; i < rectCount; i++) {
|
|
|
|
clipRect.origin.x = rectList[i].origin.x / cdx;
|
2021-02-12 01:06:29 +01:00
|
|
|
clipRect.origin.y = (float)h - (rectList[i].origin.y + rectList[i].size.height) / cdy;
|
2015-05-19 10:11:17 +02:00
|
|
|
clipRect.size.width = rectList[i].size.width / cdx;
|
|
|
|
clipRect.size.height = rectList[i].size.height / cdy;
|
|
|
|
clipImageRef = CGImageCreateWithImageInRect(
|
|
|
|
imageRef,
|
|
|
|
clipRect
|
|
|
|
);
|
|
|
|
CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
|
|
|
|
CGImageRelease (clipImageRef);
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
CGImageRelease (imageRef);
|
2021-02-12 01:06:29 +01:00
|
|
|
CGDataProviderRelease(dataProviderRef);
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) setContentDimensions
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
|
|
|
|
|
|
|
|
if (isFullscreen) {
|
|
|
|
cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
|
|
|
|
cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
|
2015-05-19 10:11:17 +02:00
|
|
|
|
|
|
|
/* stretches video, but keeps same aspect ratio */
|
|
|
|
if (stretch_video == true) {
|
|
|
|
/* use smallest stretch value - prevents clipping on sides */
|
|
|
|
if (MIN(cdx, cdy) == cdx) {
|
|
|
|
cdy = cdx;
|
|
|
|
} else {
|
|
|
|
cdx = cdy;
|
|
|
|
}
|
|
|
|
} else { /* No stretching */
|
|
|
|
cdx = cdy = 1;
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
cw = screen.width * cdx;
|
|
|
|
ch = screen.height * cdy;
|
|
|
|
cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
|
|
|
|
cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
|
|
|
|
} else {
|
|
|
|
cx = 0;
|
|
|
|
cy = 0;
|
|
|
|
cw = screen.width;
|
|
|
|
ch = screen.height;
|
|
|
|
cdx = 1.0;
|
|
|
|
cdy = 1.0;
|
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2021-06-16 16:19:10 +02:00
|
|
|
- (void) updateUIInfo
|
|
|
|
{
|
|
|
|
NSSize frameSize;
|
|
|
|
QemuUIInfo info;
|
|
|
|
|
|
|
|
if (!qemu_console_is_graphic(dcl.con)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([self window]) {
|
|
|
|
NSDictionary *description = [[[self window] screen] deviceDescription];
|
|
|
|
CGDirectDisplayID display = [[description objectForKey:@"NSScreenNumber"] unsignedIntValue];
|
|
|
|
NSSize screenSize = [[[self window] screen] frame].size;
|
|
|
|
CGSize screenPhysicalSize = CGDisplayScreenSize(display);
|
|
|
|
|
|
|
|
frameSize = isFullscreen ? screenSize : [self frame].size;
|
|
|
|
info.width_mm = frameSize.width / screenSize.width * screenPhysicalSize.width;
|
|
|
|
info.height_mm = frameSize.height / screenSize.height * screenPhysicalSize.height;
|
|
|
|
} else {
|
|
|
|
frameSize = [self frame].size;
|
|
|
|
info.width_mm = 0;
|
|
|
|
info.height_mm = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.xoff = 0;
|
|
|
|
info.yoff = 0;
|
|
|
|
info.width = frameSize.width;
|
|
|
|
info.height = frameSize.height;
|
|
|
|
|
|
|
|
dpy_set_ui_info(dcl.con, &info);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewDidMoveToWindow
|
|
|
|
{
|
|
|
|
[self updateUIInfo];
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:28 +01:00
|
|
|
- (void) switchSurface:(pixman_image_t *)image
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2013-03-01 12:52:06 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaView: switchSurface\n");
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2019-02-25 11:24:28 +01:00
|
|
|
int w = pixman_image_get_width(image);
|
|
|
|
int h = pixman_image_get_height(image);
|
2014-06-23 11:35:22 +02:00
|
|
|
/* cdx == 0 means this is our very first surface, in which case we need
|
|
|
|
* to recalculate the content dimensions even if it happens to be the size
|
|
|
|
* of the initial empty window.
|
|
|
|
*/
|
|
|
|
bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
|
2013-12-24 03:51:46 +01:00
|
|
|
|
|
|
|
int oldh = screen.height;
|
|
|
|
if (isResize) {
|
|
|
|
// Resize before we trigger the redraw, or we'll redraw at the wrong size
|
|
|
|
COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
|
|
|
|
screen.width = w;
|
|
|
|
screen.height = h;
|
|
|
|
[self setContentDimensions];
|
|
|
|
[self setFrame:NSMakeRect(cx, cy, cw, ch)];
|
|
|
|
}
|
2013-03-18 21:28:21 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// update screenBuffer
|
2021-02-12 01:06:29 +01:00
|
|
|
if (pixman_image) {
|
2019-02-25 11:24:33 +01:00
|
|
|
pixman_image_unref(pixman_image);
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
pixman_image = image;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// update windows
|
|
|
|
if (isFullscreen) {
|
|
|
|
[[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
|
2013-12-24 03:51:46 +01:00
|
|
|
[normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:NO animate:NO];
|
2008-01-23 00:25:15 +01:00
|
|
|
} else {
|
|
|
|
if (qemu_name)
|
|
|
|
[normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
|
2013-12-24 03:51:46 +01:00
|
|
|
[normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:YES animate:NO];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isResize) {
|
|
|
|
[normalWindow center];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) toggleFullScreen:(id)sender
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
|
|
|
|
|
|
|
|
if (isFullscreen) { // switch from fullscreen to desktop
|
|
|
|
isFullscreen = FALSE;
|
|
|
|
[self ungrabMouse];
|
|
|
|
[self setContentDimensions];
|
2021-02-20 02:31:38 +01:00
|
|
|
[fullScreenWindow close];
|
|
|
|
[normalWindow setContentView: self];
|
|
|
|
[normalWindow makeKeyAndOrderFront: self];
|
|
|
|
[NSMenu setMenuBarVisible:YES];
|
2008-01-23 00:25:15 +01:00
|
|
|
} else { // switch from desktop to fullscreen
|
|
|
|
isFullscreen = TRUE;
|
2015-05-19 10:11:17 +02:00
|
|
|
[normalWindow orderOut: nil]; /* Hide the window */
|
2008-01-23 00:25:15 +01:00
|
|
|
[self grabMouse];
|
|
|
|
[self setContentDimensions];
|
2021-02-20 02:31:38 +01:00
|
|
|
[NSMenu setMenuBarVisible:NO];
|
|
|
|
fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
|
|
|
|
styleMask:NSWindowStyleMaskBorderless
|
|
|
|
backing:NSBackingStoreBuffered
|
|
|
|
defer:NO];
|
|
|
|
[fullScreenWindow setAcceptsMouseMovedEvents: YES];
|
|
|
|
[fullScreenWindow setHasShadow:NO];
|
|
|
|
[fullScreenWindow setBackgroundColor: [NSColor blackColor]];
|
|
|
|
[self setFrame:NSMakeRect(cx, cy, cw, ch)];
|
|
|
|
[[fullScreenWindow contentView] addSubview: self];
|
|
|
|
[fullScreenWindow makeKeyAndOrderFront:self];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2021-03-10 15:46:02 +01:00
|
|
|
- (void) toggleKey: (int)keycode {
|
|
|
|
qkbd_state_key_event(kbd, keycode, !qkbd_state_key_get(kbd, keycode));
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
|
|
|
|
2017-11-07 11:14:14 +01:00
|
|
|
// Does the work of sending input to the monitor
|
|
|
|
- (void) handleMonitorInput:(NSEvent *)event
|
|
|
|
{
|
|
|
|
int keysym = 0;
|
|
|
|
int control_key = 0;
|
|
|
|
|
|
|
|
// if the control key is down
|
|
|
|
if ([event modifierFlags] & NSEventModifierFlagControl) {
|
|
|
|
control_key = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* translates Macintosh keycodes to QEMU's keysym */
|
|
|
|
|
|
|
|
int without_control_translation[] = {
|
|
|
|
[0 ... 0xff] = 0, // invalid key
|
|
|
|
|
|
|
|
[kVK_UpArrow] = QEMU_KEY_UP,
|
|
|
|
[kVK_DownArrow] = QEMU_KEY_DOWN,
|
|
|
|
[kVK_RightArrow] = QEMU_KEY_RIGHT,
|
|
|
|
[kVK_LeftArrow] = QEMU_KEY_LEFT,
|
|
|
|
[kVK_Home] = QEMU_KEY_HOME,
|
|
|
|
[kVK_End] = QEMU_KEY_END,
|
|
|
|
[kVK_PageUp] = QEMU_KEY_PAGEUP,
|
|
|
|
[kVK_PageDown] = QEMU_KEY_PAGEDOWN,
|
|
|
|
[kVK_ForwardDelete] = QEMU_KEY_DELETE,
|
|
|
|
[kVK_Delete] = QEMU_KEY_BACKSPACE,
|
|
|
|
};
|
|
|
|
|
|
|
|
int with_control_translation[] = {
|
|
|
|
[0 ... 0xff] = 0, // invalid key
|
|
|
|
|
|
|
|
[kVK_UpArrow] = QEMU_KEY_CTRL_UP,
|
|
|
|
[kVK_DownArrow] = QEMU_KEY_CTRL_DOWN,
|
|
|
|
[kVK_RightArrow] = QEMU_KEY_CTRL_RIGHT,
|
|
|
|
[kVK_LeftArrow] = QEMU_KEY_CTRL_LEFT,
|
|
|
|
[kVK_Home] = QEMU_KEY_CTRL_HOME,
|
|
|
|
[kVK_End] = QEMU_KEY_CTRL_END,
|
|
|
|
[kVK_PageUp] = QEMU_KEY_CTRL_PAGEUP,
|
|
|
|
[kVK_PageDown] = QEMU_KEY_CTRL_PAGEDOWN,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (control_key != 0) { /* If the control key is being used */
|
|
|
|
if ([event keyCode] < ARRAY_SIZE(with_control_translation)) {
|
|
|
|
keysym = with_control_translation[[event keyCode]];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ([event keyCode] < ARRAY_SIZE(without_control_translation)) {
|
|
|
|
keysym = without_control_translation[[event keyCode]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if not a key that needs translating
|
|
|
|
if (keysym == 0) {
|
|
|
|
NSString *ks = [event characters];
|
|
|
|
if ([ks length] > 0) {
|
|
|
|
keysym = [ks characterAtIndex:0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keysym) {
|
|
|
|
kbd_put_keysym(keysym);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:31 +01:00
|
|
|
- (bool) handleEvent:(NSEvent *)event
|
2007-09-17 10:09:54 +02:00
|
|
|
{
|
2019-10-15 03:07:34 +02:00
|
|
|
if(!allow_events) {
|
|
|
|
/*
|
|
|
|
* Just let OSX have all events that arrive before
|
|
|
|
* applicationDidFinishLaunching.
|
|
|
|
* This avoids a deadlock on the iothread lock, which cocoa_display_init()
|
|
|
|
* will not drop until after the app_started_sem is posted. (In theory
|
|
|
|
* there should not be any such events, but OSX Catalina now emits some.)
|
|
|
|
*/
|
|
|
|
return false;
|
|
|
|
}
|
2019-02-25 11:24:31 +01:00
|
|
|
return bool_with_iothread_lock(^{
|
|
|
|
return [self handleEventLocked:event];
|
2019-02-25 11:24:27 +01:00
|
|
|
});
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2019-02-25 11:24:31 +01:00
|
|
|
- (bool) handleEventLocked:(NSEvent *)event
|
2019-02-25 11:24:27 +01:00
|
|
|
{
|
2019-02-25 11:24:31 +01:00
|
|
|
/* Return true if we handled the event, false if it should be given to OSX */
|
2019-02-25 11:24:27 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaView: handleEvent\n");
|
2008-01-23 00:25:15 +01:00
|
|
|
int buttons = 0;
|
2017-05-27 01:38:16 +02:00
|
|
|
int keycode = 0;
|
2013-12-04 14:08:04 +01:00
|
|
|
bool mouse_event = false;
|
2018-07-03 04:00:17 +02:00
|
|
|
static bool switched_to_fullscreen = false;
|
2019-06-04 11:36:00 +02:00
|
|
|
// Location of event in virtual screen coordinates
|
|
|
|
NSPoint p = [self screenLocationOfEvent:event];
|
2021-03-10 15:46:02 +01:00
|
|
|
NSUInteger modifiers = [event modifierFlags];
|
|
|
|
|
2021-03-12 14:32:12 +01:00
|
|
|
/*
|
|
|
|
* Check -[NSEvent modifierFlags] here.
|
|
|
|
*
|
|
|
|
* There is a NSEventType for an event notifying the change of
|
|
|
|
* -[NSEvent modifierFlags], NSEventTypeFlagsChanged but these operations
|
|
|
|
* are performed for any events because a modifier state may change while
|
|
|
|
* the application is inactive (i.e. no events fire) and we don't want to
|
|
|
|
* wait for another modifier state change to detect such a change.
|
|
|
|
*
|
|
|
|
* NSEventModifierFlagCapsLock requires a special treatment. The other flags
|
|
|
|
* are handled in similar manners.
|
|
|
|
*
|
|
|
|
* NSEventModifierFlagCapsLock
|
|
|
|
* ---------------------------
|
|
|
|
*
|
|
|
|
* If CapsLock state is changed, "up" and "down" events will be fired in
|
|
|
|
* sequence, effectively updates CapsLock state on the guest.
|
|
|
|
*
|
|
|
|
* The other flags
|
|
|
|
* ---------------
|
|
|
|
*
|
|
|
|
* If a flag is not set, fire "up" events for all keys which correspond to
|
|
|
|
* the flag. Note that "down" events are not fired here because the flags
|
|
|
|
* checked here do not tell what exact keys are down.
|
|
|
|
*
|
|
|
|
* If one of the keys corresponding to a flag is down, we rely on
|
|
|
|
* -[NSEvent keyCode] of an event whose -[NSEvent type] is
|
|
|
|
* NSEventTypeFlagsChanged to know the exact key which is down, which has
|
|
|
|
* the following two downsides:
|
|
|
|
* - It does not work when the application is inactive as described above.
|
|
|
|
* - It malfactions *after* the modifier state is changed while the
|
|
|
|
* application is inactive. It is because -[NSEvent keyCode] does not tell
|
|
|
|
* if the key is up or down, and requires to infer the current state from
|
|
|
|
* the previous state. It is still possible to fix such a malfanction by
|
|
|
|
* completely leaving your hands from the keyboard, which hopefully makes
|
|
|
|
* this implementation usable enough.
|
|
|
|
*/
|
2021-03-10 15:46:02 +01:00
|
|
|
if (!!(modifiers & NSEventModifierFlagCapsLock) !=
|
|
|
|
qkbd_state_modifier_get(kbd, QKBD_MOD_CAPSLOCK)) {
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, true);
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(modifiers & NSEventModifierFlagShift)) {
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT, false);
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT_R, false);
|
|
|
|
}
|
|
|
|
if (!(modifiers & NSEventModifierFlagControl)) {
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL, false);
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL_R, false);
|
|
|
|
}
|
|
|
|
if (!(modifiers & NSEventModifierFlagOption)) {
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_ALT, false);
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_ALT_R, false);
|
|
|
|
}
|
|
|
|
if (!(modifiers & NSEventModifierFlagCommand)) {
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_META_L, false);
|
|
|
|
qkbd_state_key_event(kbd, Q_KEY_CODE_META_R, false);
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
|
|
|
|
switch ([event type]) {
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeFlagsChanged:
|
2021-03-10 15:46:02 +01:00
|
|
|
switch ([event keyCode]) {
|
|
|
|
case kVK_Shift:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagShift)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_SHIFT];
|
|
|
|
}
|
|
|
|
break;
|
2017-05-27 01:38:16 +02:00
|
|
|
|
2021-03-10 15:46:02 +01:00
|
|
|
case kVK_RightShift:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagShift)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_SHIFT_R];
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kVK_Control:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagControl)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_CTRL];
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kVK_RightControl:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagControl)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_CTRL_R];
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kVK_Option:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagOption)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_ALT];
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case kVK_RightOption:
|
|
|
|
if (!!(modifiers & NSEventModifierFlagOption)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_ALT_R];
|
2017-05-27 01:38:16 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
2013-12-08 23:59:02 +01:00
|
|
|
|
2021-03-10 15:46:02 +01:00
|
|
|
/* Don't pass command key changes to guest unless mouse is grabbed */
|
|
|
|
case kVK_Command:
|
|
|
|
if (isMouseGrabbed &&
|
|
|
|
!!(modifiers & NSEventModifierFlagCommand)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_META_L];
|
|
|
|
}
|
|
|
|
break;
|
2013-12-08 23:59:02 +01:00
|
|
|
|
2021-03-10 15:46:02 +01:00
|
|
|
case kVK_RightCommand:
|
|
|
|
if (isMouseGrabbed &&
|
|
|
|
!!(modifiers & NSEventModifierFlagCommand)) {
|
|
|
|
[self toggleKey:Q_KEY_CODE_META_R];
|
2018-07-03 04:00:17 +02:00
|
|
|
}
|
2021-03-10 15:46:02 +01:00
|
|
|
break;
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeKeyDown:
|
2013-12-08 23:59:02 +01:00
|
|
|
keycode = cocoa_keycode_to_qemu([event keyCode]);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2013-12-08 23:59:02 +01:00
|
|
|
// forward command key combos to the host UI unless the mouse is grabbed
|
2017-04-25 08:29:52 +02:00
|
|
|
if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
|
2018-07-03 04:00:17 +02:00
|
|
|
/*
|
|
|
|
* Prevent the command key from being stuck down in the guest
|
|
|
|
* when using Command-F to switch to full screen mode.
|
|
|
|
*/
|
|
|
|
if (keycode == Q_KEY_CODE_F) {
|
|
|
|
switched_to_fullscreen = true;
|
|
|
|
}
|
2019-02-25 11:24:31 +01:00
|
|
|
return false;
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// default
|
|
|
|
|
2017-11-07 11:14:14 +01:00
|
|
|
// handle control + alt Key Combos (ctrl+alt+[1..9,g] is reserved for QEMU)
|
2017-04-25 08:29:52 +02:00
|
|
|
if (([event modifierFlags] & NSEventModifierFlagControl) && ([event modifierFlags] & NSEventModifierFlagOption)) {
|
2017-11-07 11:14:14 +01:00
|
|
|
NSString *keychar = [event charactersIgnoringModifiers];
|
|
|
|
if ([keychar length] == 1) {
|
|
|
|
char key = [keychar characterAtIndex:0];
|
|
|
|
switch (key) {
|
|
|
|
|
|
|
|
// enable graphic console
|
|
|
|
case '1' ... '9':
|
|
|
|
console_select(key - '0' - 1); /* ascii math */
|
2019-02-25 11:24:31 +01:00
|
|
|
return true;
|
2017-11-07 11:14:14 +01:00
|
|
|
|
|
|
|
// release the mouse grab
|
|
|
|
case 'g':
|
|
|
|
[self ungrabMouse];
|
2019-02-25 11:24:31 +01:00
|
|
|
return true;
|
2017-11-07 11:14:14 +01:00
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2017-11-07 11:14:14 +01:00
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2017-11-07 11:14:14 +01:00
|
|
|
if (qemu_console_is_graphic(NULL)) {
|
2021-03-10 15:46:02 +01:00
|
|
|
qkbd_state_key_event(kbd, keycode, true);
|
2008-01-23 00:25:15 +01:00
|
|
|
} else {
|
2017-11-07 11:14:14 +01:00
|
|
|
[self handleMonitorInput: event];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeKeyUp:
|
2008-01-23 00:25:15 +01:00
|
|
|
keycode = cocoa_keycode_to_qemu([event keyCode]);
|
2013-12-08 23:59:02 +01:00
|
|
|
|
|
|
|
// don't pass the guest a spurious key-up if we treated this
|
|
|
|
// command-key combo as a host UI action
|
2017-04-25 08:29:52 +02:00
|
|
|
if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
|
2019-02-25 11:24:31 +01:00
|
|
|
return true;
|
2013-12-08 23:59:02 +01:00
|
|
|
}
|
|
|
|
|
2013-04-17 11:16:35 +02:00
|
|
|
if (qemu_console_is_graphic(NULL)) {
|
2021-03-10 15:46:02 +01:00
|
|
|
qkbd_state_key_event(kbd, keycode, false);
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeMouseMoved:
|
2008-01-23 00:25:15 +01:00
|
|
|
if (isAbsoluteEnabled) {
|
2019-06-04 11:36:00 +02:00
|
|
|
// Cursor re-entered into a window might generate events bound to screen coordinates
|
|
|
|
// and `nil` window property, and in full screen mode, current window might not be
|
|
|
|
// key window, where event location alone should suffice.
|
|
|
|
if (![self screenContainsPoint:p] || !([[self window] isKeyWindow] || isFullscreen)) {
|
2014-06-23 11:35:24 +02:00
|
|
|
if (isMouseGrabbed) {
|
|
|
|
[self ungrabMouse];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-06-23 11:35:24 +02:00
|
|
|
if (!isMouseGrabbed) {
|
|
|
|
[self grabMouse];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeLeftMouseDown:
|
2021-02-12 01:07:06 +01:00
|
|
|
buttons |= MOUSE_EVENT_LBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeRightMouseDown:
|
2008-01-23 00:25:15 +01:00
|
|
|
buttons |= MOUSE_EVENT_RBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeOtherMouseDown:
|
2008-01-23 00:25:15 +01:00
|
|
|
buttons |= MOUSE_EVENT_MBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeLeftMouseDragged:
|
2021-02-12 01:07:06 +01:00
|
|
|
buttons |= MOUSE_EVENT_LBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeRightMouseDragged:
|
2008-01-23 00:25:15 +01:00
|
|
|
buttons |= MOUSE_EVENT_RBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeOtherMouseDragged:
|
2008-01-23 00:25:15 +01:00
|
|
|
buttons |= MOUSE_EVENT_MBUTTON;
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeLeftMouseUp:
|
2014-06-23 11:35:24 +02:00
|
|
|
mouse_event = true;
|
|
|
|
if (!isMouseGrabbed && [self screenContainsPoint:p]) {
|
2019-06-04 11:36:48 +02:00
|
|
|
/*
|
|
|
|
* In fullscreen mode, the window of cocoaView may not be the
|
|
|
|
* key window, therefore the position relative to the virtual
|
|
|
|
* screen alone will be sufficient.
|
|
|
|
*/
|
|
|
|
if(isFullscreen || [[self window] isKeyWindow]) {
|
2016-08-16 04:11:06 +02:00
|
|
|
[self grabMouse];
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeRightMouseUp:
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeOtherMouseUp:
|
2013-12-04 14:08:04 +01:00
|
|
|
mouse_event = true;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
2017-04-25 08:29:52 +02:00
|
|
|
case NSEventTypeScrollWheel:
|
2018-01-08 19:07:07 +01:00
|
|
|
/*
|
|
|
|
* Send wheel events to the guest regardless of window focus.
|
|
|
|
* This is in-line with standard Mac OS X UI behaviour.
|
|
|
|
*/
|
|
|
|
|
2018-07-09 17:02:35 +02:00
|
|
|
/*
|
|
|
|
* When deltaY is zero, it means that this scrolling event was
|
|
|
|
* either horizontal, or so fine that it only appears in
|
|
|
|
* scrollingDeltaY. So we drop the event.
|
|
|
|
*/
|
|
|
|
if ([event deltaY] != 0) {
|
2018-01-08 19:07:07 +01:00
|
|
|
/* Determine if this is a scroll up or scroll down event */
|
2018-07-09 17:02:35 +02:00
|
|
|
buttons = ([event deltaY] > 0) ?
|
|
|
|
INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
|
2021-02-19 09:44:19 +01:00
|
|
|
qemu_input_queue_btn(dcl.con, buttons, true);
|
2018-07-09 17:02:35 +02:00
|
|
|
qemu_input_event_sync();
|
2021-02-19 09:44:19 +01:00
|
|
|
qemu_input_queue_btn(dcl.con, buttons, false);
|
2018-07-09 17:02:35 +02:00
|
|
|
qemu_input_event_sync();
|
|
|
|
}
|
2018-01-08 19:07:07 +01:00
|
|
|
/*
|
|
|
|
* Since deltaY also reports scroll wheel events we prevent mouse
|
|
|
|
* movement code from executing.
|
|
|
|
*/
|
|
|
|
mouse_event = false;
|
2008-01-23 00:25:15 +01:00
|
|
|
break;
|
|
|
|
default:
|
2019-02-25 11:24:31 +01:00
|
|
|
return false;
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
2013-12-04 14:08:04 +01:00
|
|
|
|
|
|
|
if (mouse_event) {
|
2015-11-26 16:19:28 +01:00
|
|
|
/* Don't send button events to the guest unless we've got a
|
|
|
|
* mouse grab or window focus. If we have neither then this event
|
|
|
|
* is the user clicking on the background window to activate and
|
|
|
|
* bring us to the front, which will be done by the sendEvent
|
|
|
|
* call below. We definitely don't want to pass that click through
|
|
|
|
* to the guest.
|
|
|
|
*/
|
|
|
|
if ((isMouseGrabbed || [[self window] isKeyWindow]) &&
|
|
|
|
(last_buttons != buttons)) {
|
qapi: Don't let implicit enum MAX member collide
Now that we guarantee the user doesn't have any enum values
beginning with a single underscore, we can use that for our
own purposes. Renaming ENUM_MAX to ENUM__MAX makes it obvious
that the sentinel is generated.
This patch was mostly generated by applying a temporary patch:
|diff --git a/scripts/qapi.py b/scripts/qapi.py
|index e6d014b..b862ec9 100644
|--- a/scripts/qapi.py
|+++ b/scripts/qapi.py
|@@ -1570,6 +1570,7 @@ const char *const %(c_name)s_lookup[] = {
| max_index = c_enum_const(name, 'MAX', prefix)
| ret += mcgen('''
| [%(max_index)s] = NULL,
|+// %(max_index)s
| };
| ''',
| max_index=max_index)
then running:
$ cat qapi-{types,event}.c tests/test-qapi-types.c |
sed -n 's,^// \(.*\)MAX,s|\1MAX|\1_MAX|g,p' > list
$ git grep -l _MAX | xargs sed -i -f list
The only things not generated are the changes in scripts/qapi.py.
Rejecting enum members named 'MAX' is now useless, and will be dropped
in the next patch.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-23-git-send-email-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
[Rebased to current master, commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-11-18 09:52:57 +01:00
|
|
|
static uint32_t bmap[INPUT_BUTTON__MAX] = {
|
2013-12-04 14:08:04 +01:00
|
|
|
[INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
|
|
|
|
[INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
|
2018-01-08 19:07:07 +01:00
|
|
|
[INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON
|
2013-12-04 14:08:04 +01:00
|
|
|
};
|
2021-02-19 09:44:19 +01:00
|
|
|
qemu_input_update_buttons(dcl.con, bmap, last_buttons, buttons);
|
2013-12-04 14:08:04 +01:00
|
|
|
last_buttons = buttons;
|
|
|
|
}
|
2014-06-23 11:35:24 +02:00
|
|
|
if (isMouseGrabbed) {
|
|
|
|
if (isAbsoluteEnabled) {
|
|
|
|
/* Note that the origin for Cocoa mouse coords is bottom left, not top left.
|
|
|
|
* The check on screenContainsPoint is to avoid sending out of range values for
|
|
|
|
* clicks in the titlebar.
|
|
|
|
*/
|
|
|
|
if ([self screenContainsPoint:p]) {
|
2021-02-19 09:44:19 +01:00
|
|
|
qemu_input_queue_abs(dcl.con, INPUT_AXIS_X, p.x, 0, screen.width);
|
|
|
|
qemu_input_queue_abs(dcl.con, INPUT_AXIS_Y, screen.height - p.y, 0, screen.height);
|
2014-06-23 11:35:24 +02:00
|
|
|
}
|
|
|
|
} else {
|
2021-02-19 09:44:19 +01:00
|
|
|
qemu_input_queue_rel(dcl.con, INPUT_AXIS_X, (int)[event deltaX]);
|
|
|
|
qemu_input_queue_rel(dcl.con, INPUT_AXIS_Y, (int)[event deltaY]);
|
2014-06-23 11:35:24 +02:00
|
|
|
}
|
2013-12-04 14:08:04 +01:00
|
|
|
} else {
|
2019-02-25 11:24:31 +01:00
|
|
|
return false;
|
2013-12-04 14:08:04 +01:00
|
|
|
}
|
|
|
|
qemu_input_event_sync();
|
|
|
|
}
|
2019-02-25 11:24:31 +01:00
|
|
|
return true;
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) grabMouse
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaView: grabMouse\n");
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
if (!isFullscreen) {
|
|
|
|
if (qemu_name)
|
2017-11-07 11:14:14 +01:00
|
|
|
[normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt + g to release Mouse)", qemu_name]];
|
2008-01-23 00:25:15 +01:00
|
|
|
else
|
2017-11-07 11:14:14 +01:00
|
|
|
[normalWindow setTitle:@"QEMU - (Press ctrl + alt + g to release Mouse)"];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2014-06-23 11:35:25 +02:00
|
|
|
[self hideCursor];
|
2021-02-22 16:07:14 +01:00
|
|
|
CGAssociateMouseAndMouseCursorPosition(isAbsoluteEnabled);
|
2013-12-08 23:59:03 +01:00
|
|
|
isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) ungrabMouse
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
if (!isFullscreen) {
|
|
|
|
if (qemu_name)
|
|
|
|
[normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
|
|
|
|
else
|
|
|
|
[normalWindow setTitle:@"QEMU"];
|
|
|
|
}
|
2014-06-23 11:35:25 +02:00
|
|
|
[self unhideCursor];
|
2021-02-22 16:07:14 +01:00
|
|
|
CGAssociateMouseAndMouseCursorPosition(TRUE);
|
2013-12-08 23:59:03 +01:00
|
|
|
isMouseGrabbed = FALSE;
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2021-02-22 16:07:14 +01:00
|
|
|
- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {
|
|
|
|
isAbsoluteEnabled = tIsAbsoluteEnabled;
|
|
|
|
if (isMouseGrabbed) {
|
|
|
|
CGAssociateMouseAndMouseCursorPosition(isAbsoluteEnabled);
|
|
|
|
}
|
|
|
|
}
|
2013-12-08 23:59:03 +01:00
|
|
|
- (BOOL) isMouseGrabbed {return isMouseGrabbed;}
|
2008-01-23 00:25:15 +01:00
|
|
|
- (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
|
|
|
|
- (float) cdx {return cdx;}
|
|
|
|
- (float) cdy {return cdy;}
|
|
|
|
- (QEMUScreen) gscreen {return screen;}
|
2015-09-26 00:14:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Makes the target think all down keys are being released.
|
|
|
|
* This prevents a stuck key problem, since we will not see
|
|
|
|
* key up events for those keys after we have lost focus.
|
|
|
|
*/
|
|
|
|
- (void) raiseAllKeys
|
|
|
|
{
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
2021-03-10 15:46:02 +01:00
|
|
|
qkbd_state_lift_all_keys(kbd);
|
2019-02-25 11:24:27 +01:00
|
|
|
});
|
2015-09-26 00:14:00 +02:00
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
|
2005-03-01 22:37:28 +01:00
|
|
|
/*
|
|
|
|
------------------------------------------------------
|
2008-01-23 00:25:15 +01:00
|
|
|
QemuCocoaAppController
|
2005-03-01 22:37:28 +01:00
|
|
|
------------------------------------------------------
|
|
|
|
*/
|
2008-01-23 00:25:15 +01:00
|
|
|
@interface QemuCocoaAppController : NSObject
|
2015-09-26 00:13:59 +02:00
|
|
|
<NSWindowDelegate, NSApplicationDelegate>
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
|
|
|
}
|
2015-05-19 10:11:17 +02:00
|
|
|
- (void)doToggleFullScreen:(id)sender;
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void)toggleFullScreen:(id)sender;
|
|
|
|
- (void)showQEMUDoc:(id)sender;
|
2015-05-19 10:11:17 +02:00
|
|
|
- (void)zoomToFit:(id) sender;
|
2015-05-19 10:11:18 +02:00
|
|
|
- (void)displayConsole:(id)sender;
|
2015-06-19 11:53:27 +02:00
|
|
|
- (void)pauseQEMU:(id)sender;
|
|
|
|
- (void)resumeQEMU:(id)sender;
|
|
|
|
- (void)displayPause;
|
|
|
|
- (void)removePause;
|
2015-06-19 11:53:27 +02:00
|
|
|
- (void)restartQEMU:(id)sender;
|
|
|
|
- (void)powerDownQEMU:(id)sender;
|
2015-06-19 11:53:27 +02:00
|
|
|
- (void)ejectDeviceMedia:(id)sender;
|
|
|
|
- (void)changeDeviceMedia:(id)sender;
|
2015-09-26 00:13:59 +02:00
|
|
|
- (BOOL)verifyQuit;
|
2016-03-23 15:26:17 +01:00
|
|
|
- (void)openDocumentation:(NSString *)filename;
|
2016-08-16 04:11:06 +02:00
|
|
|
- (IBAction) do_about_menu_item: (id) sender;
|
|
|
|
- (void)make_about_window;
|
2017-06-14 05:17:38 +02:00
|
|
|
- (void)adjustSpeed:(id)sender;
|
2005-03-01 22:37:28 +01:00
|
|
|
@end
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
@implementation QemuCocoaAppController
|
|
|
|
- (id) init
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaAppController: init\n");
|
2005-04-07 22:35:06 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
self = [super init];
|
|
|
|
if (self) {
|
2005-04-07 22:35:06 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// create a view and add it to the window
|
|
|
|
cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
|
|
|
|
if(!cocoaView) {
|
2021-02-23 14:11:06 +01:00
|
|
|
error_report("(cocoa) can't create a view");
|
2008-01-23 00:25:15 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// create a window
|
|
|
|
normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
|
2017-04-25 08:29:52 +02:00
|
|
|
styleMask:NSWindowStyleMaskTitled|NSWindowStyleMaskMiniaturizable|NSWindowStyleMaskClosable
|
2008-01-23 00:25:15 +01:00
|
|
|
backing:NSBackingStoreBuffered defer:NO];
|
|
|
|
if(!normalWindow) {
|
2021-02-23 14:11:06 +01:00
|
|
|
error_report("(cocoa) can't create window");
|
2008-01-23 00:25:15 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
[normalWindow setAcceptsMouseMovedEvents:YES];
|
2015-10-13 22:51:18 +02:00
|
|
|
[normalWindow setTitle:@"QEMU"];
|
2008-01-23 00:25:15 +01:00
|
|
|
[normalWindow setContentView:cocoaView];
|
|
|
|
[normalWindow makeKeyAndOrderFront:self];
|
2013-12-24 12:54:12 +01:00
|
|
|
[normalWindow center];
|
2015-09-26 00:13:59 +02:00
|
|
|
[normalWindow setDelegate: self];
|
2015-05-19 10:11:17 +02:00
|
|
|
stretch_video = false;
|
2015-06-19 11:53:27 +02:00
|
|
|
|
|
|
|
/* Used for displaying pause on the screen */
|
|
|
|
pauseLabel = [NSTextField new];
|
|
|
|
[pauseLabel setBezeled:YES];
|
|
|
|
[pauseLabel setDrawsBackground:YES];
|
|
|
|
[pauseLabel setBackgroundColor: [NSColor whiteColor]];
|
|
|
|
[pauseLabel setEditable:NO];
|
|
|
|
[pauseLabel setSelectable:NO];
|
|
|
|
[pauseLabel setStringValue: @"Paused"];
|
|
|
|
[pauseLabel setFont: [NSFont fontWithName: @"Helvetica" size: 90]];
|
|
|
|
[pauseLabel setTextColor: [NSColor blackColor]];
|
|
|
|
[pauseLabel sizeToFit];
|
2015-06-19 11:53:27 +02:00
|
|
|
|
|
|
|
// set the supported image file types that can be opened
|
|
|
|
supportedImageFileTypes = [NSArray arrayWithObjects: @"img", @"iso", @"dmg",
|
2016-03-30 18:37:11 +02:00
|
|
|
@"qcow", @"qcow2", @"cloop", @"vmdk", @"cdr",
|
2016-12-30 21:42:21 +01:00
|
|
|
@"toast", nil];
|
2016-08-16 04:11:06 +02:00
|
|
|
[self make_about_window];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
|
|
|
|
|
|
|
|
if (cocoaView)
|
|
|
|
[cocoaView release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void)applicationDidFinishLaunching: (NSNotification *) note
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
|
2019-10-15 03:07:34 +02:00
|
|
|
allow_events = true;
|
2019-02-25 11:24:33 +01:00
|
|
|
/* Tell cocoa_display_init to proceed */
|
|
|
|
qemu_sem_post(&app_started_sem);
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationWillTerminate:(NSNotification *)aNotification
|
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
|
|
|
|
|
2017-05-15 23:41:13 +02:00
|
|
|
qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI);
|
2021-02-19 12:16:52 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sleep here, because returning will cause OSX to kill us
|
|
|
|
* immediately; the QEMU main loop will handle the shutdown
|
|
|
|
* request and terminate the process.
|
|
|
|
*/
|
|
|
|
[NSThread sleepForTimeInterval:INFINITY];
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2009-12-14 22:13:27 +01:00
|
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2015-09-26 00:13:59 +02:00
|
|
|
- (NSApplicationTerminateReply)applicationShouldTerminate:
|
|
|
|
(NSApplication *)sender
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: applicationShouldTerminate\n");
|
|
|
|
return [self verifyQuit];
|
|
|
|
}
|
|
|
|
|
2021-06-16 16:19:10 +02:00
|
|
|
- (void)windowDidChangeScreen:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
[cocoaView updateUIInfo];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidResize:(NSNotification *)notification
|
|
|
|
{
|
|
|
|
[cocoaView updateUIInfo];
|
|
|
|
}
|
|
|
|
|
2015-09-26 00:13:59 +02:00
|
|
|
/* Called when the user clicks on a window's close button */
|
|
|
|
- (BOOL)windowShouldClose:(id)sender
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: windowShouldClose\n");
|
|
|
|
[NSApp terminate: sender];
|
|
|
|
/* If the user allows the application to quit then the call to
|
|
|
|
* NSApp terminate will never return. If we get here then the user
|
|
|
|
* cancelled the quit, so we should return NO to not permit the
|
|
|
|
* closing of this window.
|
|
|
|
*/
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2015-09-26 00:14:00 +02:00
|
|
|
/* Called when QEMU goes into the background */
|
|
|
|
- (void) applicationWillResignActive: (NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: applicationWillResignActive\n");
|
|
|
|
[cocoaView raiseAllKeys];
|
|
|
|
}
|
|
|
|
|
2015-05-19 10:11:17 +02:00
|
|
|
/* We abstract the method called by the Enter Fullscreen menu item
|
|
|
|
* because Mac OS 10.7 and higher disables it. This is because of the
|
|
|
|
* menu item's old selector's name toggleFullScreen:
|
|
|
|
*/
|
|
|
|
- (void) doToggleFullScreen:(id)sender
|
|
|
|
{
|
|
|
|
[self toggleFullScreen:(id)sender];
|
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void)toggleFullScreen:(id)sender
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
|
|
|
|
|
|
|
|
[cocoaView toggleFullScreen:sender];
|
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2016-03-23 15:26:17 +01:00
|
|
|
/* Tries to find then open the specified filename */
|
|
|
|
- (void) openDocumentation: (NSString *) filename
|
|
|
|
{
|
|
|
|
/* Where to look for local files */
|
2021-01-08 22:38:15 +01:00
|
|
|
NSString *path_array[] = {@"../share/doc/qemu/", @"../doc/qemu/", @"docs/"};
|
2016-03-23 15:26:17 +01:00
|
|
|
NSString *full_file_path;
|
2021-01-02 16:07:21 +01:00
|
|
|
NSURL *full_file_url;
|
2016-03-23 15:26:17 +01:00
|
|
|
|
|
|
|
/* iterate thru the possible paths until the file is found */
|
|
|
|
int index;
|
|
|
|
for (index = 0; index < ARRAY_SIZE(path_array); index++) {
|
|
|
|
full_file_path = [[NSBundle mainBundle] executablePath];
|
|
|
|
full_file_path = [full_file_path stringByDeletingLastPathComponent];
|
|
|
|
full_file_path = [NSString stringWithFormat: @"%@/%@%@", full_file_path,
|
|
|
|
path_array[index], filename];
|
2021-01-02 16:07:21 +01:00
|
|
|
full_file_url = [NSURL fileURLWithPath: full_file_path
|
|
|
|
isDirectory: false];
|
|
|
|
if ([[NSWorkspace sharedWorkspace] openURL: full_file_url] == YES) {
|
2016-03-23 15:26:17 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If none of the paths opened a file */
|
|
|
|
NSBeep();
|
|
|
|
QEMU_Alert(@"Failed to open file");
|
|
|
|
}
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
- (void)showQEMUDoc:(id)sender
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
|
|
|
|
|
2020-02-28 16:36:16 +01:00
|
|
|
[self openDocumentation: @"index.html"];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
|
|
|
|
2015-05-19 10:11:17 +02:00
|
|
|
/* Stretches video to fit host monitor size */
|
|
|
|
- (void)zoomToFit:(id) sender
|
|
|
|
{
|
|
|
|
stretch_video = !stretch_video;
|
|
|
|
if (stretch_video == true) {
|
2019-02-01 08:12:25 +01:00
|
|
|
[sender setState: NSControlStateValueOn];
|
2015-05-19 10:11:17 +02:00
|
|
|
} else {
|
2019-02-01 08:12:25 +01:00
|
|
|
[sender setState: NSControlStateValueOff];
|
2015-05-19 10:11:17 +02:00
|
|
|
}
|
|
|
|
}
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2015-05-19 10:11:18 +02:00
|
|
|
/* Displays the console on the screen */
|
|
|
|
- (void)displayConsole:(id)sender
|
|
|
|
{
|
|
|
|
console_select([sender tag]);
|
|
|
|
}
|
2015-06-19 11:53:27 +02:00
|
|
|
|
|
|
|
/* Pause the guest */
|
|
|
|
- (void)pauseQEMU:(id)sender
|
|
|
|
{
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_stop(NULL);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
[sender setEnabled: NO];
|
|
|
|
[[[sender menu] itemWithTitle: @"Resume"] setEnabled: YES];
|
|
|
|
[self displayPause];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Resume running the guest operating system */
|
|
|
|
- (void)resumeQEMU:(id) sender
|
|
|
|
{
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_cont(NULL);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
[sender setEnabled: NO];
|
|
|
|
[[[sender menu] itemWithTitle: @"Pause"] setEnabled: YES];
|
|
|
|
[self removePause];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Displays the word pause on the screen */
|
|
|
|
- (void)displayPause
|
|
|
|
{
|
|
|
|
/* Coordinates have to be calculated each time because the window can change its size */
|
|
|
|
int xCoord, yCoord, width, height;
|
|
|
|
xCoord = ([normalWindow frame].size.width - [pauseLabel frame].size.width)/2;
|
|
|
|
yCoord = [normalWindow frame].size.height - [pauseLabel frame].size.height - ([pauseLabel frame].size.height * .5);
|
|
|
|
width = [pauseLabel frame].size.width;
|
|
|
|
height = [pauseLabel frame].size.height;
|
|
|
|
[pauseLabel setFrame: NSMakeRect(xCoord, yCoord, width, height)];
|
|
|
|
[cocoaView addSubview: pauseLabel];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Removes the word pause from the screen */
|
|
|
|
- (void)removePause
|
|
|
|
{
|
|
|
|
[pauseLabel removeFromSuperview];
|
|
|
|
}
|
|
|
|
|
2015-06-19 11:53:27 +02:00
|
|
|
/* Restarts QEMU */
|
|
|
|
- (void)restartQEMU:(id)sender
|
|
|
|
{
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_system_reset(NULL);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Powers down QEMU */
|
|
|
|
- (void)powerDownQEMU:(id)sender
|
|
|
|
{
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_system_powerdown(NULL);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
}
|
|
|
|
|
2015-06-19 11:53:27 +02:00
|
|
|
/* Ejects the media.
|
|
|
|
* Uses sender's tag to figure out the device to eject.
|
|
|
|
*/
|
|
|
|
- (void)ejectDeviceMedia:(id)sender
|
|
|
|
{
|
|
|
|
NSString * drive;
|
|
|
|
drive = [sender representedObject];
|
|
|
|
if(drive == nil) {
|
|
|
|
NSBeep();
|
|
|
|
QEMU_Alert(@"Failed to find drive to eject!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:27 +01:00
|
|
|
__block Error *err = NULL;
|
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_eject(true, [drive cStringUsingEncoding: NSASCIIStringEncoding],
|
|
|
|
false, NULL, false, false, &err);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
handleAnyDeviceErrors(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Displays a dialog box asking the user to select an image file to load.
|
|
|
|
* Uses sender's represented object value to figure out which drive to use.
|
|
|
|
*/
|
|
|
|
- (void)changeDeviceMedia:(id)sender
|
|
|
|
{
|
|
|
|
/* Find the drive name */
|
|
|
|
NSString * drive;
|
|
|
|
drive = [sender representedObject];
|
|
|
|
if(drive == nil) {
|
|
|
|
NSBeep();
|
|
|
|
QEMU_Alert(@"Could not find drive!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Display the file open dialog */
|
|
|
|
NSOpenPanel * openPanel;
|
|
|
|
openPanel = [NSOpenPanel openPanel];
|
|
|
|
[openPanel setCanChooseFiles: YES];
|
|
|
|
[openPanel setAllowsMultipleSelection: NO];
|
|
|
|
[openPanel setAllowedFileTypes: supportedImageFileTypes];
|
2018-05-29 20:15:23 +02:00
|
|
|
if([openPanel runModal] == NSModalResponseOK) {
|
2015-06-19 11:53:27 +02:00
|
|
|
NSString * file = [[[openPanel URLs] objectAtIndex: 0] path];
|
|
|
|
if(file == nil) {
|
|
|
|
NSBeep();
|
|
|
|
QEMU_Alert(@"Failed to convert URL to file path!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:27 +01:00
|
|
|
__block Error *err = NULL;
|
|
|
|
with_iothread_lock(^{
|
|
|
|
qmp_blockdev_change_medium(true,
|
|
|
|
[drive cStringUsingEncoding:
|
|
|
|
NSASCIIStringEncoding],
|
|
|
|
false, NULL,
|
|
|
|
[file cStringUsingEncoding:
|
|
|
|
NSASCIIStringEncoding],
|
|
|
|
true, "raw",
|
|
|
|
false, 0,
|
|
|
|
&err);
|
|
|
|
});
|
2015-06-19 11:53:27 +02:00
|
|
|
handleAnyDeviceErrors(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-26 00:13:59 +02:00
|
|
|
/* Verifies if the user really wants to quit */
|
|
|
|
- (BOOL)verifyQuit
|
|
|
|
{
|
|
|
|
NSAlert *alert = [NSAlert new];
|
|
|
|
[alert autorelease];
|
|
|
|
[alert setMessageText: @"Are you sure you want to quit QEMU?"];
|
|
|
|
[alert addButtonWithTitle: @"Cancel"];
|
|
|
|
[alert addButtonWithTitle: @"Quit"];
|
|
|
|
if([alert runModal] == NSAlertSecondButtonReturn) {
|
|
|
|
return YES;
|
|
|
|
} else {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 04:11:06 +02:00
|
|
|
/* The action method for the About menu item */
|
|
|
|
- (IBAction) do_about_menu_item: (id) sender
|
|
|
|
{
|
|
|
|
[about_window makeKeyAndOrderFront: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and display the about dialog */
|
|
|
|
- (void)make_about_window
|
|
|
|
{
|
|
|
|
/* Make the window */
|
|
|
|
int x = 0, y = 0, about_width = 400, about_height = 200;
|
|
|
|
NSRect window_rect = NSMakeRect(x, y, about_width, about_height);
|
|
|
|
about_window = [[NSWindow alloc] initWithContentRect:window_rect
|
2017-04-25 08:29:52 +02:00
|
|
|
styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable |
|
|
|
|
NSWindowStyleMaskMiniaturizable
|
2016-08-16 04:11:06 +02:00
|
|
|
backing:NSBackingStoreBuffered
|
|
|
|
defer:NO];
|
|
|
|
[about_window setTitle: @"About"];
|
|
|
|
[about_window setReleasedWhenClosed: NO];
|
|
|
|
[about_window center];
|
|
|
|
NSView *superView = [about_window contentView];
|
|
|
|
|
|
|
|
/* Create the dimensions of the picture */
|
|
|
|
int picture_width = 80, picture_height = 80;
|
|
|
|
x = (about_width - picture_width)/2;
|
|
|
|
y = about_height - picture_height - 10;
|
|
|
|
NSRect picture_rect = NSMakeRect(x, y, picture_width, picture_height);
|
|
|
|
|
|
|
|
/* Make the picture of QEMU */
|
|
|
|
NSImageView *picture_view = [[NSImageView alloc] initWithFrame:
|
|
|
|
picture_rect];
|
2021-03-09 13:22:25 +01:00
|
|
|
char *qemu_image_path_c = get_relocated_path(CONFIG_QEMU_ICONDIR "/hicolor/512x512/apps/qemu.png");
|
|
|
|
NSString *qemu_image_path = [NSString stringWithUTF8String:qemu_image_path_c];
|
|
|
|
g_free(qemu_image_path_c);
|
|
|
|
NSImage *qemu_image = [[NSImage alloc] initWithContentsOfFile:qemu_image_path];
|
2016-08-16 04:11:06 +02:00
|
|
|
[picture_view setImage: qemu_image];
|
|
|
|
[picture_view setImageScaling: NSImageScaleProportionallyUpOrDown];
|
|
|
|
[superView addSubview: picture_view];
|
|
|
|
|
|
|
|
/* Make the name label */
|
2021-03-09 13:22:26 +01:00
|
|
|
NSBundle *bundle = [NSBundle mainBundle];
|
|
|
|
if (bundle) {
|
|
|
|
x = 0;
|
|
|
|
y = y - 25;
|
|
|
|
int name_width = about_width, name_height = 20;
|
|
|
|
NSRect name_rect = NSMakeRect(x, y, name_width, name_height);
|
|
|
|
NSTextField *name_label = [[NSTextField alloc] initWithFrame: name_rect];
|
|
|
|
[name_label setEditable: NO];
|
|
|
|
[name_label setBezeled: NO];
|
|
|
|
[name_label setDrawsBackground: NO];
|
|
|
|
[name_label setAlignment: NSTextAlignmentCenter];
|
|
|
|
NSString *qemu_name = [[bundle executablePath] lastPathComponent];
|
|
|
|
[name_label setStringValue: qemu_name];
|
|
|
|
[superView addSubview: name_label];
|
|
|
|
}
|
2016-08-16 04:11:06 +02:00
|
|
|
|
|
|
|
/* Set the version label's attributes */
|
|
|
|
x = 0;
|
|
|
|
y = 50;
|
|
|
|
int version_width = about_width, version_height = 20;
|
|
|
|
NSRect version_rect = NSMakeRect(x, y, version_width, version_height);
|
|
|
|
NSTextField *version_label = [[NSTextField alloc] initWithFrame:
|
|
|
|
version_rect];
|
|
|
|
[version_label setEditable: NO];
|
|
|
|
[version_label setBezeled: NO];
|
2017-04-25 08:29:52 +02:00
|
|
|
[version_label setAlignment: NSTextAlignmentCenter];
|
2016-08-16 04:11:06 +02:00
|
|
|
[version_label setDrawsBackground: NO];
|
|
|
|
|
|
|
|
/* Create the version string*/
|
|
|
|
NSString *version_string;
|
|
|
|
version_string = [[NSString alloc] initWithFormat:
|
2018-02-15 12:06:47 +01:00
|
|
|
@"QEMU emulator version %s", QEMU_FULL_VERSION];
|
2016-08-16 04:11:06 +02:00
|
|
|
[version_label setStringValue: version_string];
|
|
|
|
[superView addSubview: version_label];
|
|
|
|
|
|
|
|
/* Make copyright label */
|
|
|
|
x = 0;
|
|
|
|
y = 35;
|
|
|
|
int copyright_width = about_width, copyright_height = 20;
|
|
|
|
NSRect copyright_rect = NSMakeRect(x, y, copyright_width, copyright_height);
|
|
|
|
NSTextField *copyright_label = [[NSTextField alloc] initWithFrame:
|
|
|
|
copyright_rect];
|
|
|
|
[copyright_label setEditable: NO];
|
|
|
|
[copyright_label setBezeled: NO];
|
|
|
|
[copyright_label setDrawsBackground: NO];
|
2017-04-25 08:29:52 +02:00
|
|
|
[copyright_label setAlignment: NSTextAlignmentCenter];
|
2016-08-16 04:11:06 +02:00
|
|
|
[copyright_label setStringValue: [NSString stringWithFormat: @"%s",
|
|
|
|
QEMU_COPYRIGHT]];
|
|
|
|
[superView addSubview: copyright_label];
|
|
|
|
}
|
|
|
|
|
2017-06-14 05:17:38 +02:00
|
|
|
/* Used by the Speed menu items */
|
|
|
|
- (void)adjustSpeed:(id)sender
|
|
|
|
{
|
|
|
|
int throttle_pct; /* throttle percentage */
|
|
|
|
NSMenu *menu;
|
|
|
|
|
|
|
|
menu = [sender menu];
|
|
|
|
if (menu != nil)
|
|
|
|
{
|
|
|
|
/* Unselect the currently selected item */
|
|
|
|
for (NSMenuItem *item in [menu itemArray]) {
|
2019-02-01 08:12:25 +01:00
|
|
|
if (item.state == NSControlStateValueOn) {
|
|
|
|
[item setState: NSControlStateValueOff];
|
2017-06-14 05:17:38 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the menu item
|
2019-02-01 08:12:25 +01:00
|
|
|
[sender setState: NSControlStateValueOn];
|
2017-06-14 05:17:38 +02:00
|
|
|
|
|
|
|
// get the throttle percentage
|
|
|
|
throttle_pct = [sender tag];
|
|
|
|
|
2019-02-25 11:24:27 +01:00
|
|
|
with_iothread_lock(^{
|
|
|
|
cpu_throttle_set(throttle_pct);
|
|
|
|
});
|
2017-06-14 05:17:38 +02:00
|
|
|
COCOA_DEBUG("cpu throttling at %d%c\n", cpu_throttle_get_percentage(), '%');
|
|
|
|
}
|
|
|
|
|
2015-05-19 10:11:18 +02:00
|
|
|
@end
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2019-02-25 11:24:32 +01:00
|
|
|
@interface QemuApplication : NSApplication
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation QemuApplication
|
|
|
|
- (void)sendEvent:(NSEvent *)event
|
|
|
|
{
|
|
|
|
COCOA_DEBUG("QemuApplication: sendEvent\n");
|
2019-02-25 11:24:33 +01:00
|
|
|
if (![cocoaView handleEvent:event]) {
|
|
|
|
[super sendEvent: event];
|
|
|
|
}
|
2019-02-25 11:24:32 +01:00
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2019-02-25 11:24:29 +01:00
|
|
|
static void create_initial_menus(void)
|
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
// Add menus
|
|
|
|
NSMenu *menu;
|
|
|
|
NSMenuItem *menuItem;
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
[NSApp setMainMenu:[[NSMenu alloc] init]];
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// Application menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@""];
|
2016-08-16 04:11:06 +02:00
|
|
|
[menu addItemWithTitle:@"About QEMU" action:@selector(do_about_menu_item:) keyEquivalent:@""]; // About QEMU
|
2008-01-23 00:25:15 +01:00
|
|
|
[menu addItem:[NSMenuItem separatorItem]]; //Separator
|
|
|
|
[menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
|
|
|
|
menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
|
2017-04-25 08:29:52 +02:00
|
|
|
[menuItem setKeyEquivalentModifierMask:(NSEventModifierFlagOption|NSEventModifierFlagCommand)];
|
2008-01-23 00:25:15 +01:00
|
|
|
[menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
|
|
|
|
[menu addItem:[NSMenuItem separatorItem]]; //Separator
|
|
|
|
[menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
|
|
|
|
menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
|
|
|
|
[menuItem setSubmenu:menu];
|
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
|
|
|
[NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2015-06-19 11:53:27 +02:00
|
|
|
// Machine menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle: @"Machine"];
|
|
|
|
[menu setAutoenablesItems: NO];
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Pause" action: @selector(pauseQEMU:) keyEquivalent: @""] autorelease]];
|
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle: @"Resume" action: @selector(resumeQEMU:) keyEquivalent: @""] autorelease];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
[menuItem setEnabled: NO];
|
2015-06-19 11:53:27 +02:00
|
|
|
[menu addItem: [NSMenuItem separatorItem]];
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Reset" action: @selector(restartQEMU:) keyEquivalent: @""] autorelease]];
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Power Down" action: @selector(powerDownQEMU:) keyEquivalent: @""] autorelease]];
|
2015-06-19 11:53:27 +02:00
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle: @"Machine" action:nil keyEquivalent:@""] autorelease];
|
|
|
|
[menuItem setSubmenu:menu];
|
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// View menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@"View"];
|
2015-05-19 10:11:17 +02:00
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
|
2008-01-23 00:25:15 +01:00
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
|
|
|
|
[menuItem setSubmenu:menu];
|
2005-03-01 22:37:28 +01:00
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
|
|
|
|
2017-06-14 05:17:38 +02:00
|
|
|
// Speed menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@"Speed"];
|
|
|
|
|
|
|
|
// Add the rest of the Speed menu items
|
|
|
|
int p, percentage, throttle_pct;
|
|
|
|
for (p = 10; p >= 0; p--)
|
|
|
|
{
|
|
|
|
percentage = p * 10 > 1 ? p * 10 : 1; // prevent a 0% menu item
|
|
|
|
|
|
|
|
menuItem = [[[NSMenuItem alloc]
|
|
|
|
initWithTitle: [NSString stringWithFormat: @"%d%%", percentage] action:@selector(adjustSpeed:) keyEquivalent:@""] autorelease];
|
|
|
|
|
|
|
|
if (percentage == 100) {
|
2019-02-01 08:12:25 +01:00
|
|
|
[menuItem setState: NSControlStateValueOn];
|
2017-06-14 05:17:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the throttle percentage */
|
|
|
|
throttle_pct = -1 * percentage + 100;
|
|
|
|
|
|
|
|
[menuItem setTag: throttle_pct];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
}
|
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle:@"Speed" action:nil keyEquivalent:@""] autorelease];
|
|
|
|
[menuItem setSubmenu:menu];
|
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// Window menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@"Window"];
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
|
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
|
|
|
|
[menuItem setSubmenu:menu];
|
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
|
|
|
[NSApp setWindowsMenu:menu];
|
|
|
|
|
|
|
|
// Help menu
|
|
|
|
menu = [[NSMenu alloc] initWithTitle:@"Help"];
|
|
|
|
[menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
|
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
|
|
|
|
[menuItem setSubmenu:menu];
|
|
|
|
[[NSApp mainMenu] addItem:menuItem];
|
2019-02-25 11:24:29 +01:00
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:30 +01:00
|
|
|
/* Returns a name for a given console */
|
|
|
|
static NSString * getConsoleName(QemuConsole * console)
|
|
|
|
{
|
|
|
|
return [NSString stringWithFormat: @"%s", qemu_console_get_label(console)];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add an entry to the View menu for each console */
|
|
|
|
static void add_console_menu_entries(void)
|
|
|
|
{
|
|
|
|
NSMenu *menu;
|
|
|
|
NSMenuItem *menuItem;
|
|
|
|
int index = 0;
|
|
|
|
|
|
|
|
menu = [[[NSApp mainMenu] itemWithTitle:@"View"] submenu];
|
|
|
|
|
|
|
|
[menu addItem:[NSMenuItem separatorItem]];
|
|
|
|
|
|
|
|
while (qemu_console_lookup_by_index(index) != NULL) {
|
|
|
|
menuItem = [[[NSMenuItem alloc] initWithTitle: getConsoleName(qemu_console_lookup_by_index(index))
|
|
|
|
action: @selector(displayConsole:) keyEquivalent: @""] autorelease];
|
|
|
|
[menuItem setTag: index];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make menu items for all removable devices.
|
|
|
|
* Each device is given an 'Eject' and 'Change' menu item.
|
|
|
|
*/
|
|
|
|
static void addRemovableDevicesMenuItems(void)
|
|
|
|
{
|
|
|
|
NSMenu *menu;
|
|
|
|
NSMenuItem *menuItem;
|
|
|
|
BlockInfoList *currentDevice, *pointerToFree;
|
|
|
|
NSString *deviceName;
|
|
|
|
|
|
|
|
currentDevice = qmp_query_block(NULL);
|
|
|
|
pointerToFree = currentDevice;
|
|
|
|
if(currentDevice == NULL) {
|
|
|
|
NSBeep();
|
|
|
|
QEMU_Alert(@"Failed to query for block devices!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
menu = [[[NSApp mainMenu] itemWithTitle:@"Machine"] submenu];
|
|
|
|
|
|
|
|
// Add a separator between related groups of menu items
|
|
|
|
[menu addItem:[NSMenuItem separatorItem]];
|
|
|
|
|
|
|
|
// Set the attributes to the "Removable Media" menu item
|
|
|
|
NSString *titleString = @"Removable Media";
|
|
|
|
NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:titleString];
|
|
|
|
NSColor *newColor = [NSColor blackColor];
|
|
|
|
NSFontManager *fontManager = [NSFontManager sharedFontManager];
|
|
|
|
NSFont *font = [fontManager fontWithFamily:@"Helvetica"
|
|
|
|
traits:NSBoldFontMask|NSItalicFontMask
|
|
|
|
weight:0
|
|
|
|
size:14];
|
|
|
|
[attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, [titleString length])];
|
|
|
|
[attString addAttribute:NSForegroundColorAttributeName value:newColor range:NSMakeRange(0, [titleString length])];
|
|
|
|
[attString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInt: 1] range:NSMakeRange(0, [titleString length])];
|
|
|
|
|
|
|
|
// Add the "Removable Media" menu item
|
|
|
|
menuItem = [NSMenuItem new];
|
|
|
|
[menuItem setAttributedTitle: attString];
|
|
|
|
[menuItem setEnabled: NO];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
|
|
|
|
/* Loop through all the block devices in the emulator */
|
|
|
|
while (currentDevice) {
|
|
|
|
deviceName = [[NSString stringWithFormat: @"%s", currentDevice->value->device] retain];
|
|
|
|
|
|
|
|
if(currentDevice->value->removable) {
|
|
|
|
menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Change %s...", currentDevice->value->device]
|
|
|
|
action: @selector(changeDeviceMedia:)
|
|
|
|
keyEquivalent: @""];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
[menuItem setRepresentedObject: deviceName];
|
|
|
|
[menuItem autorelease];
|
|
|
|
|
|
|
|
menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Eject %s", currentDevice->value->device]
|
|
|
|
action: @selector(ejectDeviceMedia:)
|
|
|
|
keyEquivalent: @""];
|
|
|
|
[menu addItem: menuItem];
|
|
|
|
[menuItem setRepresentedObject: deviceName];
|
|
|
|
[menuItem autorelease];
|
|
|
|
}
|
|
|
|
currentDevice = currentDevice->next;
|
|
|
|
}
|
|
|
|
qapi_free_BlockInfoList(pointerToFree);
|
|
|
|
}
|
|
|
|
|
2021-06-16 16:19:54 +02:00
|
|
|
@interface QemuCocoaPasteboardTypeOwner : NSObject<NSPasteboardTypeOwner>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation QemuCocoaPasteboardTypeOwner
|
|
|
|
|
|
|
|
- (void)pasteboard:(NSPasteboard *)sender provideDataForType:(NSPasteboardType)type
|
|
|
|
{
|
|
|
|
if (type != NSPasteboardTypeString) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
with_iothread_lock(^{
|
|
|
|
QemuClipboardInfo *info = qemu_clipboard_info_ref(cbinfo);
|
|
|
|
qemu_event_reset(&cbevent);
|
|
|
|
qemu_clipboard_request(info, QEMU_CLIPBOARD_TYPE_TEXT);
|
|
|
|
|
|
|
|
while (info == cbinfo &&
|
|
|
|
info->types[QEMU_CLIPBOARD_TYPE_TEXT].available &&
|
|
|
|
info->types[QEMU_CLIPBOARD_TYPE_TEXT].data == NULL) {
|
|
|
|
qemu_mutex_unlock_iothread();
|
|
|
|
qemu_event_wait(&cbevent);
|
|
|
|
qemu_mutex_lock_iothread();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info == cbinfo) {
|
|
|
|
NSData *data = [[NSData alloc] initWithBytes:info->types[QEMU_CLIPBOARD_TYPE_TEXT].data
|
|
|
|
length:info->types[QEMU_CLIPBOARD_TYPE_TEXT].size];
|
|
|
|
[sender setData:data forType:NSPasteboardTypeString];
|
|
|
|
[data release];
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_clipboard_info_unref(info);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
static QemuCocoaPasteboardTypeOwner *cbowner;
|
|
|
|
|
|
|
|
static void cocoa_clipboard_notify(Notifier *notifier, void *data);
|
|
|
|
static void cocoa_clipboard_request(QemuClipboardInfo *info,
|
|
|
|
QemuClipboardType type);
|
|
|
|
|
|
|
|
static QemuClipboardPeer cbpeer = {
|
|
|
|
.name = "cocoa",
|
|
|
|
.update = { .notify = cocoa_clipboard_notify },
|
|
|
|
.request = cocoa_clipboard_request
|
|
|
|
};
|
|
|
|
|
|
|
|
static void cocoa_clipboard_notify(Notifier *notifier, void *data)
|
|
|
|
{
|
|
|
|
QemuClipboardInfo *info = data;
|
|
|
|
|
|
|
|
if (info->owner == &cbpeer || info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info != cbinfo) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
qemu_clipboard_info_unref(cbinfo);
|
|
|
|
cbinfo = qemu_clipboard_info_ref(info);
|
|
|
|
cbchangecount = [[NSPasteboard generalPasteboard] declareTypes:@[NSPasteboardTypeString] owner:cbowner];
|
|
|
|
[pool release];
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_event_set(&cbevent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cocoa_clipboard_request(QemuClipboardInfo *info,
|
|
|
|
QemuClipboardType type)
|
|
|
|
{
|
|
|
|
NSData *text;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case QEMU_CLIPBOARD_TYPE_TEXT:
|
|
|
|
text = [[NSPasteboard generalPasteboard] dataForType:NSPasteboardTypeString];
|
|
|
|
if (text) {
|
|
|
|
qemu_clipboard_set_data(&cbpeer, info, type,
|
|
|
|
[text length], [text bytes], true);
|
|
|
|
[text release];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
/*
|
|
|
|
* The startup process for the OSX/Cocoa UI is complicated, because
|
|
|
|
* OSX insists that the UI runs on the initial main thread, and so we
|
|
|
|
* need to start a second thread which runs the vl.c qemu_main():
|
|
|
|
*
|
|
|
|
* Initial thread: 2nd thread:
|
|
|
|
* in main():
|
|
|
|
* create qemu-main thread
|
|
|
|
* wait on display_init semaphore
|
|
|
|
* call qemu_main()
|
|
|
|
* ...
|
|
|
|
* in cocoa_display_init():
|
|
|
|
* post the display_init semaphore
|
|
|
|
* wait on app_started semaphore
|
|
|
|
* create application, menus, etc
|
|
|
|
* enter OSX run loop
|
|
|
|
* in applicationDidFinishLaunching:
|
|
|
|
* post app_started semaphore
|
|
|
|
* tell main thread to fullscreen if needed
|
|
|
|
* [...]
|
|
|
|
* run qemu main-loop
|
|
|
|
*
|
|
|
|
* We do this in two stages so that we don't do the creation of the
|
|
|
|
* GUI application menus and so on for command line options like --help
|
|
|
|
* where we want to just print text to stdout and exit immediately.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void *call_qemu_main(void *opaque)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
COCOA_DEBUG("Second thread: calling qemu_main()\n");
|
|
|
|
status = qemu_main(gArgc, gArgv, *_NSGetEnviron());
|
|
|
|
COCOA_DEBUG("Second thread: qemu_main() returned, exiting\n");
|
2021-06-16 16:19:54 +02:00
|
|
|
[cbowner release];
|
2019-02-25 11:24:33 +01:00
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|
2021-07-08 18:56:19 +02:00
|
|
|
int main (int argc, char **argv) {
|
2019-02-25 11:24:33 +01:00
|
|
|
QemuThread thread;
|
2019-02-25 11:24:29 +01:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
COCOA_DEBUG("Entered main()\n");
|
2019-02-25 11:24:29 +01:00
|
|
|
gArgc = argc;
|
2021-07-08 18:56:19 +02:00
|
|
|
gArgv = argv;
|
2019-02-25 11:24:29 +01:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
qemu_sem_init(&display_init_sem, 0);
|
|
|
|
qemu_sem_init(&app_started_sem, 0);
|
2019-02-25 11:24:29 +01:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
qemu_thread_create(&thread, "qemu_main", call_qemu_main,
|
|
|
|
NULL, QEMU_THREAD_DETACHED);
|
|
|
|
|
|
|
|
COCOA_DEBUG("Main thread: waiting for display_init_sem\n");
|
|
|
|
qemu_sem_wait(&display_init_sem);
|
|
|
|
COCOA_DEBUG("Main thread: initializing app\n");
|
2019-02-25 11:24:29 +01:00
|
|
|
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
|
|
|
// Pull this console process up to being a fully-fledged graphical
|
|
|
|
// app with a menubar and Dock icon
|
|
|
|
ProcessSerialNumber psn = { 0, kCurrentProcess };
|
|
|
|
TransformProcessType(&psn, kProcessTransformToForegroundApplication);
|
|
|
|
|
2019-02-25 11:24:32 +01:00
|
|
|
[QemuApplication sharedApplication];
|
2019-02-25 11:24:29 +01:00
|
|
|
|
|
|
|
create_initial_menus();
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
/*
|
|
|
|
* Create the menu entries which depend on QEMU state (for consoles
|
|
|
|
* and removeable devices). These make calls back into QEMU functions,
|
|
|
|
* which is OK because at this point we know that the second thread
|
|
|
|
* holds the iothread lock and is synchronously waiting for us to
|
|
|
|
* finish.
|
|
|
|
*/
|
|
|
|
add_console_menu_entries();
|
|
|
|
addRemovableDevicesMenuItems();
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// Create an Application controller
|
|
|
|
QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
|
|
|
|
[NSApp setDelegate:appController];
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
// Start the main event loop
|
2019-02-25 11:24:33 +01:00
|
|
|
COCOA_DEBUG("Main thread: entering OSX run loop\n");
|
2008-01-23 00:25:15 +01:00
|
|
|
[NSApp run];
|
2019-02-25 11:24:33 +01:00
|
|
|
COCOA_DEBUG("Main thread: left OSX run loop, exiting\n");
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
[appController release];
|
|
|
|
[pool release];
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
|
|
|
|
2005-03-01 22:37:28 +01:00
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
#pragma mark qemu
|
2012-11-13 14:51:41 +01:00
|
|
|
static void cocoa_update(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h)
|
2008-01-23 00:25:15 +01:00
|
|
|
{
|
2013-04-22 12:29:46 +02:00
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
|
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
NSRect rect;
|
|
|
|
if ([cocoaView cdx] == 1.0) {
|
|
|
|
rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
|
|
|
|
} else {
|
|
|
|
rect = NSMakeRect(
|
|
|
|
x * [cocoaView cdx],
|
|
|
|
([cocoaView gscreen].height - y - h) * [cocoaView cdy],
|
|
|
|
w * [cocoaView cdx],
|
|
|
|
h * [cocoaView cdy]);
|
|
|
|
}
|
|
|
|
[cocoaView setNeedsDisplayInRect:rect];
|
|
|
|
});
|
2013-04-22 12:29:46 +02:00
|
|
|
|
|
|
|
[pool release];
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
|
|
|
|
2013-02-28 15:03:04 +01:00
|
|
|
static void cocoa_switch(DisplayChangeListener *dcl,
|
|
|
|
DisplaySurface *surface)
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2013-04-22 12:29:46 +02:00
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
2019-02-25 11:24:33 +01:00
|
|
|
pixman_image_t *image = surface->image;
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2013-04-22 12:29:46 +02:00
|
|
|
COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
|
2019-02-25 11:24:33 +01:00
|
|
|
|
2021-06-16 16:19:10 +02:00
|
|
|
[cocoaView updateUIInfo];
|
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
// The DisplaySurface will be freed as soon as this callback returns.
|
|
|
|
// We take a reference to the underlying pixman image here so it does
|
|
|
|
// not disappear from under our feet; the switchSurface method will
|
|
|
|
// deref the old image when it is done with it.
|
|
|
|
pixman_image_ref(image);
|
|
|
|
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
[cocoaView switchSurface:image];
|
|
|
|
});
|
2013-04-22 12:29:46 +02:00
|
|
|
[pool release];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2013-03-01 13:03:04 +01:00
|
|
|
static void cocoa_refresh(DisplayChangeListener *dcl)
|
2008-01-23 00:25:15 +01:00
|
|
|
{
|
2013-04-22 12:29:46 +02:00
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
|
2015-10-13 22:51:18 +02:00
|
|
|
graphic_hw_update(NULL);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2013-12-04 14:08:04 +01:00
|
|
|
if (qemu_input_is_absolute()) {
|
2019-02-25 11:24:33 +01:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
if (![cocoaView isAbsoluteEnabled]) {
|
|
|
|
if ([cocoaView isMouseGrabbed]) {
|
|
|
|
[cocoaView ungrabMouse];
|
|
|
|
}
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2019-02-25 11:24:33 +01:00
|
|
|
[cocoaView setAbsoluteEnabled:YES];
|
|
|
|
});
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2021-06-16 16:19:54 +02:00
|
|
|
|
|
|
|
if (cbchangecount != [[NSPasteboard generalPasteboard] changeCount]) {
|
|
|
|
qemu_clipboard_info_unref(cbinfo);
|
|
|
|
cbinfo = qemu_clipboard_info_new(&cbpeer, QEMU_CLIPBOARD_SELECTION_CLIPBOARD);
|
|
|
|
if ([[NSPasteboard generalPasteboard] availableTypeFromArray:@[NSPasteboardTypeString]]) {
|
|
|
|
cbinfo->types[QEMU_CLIPBOARD_TYPE_TEXT].available = true;
|
|
|
|
}
|
|
|
|
qemu_clipboard_update(cbinfo);
|
|
|
|
cbchangecount = [[NSPasteboard generalPasteboard] changeCount];
|
|
|
|
qemu_event_set(&cbevent);
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:29:46 +02:00
|
|
|
[pool release];
|
2008-01-23 00:25:15 +01:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2018-03-01 11:05:37 +01:00
|
|
|
static void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
|
2005-03-01 22:37:28 +01:00
|
|
|
{
|
2008-01-23 00:25:15 +01:00
|
|
|
COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
|
|
|
|
|
2019-02-25 11:24:33 +01:00
|
|
|
/* Tell main thread to go ahead and create the app and enter the run loop */
|
|
|
|
qemu_sem_post(&display_init_sem);
|
|
|
|
qemu_sem_wait(&app_started_sem);
|
|
|
|
COCOA_DEBUG("cocoa_display_init: app start completed\n");
|
|
|
|
|
2015-05-19 10:11:17 +02:00
|
|
|
/* if fullscreen mode is to be used */
|
2018-02-02 12:10:19 +01:00
|
|
|
if (opts->has_full_screen && opts->full_screen) {
|
2019-02-25 11:24:33 +01:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
[NSApp activateIgnoringOtherApps: YES];
|
|
|
|
[(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
|
|
|
|
});
|
2015-05-19 10:11:17 +02:00
|
|
|
}
|
2020-02-06 12:27:50 +01:00
|
|
|
if (opts->has_show_cursor && opts->show_cursor) {
|
|
|
|
cursor_hide = 0;
|
|
|
|
}
|
2015-05-19 10:11:17 +02:00
|
|
|
|
Update cocoa.m to match new DisplayState code (Samuel Benson)
Version 2 does as follows:
[1]: Corrects endianness on issues by using native BGR to RGB conversion
[2]: Uses DisplayState accessors for obtaining graphics context information,
which
[3]: Removes now unused variables, and
[4]: Allows reading of varying color modes (32bit/24/16), and converting to
native colorspace
[5]: Attempts to keep itself centered on screen (as opposed to bottom right,
which immediately goes off screen after bios load) on context changes
(window resizes)
Testing working on i386 (gentoo, Windows 2000) and PPC (debian) guests on PPC
and x86 Macs.
In regards to [4], Windows 2000 displays fine on quick tests, but on the lowest
setting I could test, 16bit color depth at 4bpp, colors are slightly off. I
used gentoo install-x86-minimal-2008.0 in framebuffer mode to test above
setting; the usual grey text is now blue, and Tux appears to be BGR shifted. I
do not know if previous code worked at such a low color setting.
Signed-off-by: Samuel Benson <qemu_ml@digitalescape.info>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6683 c046a42c-6fe2-441c-8c8c-71466251a162
2009-03-04 20:25:22 +01:00
|
|
|
// register vga output callbacks
|
2021-02-19 09:44:19 +01:00
|
|
|
register_displaychangelistener(&dcl);
|
2021-06-16 16:19:54 +02:00
|
|
|
|
|
|
|
qemu_event_init(&cbevent, false);
|
|
|
|
cbowner = [[QemuCocoaPasteboardTypeOwner alloc] init];
|
|
|
|
qemu_clipboard_peer_register(&cbpeer);
|
2005-03-01 22:37:28 +01:00
|
|
|
}
|
2018-03-01 11:05:37 +01:00
|
|
|
|
|
|
|
static QemuDisplay qemu_display_cocoa = {
|
|
|
|
.type = DISPLAY_TYPE_COCOA,
|
|
|
|
.init = cocoa_display_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void register_cocoa(void)
|
|
|
|
{
|
|
|
|
qemu_display_register(&qemu_display_cocoa);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_cocoa);
|