]> git.proxmox.com Git - mirror_qemu.git/blame - ui/cocoa.m
ui/cocoa: Mark variables static
[mirror_qemu.git] / ui / cocoa.m
CommitLineData
5b0753e0 1/*
c304f7e2 2 * QEMU Cocoa CG display driver
5fafdf24 3 *
c304f7e2 4 * Copyright (c) 2008 Mike Kronenberg
5fafdf24 5 *
5b0753e0
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
da4dbf74 24
e4a096b1
PM
25#include "qemu/osdep.h"
26
5b0753e0 27#import <Cocoa/Cocoa.h>
3bbbee18 28#include <crt_externs.h>
5b0753e0 29
87ecb68b 30#include "qemu-common.h"
28ecbaee 31#include "ui/console.h"
21bae11a 32#include "ui/input.h"
6d73bb64 33#include "ui/kbd-state.h"
9c17d615 34#include "sysemu/sysemu.h"
54d31236 35#include "sysemu/runstate.h"
b0c3cf94 36#include "sysemu/cpu-throttle.h"
e688df6b 37#include "qapi/error.h"
16bf5234 38#include "qapi/qapi-commands-block.h"
90f8c0f9 39#include "qapi/qapi-commands-machine.h"
16bf5234 40#include "qapi/qapi-commands-misc.h"
693a3e01 41#include "sysemu/blockdev.h"
9e8204b1 42#include "qemu-version.h"
e31746ec 43#include "qemu/cutils.h"
db725815 44#include "qemu/main-loop.h"
0b8fa32f 45#include "qemu/module.h"
aaac714f 46#include <Carbon/Carbon.h>
2e5b09fd 47#include "hw/core/cpu.h"
da4dbf74 48
5e24600a
BS
49#ifndef MAC_OS_X_VERSION_10_13
50#define MAC_OS_X_VERSION_10_13 101300
51#endif
44e4c0ba 52
5e24600a
BS
53/* 10.14 deprecates NSOnState and NSOffState in favor of
54 * NSControlStateValueOn/Off, which were introduced in 10.13.
55 * Define for older versions
56 */
57#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_13
58#define NSControlStateValueOn NSOnState
59#define NSControlStateValueOff NSOffState
60#endif
3b46e624 61
c304f7e2 62//#define DEBUG
3b46e624 63
c304f7e2
TS
64#ifdef DEBUG
65#define COCOA_DEBUG(...) { (void) fprintf (stdout, __VA_ARGS__); }
b29169d2 66#else
c304f7e2 67#define COCOA_DEBUG(...) ((void) 0)
b29169d2
BS
68#endif
69
c304f7e2 70#define cgrect(nsrect) (*(CGRect *)&(nsrect))
5b0753e0 71
c304f7e2
TS
72typedef struct {
73 int width;
74 int height;
c304f7e2
TS
75} QEMUScreen;
76
cc7859c3
AO
77static void cocoa_update(DisplayChangeListener *dcl,
78 int x, int y, int w, int h);
79
80static void cocoa_switch(DisplayChangeListener *dcl,
81 DisplaySurface *surface);
82
83static void cocoa_refresh(DisplayChangeListener *dcl);
84
cb823408 85static NSWindow *normalWindow, *about_window;
cc7859c3
AO
86static const DisplayChangeListenerOps dcl_ops = {
87 .dpy_name = "cocoa",
88 .dpy_gfx_update = cocoa_update,
89 .dpy_gfx_switch = cocoa_switch,
90 .dpy_refresh = cocoa_refresh,
91};
92static DisplayChangeListener dcl = {
93 .ops = &dcl_ops,
94};
21bae11a 95static int last_buttons;
3487da6a 96static int cursor_hide = 1;
c304f7e2 97
cb823408
AO
98static int gArgc;
99static char **gArgv;
100static bool stretch_video;
101static NSTextField *pauseLabel;
102static NSArray * supportedImageFileTypes;
5b0753e0 103
5588840f
PM
104static QemuSemaphore display_init_sem;
105static QemuSemaphore app_started_sem;
dff742ad 106static bool allow_events;
5588840f 107
60105d7a 108// Utility functions to run specified code block with iothread lock held
31819e95 109typedef void (^CodeBlock)(void);
60105d7a 110typedef bool (^BoolCodeBlock)(void);
31819e95
PM
111
112static void with_iothread_lock(CodeBlock block)
113{
114 bool locked = qemu_mutex_iothread_locked();
115 if (!locked) {
116 qemu_mutex_lock_iothread();
117 }
118 block();
119 if (!locked) {
120 qemu_mutex_unlock_iothread();
121 }
122}
123
60105d7a
PM
124static bool bool_with_iothread_lock(BoolCodeBlock block)
125{
126 bool locked = qemu_mutex_iothread_locked();
127 bool val;
128
129 if (!locked) {
130 qemu_mutex_lock_iothread();
131 }
132 val = block();
133 if (!locked) {
134 qemu_mutex_unlock_iothread();
135 }
136 return val;
137}
138
aaac714f 139// Mac to QKeyCode conversion
cb823408 140static const int mac_to_qkeycode_map[] = {
aaac714f
JA
141 [kVK_ANSI_A] = Q_KEY_CODE_A,
142 [kVK_ANSI_B] = Q_KEY_CODE_B,
143 [kVK_ANSI_C] = Q_KEY_CODE_C,
144 [kVK_ANSI_D] = Q_KEY_CODE_D,
145 [kVK_ANSI_E] = Q_KEY_CODE_E,
146 [kVK_ANSI_F] = Q_KEY_CODE_F,
147 [kVK_ANSI_G] = Q_KEY_CODE_G,
148 [kVK_ANSI_H] = Q_KEY_CODE_H,
149 [kVK_ANSI_I] = Q_KEY_CODE_I,
150 [kVK_ANSI_J] = Q_KEY_CODE_J,
151 [kVK_ANSI_K] = Q_KEY_CODE_K,
152 [kVK_ANSI_L] = Q_KEY_CODE_L,
153 [kVK_ANSI_M] = Q_KEY_CODE_M,
154 [kVK_ANSI_N] = Q_KEY_CODE_N,
155 [kVK_ANSI_O] = Q_KEY_CODE_O,
156 [kVK_ANSI_P] = Q_KEY_CODE_P,
157 [kVK_ANSI_Q] = Q_KEY_CODE_Q,
158 [kVK_ANSI_R] = Q_KEY_CODE_R,
159 [kVK_ANSI_S] = Q_KEY_CODE_S,
160 [kVK_ANSI_T] = Q_KEY_CODE_T,
161 [kVK_ANSI_U] = Q_KEY_CODE_U,
162 [kVK_ANSI_V] = Q_KEY_CODE_V,
163 [kVK_ANSI_W] = Q_KEY_CODE_W,
164 [kVK_ANSI_X] = Q_KEY_CODE_X,
165 [kVK_ANSI_Y] = Q_KEY_CODE_Y,
166 [kVK_ANSI_Z] = Q_KEY_CODE_Z,
167
168 [kVK_ANSI_0] = Q_KEY_CODE_0,
169 [kVK_ANSI_1] = Q_KEY_CODE_1,
170 [kVK_ANSI_2] = Q_KEY_CODE_2,
171 [kVK_ANSI_3] = Q_KEY_CODE_3,
172 [kVK_ANSI_4] = Q_KEY_CODE_4,
173 [kVK_ANSI_5] = Q_KEY_CODE_5,
174 [kVK_ANSI_6] = Q_KEY_CODE_6,
175 [kVK_ANSI_7] = Q_KEY_CODE_7,
176 [kVK_ANSI_8] = Q_KEY_CODE_8,
177 [kVK_ANSI_9] = Q_KEY_CODE_9,
178
179 [kVK_ANSI_Grave] = Q_KEY_CODE_GRAVE_ACCENT,
180 [kVK_ANSI_Minus] = Q_KEY_CODE_MINUS,
181 [kVK_ANSI_Equal] = Q_KEY_CODE_EQUAL,
182 [kVK_Delete] = Q_KEY_CODE_BACKSPACE,
183 [kVK_CapsLock] = Q_KEY_CODE_CAPS_LOCK,
184 [kVK_Tab] = Q_KEY_CODE_TAB,
185 [kVK_Return] = Q_KEY_CODE_RET,
186 [kVK_ANSI_LeftBracket] = Q_KEY_CODE_BRACKET_LEFT,
187 [kVK_ANSI_RightBracket] = Q_KEY_CODE_BRACKET_RIGHT,
188 [kVK_ANSI_Backslash] = Q_KEY_CODE_BACKSLASH,
189 [kVK_ANSI_Semicolon] = Q_KEY_CODE_SEMICOLON,
190 [kVK_ANSI_Quote] = Q_KEY_CODE_APOSTROPHE,
191 [kVK_ANSI_Comma] = Q_KEY_CODE_COMMA,
192 [kVK_ANSI_Period] = Q_KEY_CODE_DOT,
193 [kVK_ANSI_Slash] = Q_KEY_CODE_SLASH,
aaac714f
JA
194 [kVK_Space] = Q_KEY_CODE_SPC,
195
196 [kVK_ANSI_Keypad0] = Q_KEY_CODE_KP_0,
197 [kVK_ANSI_Keypad1] = Q_KEY_CODE_KP_1,
198 [kVK_ANSI_Keypad2] = Q_KEY_CODE_KP_2,
199 [kVK_ANSI_Keypad3] = Q_KEY_CODE_KP_3,
200 [kVK_ANSI_Keypad4] = Q_KEY_CODE_KP_4,
201 [kVK_ANSI_Keypad5] = Q_KEY_CODE_KP_5,
202 [kVK_ANSI_Keypad6] = Q_KEY_CODE_KP_6,
203 [kVK_ANSI_Keypad7] = Q_KEY_CODE_KP_7,
204 [kVK_ANSI_Keypad8] = Q_KEY_CODE_KP_8,
205 [kVK_ANSI_Keypad9] = Q_KEY_CODE_KP_9,
206 [kVK_ANSI_KeypadDecimal] = Q_KEY_CODE_KP_DECIMAL,
207 [kVK_ANSI_KeypadEnter] = Q_KEY_CODE_KP_ENTER,
208 [kVK_ANSI_KeypadPlus] = Q_KEY_CODE_KP_ADD,
209 [kVK_ANSI_KeypadMinus] = Q_KEY_CODE_KP_SUBTRACT,
210 [kVK_ANSI_KeypadMultiply] = Q_KEY_CODE_KP_MULTIPLY,
211 [kVK_ANSI_KeypadDivide] = Q_KEY_CODE_KP_DIVIDE,
212 [kVK_ANSI_KeypadEquals] = Q_KEY_CODE_KP_EQUALS,
213 [kVK_ANSI_KeypadClear] = Q_KEY_CODE_NUM_LOCK,
214
215 [kVK_UpArrow] = Q_KEY_CODE_UP,
216 [kVK_DownArrow] = Q_KEY_CODE_DOWN,
217 [kVK_LeftArrow] = Q_KEY_CODE_LEFT,
218 [kVK_RightArrow] = Q_KEY_CODE_RIGHT,
219
220 [kVK_Help] = Q_KEY_CODE_INSERT,
221 [kVK_Home] = Q_KEY_CODE_HOME,
222 [kVK_PageUp] = Q_KEY_CODE_PGUP,
223 [kVK_PageDown] = Q_KEY_CODE_PGDN,
224 [kVK_End] = Q_KEY_CODE_END,
225 [kVK_ForwardDelete] = Q_KEY_CODE_DELETE,
226
227 [kVK_Escape] = Q_KEY_CODE_ESC,
228
229 /* The Power key can't be used directly because the operating system uses
230 * it. This key can be emulated by using it in place of another key such as
231 * F1. Don't forget to disable the real key binding.
232 */
233 /* [kVK_F1] = Q_KEY_CODE_POWER, */
234
235 [kVK_F1] = Q_KEY_CODE_F1,
236 [kVK_F2] = Q_KEY_CODE_F2,
237 [kVK_F3] = Q_KEY_CODE_F3,
238 [kVK_F4] = Q_KEY_CODE_F4,
239 [kVK_F5] = Q_KEY_CODE_F5,
240 [kVK_F6] = Q_KEY_CODE_F6,
241 [kVK_F7] = Q_KEY_CODE_F7,
242 [kVK_F8] = Q_KEY_CODE_F8,
243 [kVK_F9] = Q_KEY_CODE_F9,
244 [kVK_F10] = Q_KEY_CODE_F10,
245 [kVK_F11] = Q_KEY_CODE_F11,
246 [kVK_F12] = Q_KEY_CODE_F12,
247 [kVK_F13] = Q_KEY_CODE_PRINT,
248 [kVK_F14] = Q_KEY_CODE_SCROLL_LOCK,
249 [kVK_F15] = Q_KEY_CODE_PAUSE,
250
708b7255
AO
251 // JIS keyboards only
252 [kVK_JIS_Yen] = Q_KEY_CODE_YEN,
253 [kVK_JIS_Underscore] = Q_KEY_CODE_RO,
254 [kVK_JIS_KeypadComma] = Q_KEY_CODE_KP_COMMA,
255 [kVK_JIS_Eisu] = Q_KEY_CODE_MUHENKAN,
256 [kVK_JIS_Kana] = Q_KEY_CODE_HENKAN,
257
aaac714f
JA
258 /*
259 * The eject and volume keys can't be used here because they are handled at
260 * a lower level than what an Application can see.
261 */
5b0753e0
FB
262};
263
77047bb7 264static int cocoa_keycode_to_qemu(int keycode)
5b0753e0 265{
aaac714f 266 if (ARRAY_SIZE(mac_to_qkeycode_map) <= keycode) {
4313739a 267 error_report("(cocoa) warning unknown keycode 0x%x", keycode);
5b0753e0
FB
268 return 0;
269 }
aaac714f 270 return mac_to_qkeycode_map[keycode];
5b0753e0
FB
271}
272
693a3e01
JA
273/* Displays an alert dialog box with the specified message */
274static void QEMU_Alert(NSString *message)
275{
276 NSAlert *alert;
277 alert = [NSAlert new];
278 [alert setMessageText: message];
279 [alert runModal];
280}
c304f7e2 281
693a3e01
JA
282/* Handles any errors that happen with a device transaction */
283static void handleAnyDeviceErrors(Error * err)
284{
285 if (err) {
286 QEMU_Alert([NSString stringWithCString: error_get_pretty(err)
287 encoding: NSASCIIStringEncoding]);
288 error_free(err);
289 }
290}
c304f7e2 291
5b0753e0
FB
292/*
293 ------------------------------------------------------
c304f7e2 294 QemuCocoaView
5b0753e0
FB
295 ------------------------------------------------------
296*/
c304f7e2 297@interface QemuCocoaView : NSView
5b0753e0 298{
c304f7e2
TS
299 QEMUScreen screen;
300 NSWindow *fullScreenWindow;
301 float cx,cy,cw,ch,cdx,cdy;
5588840f 302 pixman_image_t *pixman_image;
6d73bb64 303 QKbdState *kbd;
49b9bd4d 304 BOOL isMouseGrabbed;
c304f7e2
TS
305 BOOL isFullscreen;
306 BOOL isAbsoluteEnabled;
f61c387e 307 BOOL isMouseDeassociated;
c304f7e2 308}
72a3e316 309- (void) switchSurface:(pixman_image_t *)image;
c304f7e2
TS
310- (void) grabMouse;
311- (void) ungrabMouse;
312- (void) toggleFullScreen:(id)sender;
9c3a418e 313- (void) handleMonitorInput:(NSEvent *)event;
60105d7a
PM
314- (bool) handleEvent:(NSEvent *)event;
315- (bool) handleEventLocked:(NSEvent *)event;
c304f7e2 316- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
f61c387e
PM
317/* The state surrounding mouse grabbing is potentially confusing.
318 * isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
319 * pointing device an absolute-position one?"], but is only updated on
320 * next refresh.
321 * isMouseGrabbed tracks whether GUI events are directed to the guest;
322 * it controls whether special keys like Cmd get sent to the guest,
323 * and whether we capture the mouse when in non-absolute mode.
324 * isMouseDeassociated tracks whether we've told MacOSX to disassociate
325 * the mouse and mouse cursor position by calling
326 * CGAssociateMouseAndMouseCursorPosition(FALSE)
327 * (which basically happens if we grab in non-absolute mode).
328 */
49b9bd4d 329- (BOOL) isMouseGrabbed;
c304f7e2 330- (BOOL) isAbsoluteEnabled;
f61c387e 331- (BOOL) isMouseDeassociated;
c304f7e2
TS
332- (float) cdx;
333- (float) cdy;
334- (QEMUScreen) gscreen;
3b178b71 335- (void) raiseAllKeys;
c304f7e2 336@end
3b46e624 337
7fee199c
AF
338QemuCocoaView *cocoaView;
339
c304f7e2
TS
340@implementation QemuCocoaView
341- (id)initWithFrame:(NSRect)frameRect
342{
343 COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
3b46e624 344
c304f7e2
TS
345 self = [super initWithFrame:frameRect];
346 if (self) {
3b46e624 347
c304f7e2
TS
348 screen.width = frameRect.size.width;
349 screen.height = frameRect.size.height;
6d73bb64 350 kbd = qkbd_state_init(dcl.con);
3b46e624 351
c304f7e2
TS
352 }
353 return self;
354}
3b46e624 355
c304f7e2
TS
356- (void) dealloc
357{
358 COCOA_DEBUG("QemuCocoaView: dealloc\n");
3b46e624 359
c0ff29d1 360 if (pixman_image) {
5588840f
PM
361 pixman_image_unref(pixman_image);
362 }
3b46e624 363
6d73bb64 364 qkbd_state_free(kbd);
c304f7e2
TS
365 [super dealloc];
366}
3b46e624 367
d50f71dc
AF
368- (BOOL) isOpaque
369{
370 return YES;
371}
372
5dd45bee
PM
373- (BOOL) screenContainsPoint:(NSPoint) p
374{
375 return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
376}
377
2044dff8
CZ
378/* Get location of event and convert to virtual screen coordinate */
379- (CGPoint) screenLocationOfEvent:(NSEvent *)ev
380{
381 NSWindow *eventWindow = [ev window];
382 // XXX: Use CGRect and -convertRectFromScreen: to support macOS 10.10
383 CGRect r = CGRectZero;
384 r.origin = [ev locationInWindow];
385 if (!eventWindow) {
386 if (!isFullscreen) {
387 return [[self window] convertRectFromScreen:r].origin;
388 } else {
389 CGPoint locationInSelfWindow = [[self window] convertRectFromScreen:r].origin;
390 CGPoint loc = [self convertPoint:locationInSelfWindow fromView:nil];
391 if (stretch_video) {
392 loc.x /= cdx;
393 loc.y /= cdy;
394 }
395 return loc;
396 }
397 } else if ([[self window] isEqual:eventWindow]) {
398 if (!isFullscreen) {
399 return r.origin;
400 } else {
401 CGPoint loc = [self convertPoint:r.origin fromView:nil];
402 if (stretch_video) {
403 loc.x /= cdx;
404 loc.y /= cdy;
405 }
406 return loc;
407 }
408 } else {
409 return [[self window] convertRectFromScreen:[eventWindow convertRectToScreen:r]].origin;
410 }
411}
412
13aefd30
PM
413- (void) hideCursor
414{
415 if (!cursor_hide) {
416 return;
417 }
418 [NSCursor hide];
419}
420
421- (void) unhideCursor
422{
423 if (!cursor_hide) {
424 return;
425 }
426 [NSCursor unhide];
427}
428
c304f7e2
TS
429- (void) drawRect:(NSRect) rect
430{
431 COCOA_DEBUG("QemuCocoaView: drawRect\n");
432
c304f7e2 433 // get CoreGraphic context
5e24600a 434 CGContextRef viewContextRef = [[NSGraphicsContext currentContext] CGContext];
5e24600a 435
c304f7e2
TS
436 CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
437 CGContextSetShouldAntialias (viewContextRef, NO);
438
439 // draw screen bitmap directly to Core Graphics context
c0ff29d1 440 if (!pixman_image) {
7d270b1c
PM
441 // Draw request before any guest device has set up a framebuffer:
442 // just draw an opaque black rectangle
443 CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
444 CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
445 } else {
c0ff29d1
AO
446 int w = pixman_image_get_width(pixman_image);
447 int h = pixman_image_get_height(pixman_image);
448 int bitsPerPixel = PIXMAN_FORMAT_BPP(pixman_image_get_format(pixman_image));
d9c32b8f 449 int stride = pixman_image_get_stride(pixman_image);
c0ff29d1
AO
450 CGDataProviderRef dataProviderRef = CGDataProviderCreateWithData(
451 NULL,
452 pixman_image_get_data(pixman_image),
d9c32b8f 453 stride * h,
c0ff29d1
AO
454 NULL
455 );
c304f7e2 456 CGImageRef imageRef = CGImageCreate(
c0ff29d1
AO
457 w, //width
458 h, //height
d9c32b8f 459 DIV_ROUND_UP(bitsPerPixel, 8) * 2, //bitsPerComponent
c0ff29d1 460 bitsPerPixel, //bitsPerPixel
d9c32b8f 461 stride, //bytesPerRow
ae57d35c
AO
462 CGColorSpaceCreateWithName(kCGColorSpaceSRGB), //colorspace
463 kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, //bitmapInfo
c304f7e2
TS
464 dataProviderRef, //provider
465 NULL, //decode
466 0, //interpolate
467 kCGRenderingIntentDefault //intent
468 );
b63901d8
PM
469 // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
470 const NSRect *rectList;
b63901d8 471 NSInteger rectCount;
b63901d8
PM
472 int i;
473 CGImageRef clipImageRef;
474 CGRect clipRect;
475
476 [self getRectsBeingDrawn:&rectList count:&rectCount];
477 for (i = 0; i < rectCount; i++) {
478 clipRect.origin.x = rectList[i].origin.x / cdx;
c0ff29d1 479 clipRect.origin.y = (float)h - (rectList[i].origin.y + rectList[i].size.height) / cdy;
b63901d8
PM
480 clipRect.size.width = rectList[i].size.width / cdx;
481 clipRect.size.height = rectList[i].size.height / cdy;
482 clipImageRef = CGImageCreateWithImageInRect(
483 imageRef,
484 clipRect
485 );
486 CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
487 CGImageRelease (clipImageRef);
5b0753e0 488 }
c304f7e2 489 CGImageRelease (imageRef);
c0ff29d1 490 CGDataProviderRelease(dataProviderRef);
c304f7e2 491 }
5b0753e0
FB
492}
493
c304f7e2 494- (void) setContentDimensions
5b0753e0 495{
c304f7e2
TS
496 COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
497
498 if (isFullscreen) {
499 cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
500 cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
5d1b2eef
JA
501
502 /* stretches video, but keeps same aspect ratio */
503 if (stretch_video == true) {
504 /* use smallest stretch value - prevents clipping on sides */
505 if (MIN(cdx, cdy) == cdx) {
506 cdy = cdx;
507 } else {
508 cdx = cdy;
509 }
510 } else { /* No stretching */
511 cdx = cdy = 1;
512 }
c304f7e2
TS
513 cw = screen.width * cdx;
514 ch = screen.height * cdy;
515 cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
516 cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
517 } else {
518 cx = 0;
519 cy = 0;
520 cw = screen.width;
521 ch = screen.height;
522 cdx = 1.0;
523 cdy = 1.0;
524 }
5b0753e0
FB
525}
526
72a3e316 527- (void) switchSurface:(pixman_image_t *)image
5b0753e0 528{
5e00d3ac 529 COCOA_DEBUG("QemuCocoaView: switchSurface\n");
c304f7e2 530
72a3e316
PM
531 int w = pixman_image_get_width(image);
532 int h = pixman_image_get_height(image);
381600da
PM
533 /* cdx == 0 means this is our very first surface, in which case we need
534 * to recalculate the content dimensions even if it happens to be the size
535 * of the initial empty window.
536 */
537 bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
d3345a04
PM
538
539 int oldh = screen.height;
540 if (isResize) {
541 // Resize before we trigger the redraw, or we'll redraw at the wrong size
542 COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
543 screen.width = w;
544 screen.height = h;
545 [self setContentDimensions];
546 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
547 }
8510d91e 548
c304f7e2 549 // update screenBuffer
c0ff29d1 550 if (pixman_image) {
5588840f
PM
551 pixman_image_unref(pixman_image);
552 }
3b46e624 553
5588840f 554 pixman_image = image;
3b46e624 555
c304f7e2
TS
556 // update windows
557 if (isFullscreen) {
558 [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
d3345a04 559 [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:NO animate:NO];
c304f7e2
TS
560 } else {
561 if (qemu_name)
562 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
d3345a04
PM
563 [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:YES animate:NO];
564 }
565
566 if (isResize) {
567 [normalWindow center];
c304f7e2 568 }
5b0753e0
FB
569}
570
c304f7e2
TS
571- (void) toggleFullScreen:(id)sender
572{
573 COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
574
575 if (isFullscreen) { // switch from fullscreen to desktop
576 isFullscreen = FALSE;
577 [self ungrabMouse];
578 [self setContentDimensions];
1e8b6f2b
AO
579 [fullScreenWindow close];
580 [normalWindow setContentView: self];
581 [normalWindow makeKeyAndOrderFront: self];
582 [NSMenu setMenuBarVisible:YES];
c304f7e2
TS
583 } else { // switch from desktop to fullscreen
584 isFullscreen = TRUE;
5d1b2eef 585 [normalWindow orderOut: nil]; /* Hide the window */
c304f7e2
TS
586 [self grabMouse];
587 [self setContentDimensions];
1e8b6f2b
AO
588 [NSMenu setMenuBarVisible:NO];
589 fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
590 styleMask:NSWindowStyleMaskBorderless
591 backing:NSBackingStoreBuffered
592 defer:NO];
593 [fullScreenWindow setAcceptsMouseMovedEvents: YES];
594 [fullScreenWindow setHasShadow:NO];
595 [fullScreenWindow setBackgroundColor: [NSColor blackColor]];
596 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
597 [[fullScreenWindow contentView] addSubview: self];
598 [fullScreenWindow makeKeyAndOrderFront:self];
c304f7e2
TS
599 }
600}
5b0753e0 601
6d73bb64
AO
602- (void) toggleKey: (int)keycode {
603 qkbd_state_key_event(kbd, keycode, !qkbd_state_key_get(kbd, keycode));
af8862b2
IM
604}
605
9c3a418e
JA
606// Does the work of sending input to the monitor
607- (void) handleMonitorInput:(NSEvent *)event
608{
609 int keysym = 0;
610 int control_key = 0;
611
612 // if the control key is down
613 if ([event modifierFlags] & NSEventModifierFlagControl) {
614 control_key = 1;
615 }
616
617 /* translates Macintosh keycodes to QEMU's keysym */
618
619 int without_control_translation[] = {
620 [0 ... 0xff] = 0, // invalid key
621
622 [kVK_UpArrow] = QEMU_KEY_UP,
623 [kVK_DownArrow] = QEMU_KEY_DOWN,
624 [kVK_RightArrow] = QEMU_KEY_RIGHT,
625 [kVK_LeftArrow] = QEMU_KEY_LEFT,
626 [kVK_Home] = QEMU_KEY_HOME,
627 [kVK_End] = QEMU_KEY_END,
628 [kVK_PageUp] = QEMU_KEY_PAGEUP,
629 [kVK_PageDown] = QEMU_KEY_PAGEDOWN,
630 [kVK_ForwardDelete] = QEMU_KEY_DELETE,
631 [kVK_Delete] = QEMU_KEY_BACKSPACE,
632 };
633
634 int with_control_translation[] = {
635 [0 ... 0xff] = 0, // invalid key
636
637 [kVK_UpArrow] = QEMU_KEY_CTRL_UP,
638 [kVK_DownArrow] = QEMU_KEY_CTRL_DOWN,
639 [kVK_RightArrow] = QEMU_KEY_CTRL_RIGHT,
640 [kVK_LeftArrow] = QEMU_KEY_CTRL_LEFT,
641 [kVK_Home] = QEMU_KEY_CTRL_HOME,
642 [kVK_End] = QEMU_KEY_CTRL_END,
643 [kVK_PageUp] = QEMU_KEY_CTRL_PAGEUP,
644 [kVK_PageDown] = QEMU_KEY_CTRL_PAGEDOWN,
645 };
646
647 if (control_key != 0) { /* If the control key is being used */
648 if ([event keyCode] < ARRAY_SIZE(with_control_translation)) {
649 keysym = with_control_translation[[event keyCode]];
650 }
651 } else {
652 if ([event keyCode] < ARRAY_SIZE(without_control_translation)) {
653 keysym = without_control_translation[[event keyCode]];
654 }
655 }
656
657 // if not a key that needs translating
658 if (keysym == 0) {
659 NSString *ks = [event characters];
660 if ([ks length] > 0) {
661 keysym = [ks characterAtIndex:0];
662 }
663 }
664
665 if (keysym) {
666 kbd_put_keysym(keysym);
667 }
668}
669
60105d7a 670- (bool) handleEvent:(NSEvent *)event
3b46e624 671{
dff742ad
HN
672 if(!allow_events) {
673 /*
674 * Just let OSX have all events that arrive before
675 * applicationDidFinishLaunching.
676 * This avoids a deadlock on the iothread lock, which cocoa_display_init()
677 * will not drop until after the app_started_sem is posted. (In theory
678 * there should not be any such events, but OSX Catalina now emits some.)
679 */
680 return false;
681 }
60105d7a
PM
682 return bool_with_iothread_lock(^{
683 return [self handleEventLocked:event];
31819e95
PM
684 });
685}
c304f7e2 686
60105d7a 687- (bool) handleEventLocked:(NSEvent *)event
31819e95 688{
60105d7a 689 /* Return true if we handled the event, false if it should be given to OSX */
31819e95 690 COCOA_DEBUG("QemuCocoaView: handleEvent\n");
c304f7e2 691 int buttons = 0;
af8862b2 692 int keycode = 0;
21bae11a 693 bool mouse_event = false;
0c6c4395 694 static bool switched_to_fullscreen = false;
2044dff8
CZ
695 // Location of event in virtual screen coordinates
696 NSPoint p = [self screenLocationOfEvent:event];
6d73bb64
AO
697 NSUInteger modifiers = [event modifierFlags];
698
699 // emulate caps lock keydown and keyup
700 if (!!(modifiers & NSEventModifierFlagCapsLock) !=
701 qkbd_state_modifier_get(kbd, QKBD_MOD_CAPSLOCK)) {
702 qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, true);
703 qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, false);
704 }
705
706 if (!(modifiers & NSEventModifierFlagShift)) {
707 qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT, false);
708 qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT_R, false);
709 }
710 if (!(modifiers & NSEventModifierFlagControl)) {
711 qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL, false);
712 qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL_R, false);
713 }
714 if (!(modifiers & NSEventModifierFlagOption)) {
715 qkbd_state_key_event(kbd, Q_KEY_CODE_ALT, false);
716 qkbd_state_key_event(kbd, Q_KEY_CODE_ALT_R, false);
717 }
718 if (!(modifiers & NSEventModifierFlagCommand)) {
719 qkbd_state_key_event(kbd, Q_KEY_CODE_META_L, false);
720 qkbd_state_key_event(kbd, Q_KEY_CODE_META_R, false);
721 }
c304f7e2
TS
722
723 switch ([event type]) {
4ba967ad 724 case NSEventTypeFlagsChanged:
6d73bb64
AO
725 switch ([event keyCode]) {
726 case kVK_Shift:
727 if (!!(modifiers & NSEventModifierFlagShift)) {
728 [self toggleKey:Q_KEY_CODE_SHIFT];
729 }
730 break;
af8862b2 731
6d73bb64
AO
732 case kVK_RightShift:
733 if (!!(modifiers & NSEventModifierFlagShift)) {
734 [self toggleKey:Q_KEY_CODE_SHIFT_R];
af8862b2 735 }
6d73bb64
AO
736 break;
737
738 case kVK_Control:
739 if (!!(modifiers & NSEventModifierFlagControl)) {
740 [self toggleKey:Q_KEY_CODE_CTRL];
af8862b2 741 }
6d73bb64
AO
742 break;
743
744 case kVK_RightControl:
745 if (!!(modifiers & NSEventModifierFlagControl)) {
746 [self toggleKey:Q_KEY_CODE_CTRL_R];
af8862b2 747 }
6d73bb64
AO
748 break;
749
750 case kVK_Option:
751 if (!!(modifiers & NSEventModifierFlagOption)) {
752 [self toggleKey:Q_KEY_CODE_ALT];
af8862b2 753 }
6d73bb64
AO
754 break;
755
756 case kVK_RightOption:
757 if (!!(modifiers & NSEventModifierFlagOption)) {
758 [self toggleKey:Q_KEY_CODE_ALT_R];
af8862b2 759 }
6d73bb64 760 break;
8895919a 761
6d73bb64
AO
762 /* Don't pass command key changes to guest unless mouse is grabbed */
763 case kVK_Command:
764 if (isMouseGrabbed &&
765 !!(modifiers & NSEventModifierFlagCommand)) {
766 [self toggleKey:Q_KEY_CODE_META_L];
767 }
768 break;
8895919a 769
6d73bb64
AO
770 case kVK_RightCommand:
771 if (isMouseGrabbed &&
772 !!(modifiers & NSEventModifierFlagCommand)) {
773 [self toggleKey:Q_KEY_CODE_META_R];
0c6c4395 774 }
6d73bb64 775 break;
c304f7e2 776 }
c304f7e2 777 break;
4ba967ad 778 case NSEventTypeKeyDown:
8895919a 779 keycode = cocoa_keycode_to_qemu([event keyCode]);
3b46e624 780
8895919a 781 // forward command key combos to the host UI unless the mouse is grabbed
4ba967ad 782 if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
0c6c4395
JA
783 /*
784 * Prevent the command key from being stuck down in the guest
785 * when using Command-F to switch to full screen mode.
786 */
787 if (keycode == Q_KEY_CODE_F) {
788 switched_to_fullscreen = true;
789 }
60105d7a 790 return false;
c304f7e2 791 }
3b46e624 792
c304f7e2 793 // default
c304f7e2 794
5929e36c 795 // handle control + alt Key Combos (ctrl+alt+[1..9,g] is reserved for QEMU)
4ba967ad 796 if (([event modifierFlags] & NSEventModifierFlagControl) && ([event modifierFlags] & NSEventModifierFlagOption)) {
5929e36c
JA
797 NSString *keychar = [event charactersIgnoringModifiers];
798 if ([keychar length] == 1) {
799 char key = [keychar characterAtIndex:0];
800 switch (key) {
801
802 // enable graphic console
803 case '1' ... '9':
804 console_select(key - '0' - 1); /* ascii math */
60105d7a 805 return true;
5929e36c
JA
806
807 // release the mouse grab
808 case 'g':
809 [self ungrabMouse];
60105d7a 810 return true;
5929e36c 811 }
c304f7e2 812 }
ef2088f9 813 }
c304f7e2 814
ef2088f9 815 if (qemu_console_is_graphic(NULL)) {
6d73bb64 816 qkbd_state_key_event(kbd, keycode, true);
c304f7e2 817 } else {
9c3a418e 818 [self handleMonitorInput: event];
c304f7e2
TS
819 }
820 break;
4ba967ad 821 case NSEventTypeKeyUp:
c304f7e2 822 keycode = cocoa_keycode_to_qemu([event keyCode]);
8895919a
PM
823
824 // don't pass the guest a spurious key-up if we treated this
825 // command-key combo as a host UI action
4ba967ad 826 if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
60105d7a 827 return true;
8895919a
PM
828 }
829
68c0aa6e 830 if (qemu_console_is_graphic(NULL)) {
6d73bb64 831 qkbd_state_key_event(kbd, keycode, false);
c304f7e2
TS
832 }
833 break;
4ba967ad 834 case NSEventTypeMouseMoved:
c304f7e2 835 if (isAbsoluteEnabled) {
2044dff8
CZ
836 // Cursor re-entered into a window might generate events bound to screen coordinates
837 // and `nil` window property, and in full screen mode, current window might not be
838 // key window, where event location alone should suffice.
839 if (![self screenContainsPoint:p] || !([[self window] isKeyWindow] || isFullscreen)) {
f61c387e
PM
840 if (isMouseGrabbed) {
841 [self ungrabMouse];
c304f7e2
TS
842 }
843 } else {
f61c387e
PM
844 if (!isMouseGrabbed) {
845 [self grabMouse];
c304f7e2
TS
846 }
847 }
5b0753e0 848 }
21bae11a 849 mouse_event = true;
c304f7e2 850 break;
4ba967ad 851 case NSEventTypeLeftMouseDown:
4295f836 852 buttons |= MOUSE_EVENT_LBUTTON;
21bae11a 853 mouse_event = true;
c304f7e2 854 break;
4ba967ad 855 case NSEventTypeRightMouseDown:
c304f7e2 856 buttons |= MOUSE_EVENT_RBUTTON;
21bae11a 857 mouse_event = true;
c304f7e2 858 break;
4ba967ad 859 case NSEventTypeOtherMouseDown:
c304f7e2 860 buttons |= MOUSE_EVENT_MBUTTON;
21bae11a 861 mouse_event = true;
c304f7e2 862 break;
4ba967ad 863 case NSEventTypeLeftMouseDragged:
4295f836 864 buttons |= MOUSE_EVENT_LBUTTON;
21bae11a 865 mouse_event = true;
c304f7e2 866 break;
4ba967ad 867 case NSEventTypeRightMouseDragged:
c304f7e2 868 buttons |= MOUSE_EVENT_RBUTTON;
21bae11a 869 mouse_event = true;
c304f7e2 870 break;
4ba967ad 871 case NSEventTypeOtherMouseDragged:
c304f7e2 872 buttons |= MOUSE_EVENT_MBUTTON;
21bae11a 873 mouse_event = true;
c304f7e2 874 break;
4ba967ad 875 case NSEventTypeLeftMouseUp:
f61c387e
PM
876 mouse_event = true;
877 if (!isMouseGrabbed && [self screenContainsPoint:p]) {
8e23e34d
CZ
878 /*
879 * In fullscreen mode, the window of cocoaView may not be the
880 * key window, therefore the position relative to the virtual
881 * screen alone will be sufficient.
882 */
883 if(isFullscreen || [[self window] isKeyWindow]) {
9e8204b1
JA
884 [self grabMouse];
885 }
c304f7e2
TS
886 }
887 break;
4ba967ad 888 case NSEventTypeRightMouseUp:
21bae11a 889 mouse_event = true;
c304f7e2 890 break;
4ba967ad 891 case NSEventTypeOtherMouseUp:
21bae11a 892 mouse_event = true;
c304f7e2 893 break;
4ba967ad 894 case NSEventTypeScrollWheel:
ae7313e7
JA
895 /*
896 * Send wheel events to the guest regardless of window focus.
897 * This is in-line with standard Mac OS X UI behaviour.
898 */
899
dc3c89d6
JA
900 /*
901 * When deltaY is zero, it means that this scrolling event was
902 * either horizontal, or so fine that it only appears in
903 * scrollingDeltaY. So we drop the event.
904 */
905 if ([event deltaY] != 0) {
ae7313e7 906 /* Determine if this is a scroll up or scroll down event */
dc3c89d6
JA
907 buttons = ([event deltaY] > 0) ?
908 INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
cc7859c3 909 qemu_input_queue_btn(dcl.con, buttons, true);
dc3c89d6 910 qemu_input_event_sync();
cc7859c3 911 qemu_input_queue_btn(dcl.con, buttons, false);
dc3c89d6
JA
912 qemu_input_event_sync();
913 }
ae7313e7
JA
914 /*
915 * Since deltaY also reports scroll wheel events we prevent mouse
916 * movement code from executing.
917 */
918 mouse_event = false;
c304f7e2
TS
919 break;
920 default:
60105d7a 921 return false;
5b0753e0 922 }
21bae11a
GH
923
924 if (mouse_event) {
8d3a5d9b
PM
925 /* Don't send button events to the guest unless we've got a
926 * mouse grab or window focus. If we have neither then this event
927 * is the user clicking on the background window to activate and
928 * bring us to the front, which will be done by the sendEvent
929 * call below. We definitely don't want to pass that click through
930 * to the guest.
931 */
932 if ((isMouseGrabbed || [[self window] isKeyWindow]) &&
933 (last_buttons != buttons)) {
7fb1cf16 934 static uint32_t bmap[INPUT_BUTTON__MAX] = {
21bae11a
GH
935 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
936 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
ae7313e7 937 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON
21bae11a 938 };
cc7859c3 939 qemu_input_update_buttons(dcl.con, bmap, last_buttons, buttons);
21bae11a
GH
940 last_buttons = buttons;
941 }
f61c387e
PM
942 if (isMouseGrabbed) {
943 if (isAbsoluteEnabled) {
944 /* Note that the origin for Cocoa mouse coords is bottom left, not top left.
945 * The check on screenContainsPoint is to avoid sending out of range values for
946 * clicks in the titlebar.
947 */
948 if ([self screenContainsPoint:p]) {
cc7859c3
AO
949 qemu_input_queue_abs(dcl.con, INPUT_AXIS_X, p.x, 0, screen.width);
950 qemu_input_queue_abs(dcl.con, INPUT_AXIS_Y, screen.height - p.y, 0, screen.height);
f61c387e
PM
951 }
952 } else {
cc7859c3
AO
953 qemu_input_queue_rel(dcl.con, INPUT_AXIS_X, (int)[event deltaX]);
954 qemu_input_queue_rel(dcl.con, INPUT_AXIS_Y, (int)[event deltaY]);
f61c387e 955 }
21bae11a 956 } else {
60105d7a 957 return false;
21bae11a
GH
958 }
959 qemu_input_event_sync();
960 }
60105d7a 961 return true;
5b0753e0
FB
962}
963
c304f7e2 964- (void) grabMouse
5b0753e0 965{
c304f7e2 966 COCOA_DEBUG("QemuCocoaView: grabMouse\n");
3b46e624 967
c304f7e2
TS
968 if (!isFullscreen) {
969 if (qemu_name)
5929e36c 970 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt + g to release Mouse)", qemu_name]];
c304f7e2 971 else
5929e36c 972 [normalWindow setTitle:@"QEMU - (Press ctrl + alt + g to release Mouse)"];
c304f7e2 973 }
13aefd30 974 [self hideCursor];
f61c387e
PM
975 if (!isAbsoluteEnabled) {
976 isMouseDeassociated = TRUE;
977 CGAssociateMouseAndMouseCursorPosition(FALSE);
978 }
49b9bd4d 979 isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
5b0753e0 980}
3b46e624 981
c304f7e2
TS
982- (void) ungrabMouse
983{
984 COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
3b46e624 985
c304f7e2
TS
986 if (!isFullscreen) {
987 if (qemu_name)
988 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
989 else
990 [normalWindow setTitle:@"QEMU"];
991 }
13aefd30 992 [self unhideCursor];
f61c387e
PM
993 if (isMouseDeassociated) {
994 CGAssociateMouseAndMouseCursorPosition(TRUE);
995 isMouseDeassociated = FALSE;
996 }
49b9bd4d 997 isMouseGrabbed = FALSE;
5b0753e0
FB
998}
999
c304f7e2 1000- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {isAbsoluteEnabled = tIsAbsoluteEnabled;}
49b9bd4d 1001- (BOOL) isMouseGrabbed {return isMouseGrabbed;}
c304f7e2 1002- (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
f61c387e 1003- (BOOL) isMouseDeassociated {return isMouseDeassociated;}
c304f7e2
TS
1004- (float) cdx {return cdx;}
1005- (float) cdy {return cdy;}
1006- (QEMUScreen) gscreen {return screen;}
3b178b71
JA
1007
1008/*
1009 * Makes the target think all down keys are being released.
1010 * This prevents a stuck key problem, since we will not see
1011 * key up events for those keys after we have lost focus.
1012 */
1013- (void) raiseAllKeys
1014{
31819e95 1015 with_iothread_lock(^{
6d73bb64 1016 qkbd_state_lift_all_keys(kbd);
31819e95 1017 });
3b178b71 1018}
5b0753e0
FB
1019@end
1020
1021
c304f7e2 1022
5b0753e0
FB
1023/*
1024 ------------------------------------------------------
c304f7e2 1025 QemuCocoaAppController
5b0753e0
FB
1026 ------------------------------------------------------
1027*/
c304f7e2 1028@interface QemuCocoaAppController : NSObject
d9bc14f6 1029 <NSWindowDelegate, NSApplicationDelegate>
5b0753e0
FB
1030{
1031}
5d1b2eef 1032- (void)doToggleFullScreen:(id)sender;
c304f7e2
TS
1033- (void)toggleFullScreen:(id)sender;
1034- (void)showQEMUDoc:(id)sender;
5d1b2eef 1035- (void)zoomToFit:(id) sender;
b4c6a112 1036- (void)displayConsole:(id)sender;
8524f1c7
JA
1037- (void)pauseQEMU:(id)sender;
1038- (void)resumeQEMU:(id)sender;
1039- (void)displayPause;
1040- (void)removePause;
27074614
JA
1041- (void)restartQEMU:(id)sender;
1042- (void)powerDownQEMU:(id)sender;
693a3e01
JA
1043- (void)ejectDeviceMedia:(id)sender;
1044- (void)changeDeviceMedia:(id)sender;
d9bc14f6 1045- (BOOL)verifyQuit;
f4747900 1046- (void)openDocumentation:(NSString *)filename;
9e8204b1
JA
1047- (IBAction) do_about_menu_item: (id) sender;
1048- (void)make_about_window;
e47ec1a9 1049- (void)adjustSpeed:(id)sender;
5b0753e0
FB
1050@end
1051
c304f7e2
TS
1052@implementation QemuCocoaAppController
1053- (id) init
5b0753e0 1054{
c304f7e2 1055 COCOA_DEBUG("QemuCocoaAppController: init\n");
5a246934 1056
c304f7e2
TS
1057 self = [super init];
1058 if (self) {
5a246934 1059
c304f7e2
TS
1060 // create a view and add it to the window
1061 cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
1062 if(!cocoaView) {
4313739a 1063 error_report("(cocoa) can't create a view");
c304f7e2
TS
1064 exit(1);
1065 }
3b46e624 1066
c304f7e2
TS
1067 // create a window
1068 normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
4ba967ad 1069 styleMask:NSWindowStyleMaskTitled|NSWindowStyleMaskMiniaturizable|NSWindowStyleMaskClosable
c304f7e2
TS
1070 backing:NSBackingStoreBuffered defer:NO];
1071 if(!normalWindow) {
4313739a 1072 error_report("(cocoa) can't create window");
c304f7e2
TS
1073 exit(1);
1074 }
1075 [normalWindow setAcceptsMouseMovedEvents:YES];
a1dbc05a 1076 [normalWindow setTitle:@"QEMU"];
c304f7e2
TS
1077 [normalWindow setContentView:cocoaView];
1078 [normalWindow makeKeyAndOrderFront:self];
49060c29 1079 [normalWindow center];
d9bc14f6 1080 [normalWindow setDelegate: self];
5d1b2eef 1081 stretch_video = false;
8524f1c7
JA
1082
1083 /* Used for displaying pause on the screen */
1084 pauseLabel = [NSTextField new];
1085 [pauseLabel setBezeled:YES];
1086 [pauseLabel setDrawsBackground:YES];
1087 [pauseLabel setBackgroundColor: [NSColor whiteColor]];
1088 [pauseLabel setEditable:NO];
1089 [pauseLabel setSelectable:NO];
1090 [pauseLabel setStringValue: @"Paused"];
1091 [pauseLabel setFont: [NSFont fontWithName: @"Helvetica" size: 90]];
1092 [pauseLabel setTextColor: [NSColor blackColor]];
1093 [pauseLabel sizeToFit];
693a3e01
JA
1094
1095 // set the supported image file types that can be opened
1096 supportedImageFileTypes = [NSArray arrayWithObjects: @"img", @"iso", @"dmg",
9d227f19 1097 @"qcow", @"qcow2", @"cloop", @"vmdk", @"cdr",
5f26fcfb 1098 @"toast", nil];
9e8204b1 1099 [self make_about_window];
c304f7e2
TS
1100 }
1101 return self;
1102}
3b46e624 1103
c304f7e2
TS
1104- (void) dealloc
1105{
1106 COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
1107
1108 if (cocoaView)
1109 [cocoaView release];
1110 [super dealloc];
1111}
3b46e624 1112
c304f7e2
TS
1113- (void)applicationDidFinishLaunching: (NSNotification *) note
1114{
1115 COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
dff742ad 1116 allow_events = true;
5588840f
PM
1117 /* Tell cocoa_display_init to proceed */
1118 qemu_sem_post(&app_started_sem);
5b0753e0
FB
1119}
1120
1121- (void)applicationWillTerminate:(NSNotification *)aNotification
1122{
c304f7e2
TS
1123 COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
1124
cf83f140 1125 qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI);
5b0753e0
FB
1126 exit(0);
1127}
1128
41ea49b3
AF
1129- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
1130{
1131 return YES;
1132}
1133
d9bc14f6
JA
1134- (NSApplicationTerminateReply)applicationShouldTerminate:
1135 (NSApplication *)sender
1136{
1137 COCOA_DEBUG("QemuCocoaAppController: applicationShouldTerminate\n");
1138 return [self verifyQuit];
1139}
1140
1141/* Called when the user clicks on a window's close button */
1142- (BOOL)windowShouldClose:(id)sender
1143{
1144 COCOA_DEBUG("QemuCocoaAppController: windowShouldClose\n");
1145 [NSApp terminate: sender];
1146 /* If the user allows the application to quit then the call to
1147 * NSApp terminate will never return. If we get here then the user
1148 * cancelled the quit, so we should return NO to not permit the
1149 * closing of this window.
1150 */
1151 return NO;
1152}
1153
3b178b71
JA
1154/* Called when QEMU goes into the background */
1155- (void) applicationWillResignActive: (NSNotification *)aNotification
1156{
1157 COCOA_DEBUG("QemuCocoaAppController: applicationWillResignActive\n");
1158 [cocoaView raiseAllKeys];
1159}
1160
5d1b2eef
JA
1161/* We abstract the method called by the Enter Fullscreen menu item
1162 * because Mac OS 10.7 and higher disables it. This is because of the
1163 * menu item's old selector's name toggleFullScreen:
1164 */
1165- (void) doToggleFullScreen:(id)sender
1166{
1167 [self toggleFullScreen:(id)sender];
1168}
1169
c304f7e2
TS
1170- (void)toggleFullScreen:(id)sender
1171{
1172 COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
1173
1174 [cocoaView toggleFullScreen:sender];
1175}
5b0753e0 1176
f4747900
JA
1177/* Tries to find then open the specified filename */
1178- (void) openDocumentation: (NSString *) filename
1179{
1180 /* Where to look for local files */
8d6fda8c 1181 NSString *path_array[] = {@"../share/doc/qemu/", @"../doc/qemu/", @"docs/"};
f4747900 1182 NSString *full_file_path;
1ff5a063 1183 NSURL *full_file_url;
f4747900
JA
1184
1185 /* iterate thru the possible paths until the file is found */
1186 int index;
1187 for (index = 0; index < ARRAY_SIZE(path_array); index++) {
1188 full_file_path = [[NSBundle mainBundle] executablePath];
1189 full_file_path = [full_file_path stringByDeletingLastPathComponent];
1190 full_file_path = [NSString stringWithFormat: @"%@/%@%@", full_file_path,
1191 path_array[index], filename];
1ff5a063
RB
1192 full_file_url = [NSURL fileURLWithPath: full_file_path
1193 isDirectory: false];
1194 if ([[NSWorkspace sharedWorkspace] openURL: full_file_url] == YES) {
f4747900
JA
1195 return;
1196 }
1197 }
1198
1199 /* If none of the paths opened a file */
1200 NSBeep();
1201 QEMU_Alert(@"Failed to open file");
1202}
1203
c304f7e2 1204- (void)showQEMUDoc:(id)sender
5b0753e0 1205{
c304f7e2
TS
1206 COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
1207
1879f241 1208 [self openDocumentation: @"index.html"];
c304f7e2
TS
1209}
1210
5d1b2eef
JA
1211/* Stretches video to fit host monitor size */
1212- (void)zoomToFit:(id) sender
1213{
1214 stretch_video = !stretch_video;
1215 if (stretch_video == true) {
5e24600a 1216 [sender setState: NSControlStateValueOn];
5d1b2eef 1217 } else {
5e24600a 1218 [sender setState: NSControlStateValueOff];
5d1b2eef
JA
1219 }
1220}
5b0753e0 1221
b4c6a112
JA
1222/* Displays the console on the screen */
1223- (void)displayConsole:(id)sender
1224{
1225 console_select([sender tag]);
1226}
8524f1c7
JA
1227
1228/* Pause the guest */
1229- (void)pauseQEMU:(id)sender
1230{
31819e95
PM
1231 with_iothread_lock(^{
1232 qmp_stop(NULL);
1233 });
8524f1c7
JA
1234 [sender setEnabled: NO];
1235 [[[sender menu] itemWithTitle: @"Resume"] setEnabled: YES];
1236 [self displayPause];
1237}
1238
1239/* Resume running the guest operating system */
1240- (void)resumeQEMU:(id) sender
1241{
31819e95
PM
1242 with_iothread_lock(^{
1243 qmp_cont(NULL);
1244 });
8524f1c7
JA
1245 [sender setEnabled: NO];
1246 [[[sender menu] itemWithTitle: @"Pause"] setEnabled: YES];
1247 [self removePause];
1248}
1249
1250/* Displays the word pause on the screen */
1251- (void)displayPause
1252{
1253 /* Coordinates have to be calculated each time because the window can change its size */
1254 int xCoord, yCoord, width, height;
1255 xCoord = ([normalWindow frame].size.width - [pauseLabel frame].size.width)/2;
1256 yCoord = [normalWindow frame].size.height - [pauseLabel frame].size.height - ([pauseLabel frame].size.height * .5);
1257 width = [pauseLabel frame].size.width;
1258 height = [pauseLabel frame].size.height;
1259 [pauseLabel setFrame: NSMakeRect(xCoord, yCoord, width, height)];
1260 [cocoaView addSubview: pauseLabel];
1261}
1262
1263/* Removes the word pause from the screen */
1264- (void)removePause
1265{
1266 [pauseLabel removeFromSuperview];
1267}
1268
27074614
JA
1269/* Restarts QEMU */
1270- (void)restartQEMU:(id)sender
1271{
31819e95
PM
1272 with_iothread_lock(^{
1273 qmp_system_reset(NULL);
1274 });
27074614
JA
1275}
1276
1277/* Powers down QEMU */
1278- (void)powerDownQEMU:(id)sender
1279{
31819e95
PM
1280 with_iothread_lock(^{
1281 qmp_system_powerdown(NULL);
1282 });
27074614
JA
1283}
1284
693a3e01
JA
1285/* Ejects the media.
1286 * Uses sender's tag to figure out the device to eject.
1287 */
1288- (void)ejectDeviceMedia:(id)sender
1289{
1290 NSString * drive;
1291 drive = [sender representedObject];
1292 if(drive == nil) {
1293 NSBeep();
1294 QEMU_Alert(@"Failed to find drive to eject!");
1295 return;
1296 }
1297
31819e95
PM
1298 __block Error *err = NULL;
1299 with_iothread_lock(^{
1300 qmp_eject(true, [drive cStringUsingEncoding: NSASCIIStringEncoding],
1301 false, NULL, false, false, &err);
1302 });
693a3e01
JA
1303 handleAnyDeviceErrors(err);
1304}
1305
1306/* Displays a dialog box asking the user to select an image file to load.
1307 * Uses sender's represented object value to figure out which drive to use.
1308 */
1309- (void)changeDeviceMedia:(id)sender
1310{
1311 /* Find the drive name */
1312 NSString * drive;
1313 drive = [sender representedObject];
1314 if(drive == nil) {
1315 NSBeep();
1316 QEMU_Alert(@"Could not find drive!");
1317 return;
1318 }
1319
1320 /* Display the file open dialog */
1321 NSOpenPanel * openPanel;
1322 openPanel = [NSOpenPanel openPanel];
1323 [openPanel setCanChooseFiles: YES];
1324 [openPanel setAllowsMultipleSelection: NO];
1325 [openPanel setAllowedFileTypes: supportedImageFileTypes];
b5725385 1326 if([openPanel runModal] == NSModalResponseOK) {
693a3e01
JA
1327 NSString * file = [[[openPanel URLs] objectAtIndex: 0] path];
1328 if(file == nil) {
1329 NSBeep();
1330 QEMU_Alert(@"Failed to convert URL to file path!");
1331 return;
1332 }
1333
31819e95
PM
1334 __block Error *err = NULL;
1335 with_iothread_lock(^{
1336 qmp_blockdev_change_medium(true,
1337 [drive cStringUsingEncoding:
1338 NSASCIIStringEncoding],
1339 false, NULL,
1340 [file cStringUsingEncoding:
1341 NSASCIIStringEncoding],
1342 true, "raw",
1343 false, 0,
1344 &err);
1345 });
693a3e01
JA
1346 handleAnyDeviceErrors(err);
1347 }
1348}
1349
d9bc14f6
JA
1350/* Verifies if the user really wants to quit */
1351- (BOOL)verifyQuit
1352{
1353 NSAlert *alert = [NSAlert new];
1354 [alert autorelease];
1355 [alert setMessageText: @"Are you sure you want to quit QEMU?"];
1356 [alert addButtonWithTitle: @"Cancel"];
1357 [alert addButtonWithTitle: @"Quit"];
1358 if([alert runModal] == NSAlertSecondButtonReturn) {
1359 return YES;
1360 } else {
1361 return NO;
1362 }
1363}
1364
9e8204b1
JA
1365/* The action method for the About menu item */
1366- (IBAction) do_about_menu_item: (id) sender
1367{
1368 [about_window makeKeyAndOrderFront: nil];
1369}
1370
1371/* Create and display the about dialog */
1372- (void)make_about_window
1373{
1374 /* Make the window */
1375 int x = 0, y = 0, about_width = 400, about_height = 200;
1376 NSRect window_rect = NSMakeRect(x, y, about_width, about_height);
1377 about_window = [[NSWindow alloc] initWithContentRect:window_rect
4ba967ad
BS
1378 styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable |
1379 NSWindowStyleMaskMiniaturizable
9e8204b1
JA
1380 backing:NSBackingStoreBuffered
1381 defer:NO];
1382 [about_window setTitle: @"About"];
1383 [about_window setReleasedWhenClosed: NO];
1384 [about_window center];
1385 NSView *superView = [about_window contentView];
1386
1387 /* Create the dimensions of the picture */
1388 int picture_width = 80, picture_height = 80;
1389 x = (about_width - picture_width)/2;
1390 y = about_height - picture_height - 10;
1391 NSRect picture_rect = NSMakeRect(x, y, picture_width, picture_height);
1392
9e8204b1
JA
1393 /* Make the picture of QEMU */
1394 NSImageView *picture_view = [[NSImageView alloc] initWithFrame:
1395 picture_rect];
e31746ec
AO
1396 char *qemu_image_path_c = get_relocated_path(CONFIG_QEMU_ICONDIR "/hicolor/512x512/apps/qemu.png");
1397 NSString *qemu_image_path = [NSString stringWithUTF8String:qemu_image_path_c];
1398 g_free(qemu_image_path_c);
1399 NSImage *qemu_image = [[NSImage alloc] initWithContentsOfFile:qemu_image_path];
9e8204b1
JA
1400 [picture_view setImage: qemu_image];
1401 [picture_view setImageScaling: NSImageScaleProportionallyUpOrDown];
1402 [superView addSubview: picture_view];
1403
1404 /* Make the name label */
a0f973f9
AO
1405 NSBundle *bundle = [NSBundle mainBundle];
1406 if (bundle) {
1407 x = 0;
1408 y = y - 25;
1409 int name_width = about_width, name_height = 20;
1410 NSRect name_rect = NSMakeRect(x, y, name_width, name_height);
1411 NSTextField *name_label = [[NSTextField alloc] initWithFrame: name_rect];
1412 [name_label setEditable: NO];
1413 [name_label setBezeled: NO];
1414 [name_label setDrawsBackground: NO];
1415 [name_label setAlignment: NSTextAlignmentCenter];
1416 NSString *qemu_name = [[bundle executablePath] lastPathComponent];
1417 [name_label setStringValue: qemu_name];
1418 [superView addSubview: name_label];
1419 }
9e8204b1
JA
1420
1421 /* Set the version label's attributes */
1422 x = 0;
1423 y = 50;
1424 int version_width = about_width, version_height = 20;
1425 NSRect version_rect = NSMakeRect(x, y, version_width, version_height);
1426 NSTextField *version_label = [[NSTextField alloc] initWithFrame:
1427 version_rect];
1428 [version_label setEditable: NO];
1429 [version_label setBezeled: NO];
4ba967ad 1430 [version_label setAlignment: NSTextAlignmentCenter];
9e8204b1
JA
1431 [version_label setDrawsBackground: NO];
1432
1433 /* Create the version string*/
1434 NSString *version_string;
1435 version_string = [[NSString alloc] initWithFormat:
7e563bfb 1436 @"QEMU emulator version %s", QEMU_FULL_VERSION];
9e8204b1
JA
1437 [version_label setStringValue: version_string];
1438 [superView addSubview: version_label];
1439
1440 /* Make copyright label */
1441 x = 0;
1442 y = 35;
1443 int copyright_width = about_width, copyright_height = 20;
1444 NSRect copyright_rect = NSMakeRect(x, y, copyright_width, copyright_height);
1445 NSTextField *copyright_label = [[NSTextField alloc] initWithFrame:
1446 copyright_rect];
1447 [copyright_label setEditable: NO];
1448 [copyright_label setBezeled: NO];
1449 [copyright_label setDrawsBackground: NO];
4ba967ad 1450 [copyright_label setAlignment: NSTextAlignmentCenter];
9e8204b1
JA
1451 [copyright_label setStringValue: [NSString stringWithFormat: @"%s",
1452 QEMU_COPYRIGHT]];
1453 [superView addSubview: copyright_label];
1454}
1455
e47ec1a9
JA
1456/* Used by the Speed menu items */
1457- (void)adjustSpeed:(id)sender
1458{
1459 int throttle_pct; /* throttle percentage */
1460 NSMenu *menu;
1461
1462 menu = [sender menu];
1463 if (menu != nil)
1464 {
1465 /* Unselect the currently selected item */
1466 for (NSMenuItem *item in [menu itemArray]) {
5e24600a
BS
1467 if (item.state == NSControlStateValueOn) {
1468 [item setState: NSControlStateValueOff];
e47ec1a9
JA
1469 break;
1470 }
1471 }
1472 }
1473
1474 // check the menu item
5e24600a 1475 [sender setState: NSControlStateValueOn];
e47ec1a9
JA
1476
1477 // get the throttle percentage
1478 throttle_pct = [sender tag];
1479
31819e95
PM
1480 with_iothread_lock(^{
1481 cpu_throttle_set(throttle_pct);
1482 });
e47ec1a9
JA
1483 COCOA_DEBUG("cpu throttling at %d%c\n", cpu_throttle_get_percentage(), '%');
1484}
1485
b4c6a112 1486@end
5b0753e0 1487
61a2ed44
PM
1488@interface QemuApplication : NSApplication
1489@end
1490
1491@implementation QemuApplication
1492- (void)sendEvent:(NSEvent *)event
1493{
1494 COCOA_DEBUG("QemuApplication: sendEvent\n");
5588840f
PM
1495 if (![cocoaView handleEvent:event]) {
1496 [super sendEvent: event];
1497 }
61a2ed44
PM
1498}
1499@end
1500
c6fd6c70
PM
1501static void create_initial_menus(void)
1502{
c304f7e2
TS
1503 // Add menus
1504 NSMenu *menu;
1505 NSMenuItem *menuItem;
5b0753e0 1506
c304f7e2 1507 [NSApp setMainMenu:[[NSMenu alloc] init]];
5b0753e0 1508
c304f7e2
TS
1509 // Application menu
1510 menu = [[NSMenu alloc] initWithTitle:@""];
9e8204b1 1511 [menu addItemWithTitle:@"About QEMU" action:@selector(do_about_menu_item:) keyEquivalent:@""]; // About QEMU
c304f7e2
TS
1512 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1513 [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
1514 menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
4ba967ad 1515 [menuItem setKeyEquivalentModifierMask:(NSEventModifierFlagOption|NSEventModifierFlagCommand)];
c304f7e2
TS
1516 [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
1517 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1518 [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
1519 menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
1520 [menuItem setSubmenu:menu];
1521 [[NSApp mainMenu] addItem:menuItem];
1522 [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
3b46e624 1523
8524f1c7
JA
1524 // Machine menu
1525 menu = [[NSMenu alloc] initWithTitle: @"Machine"];
1526 [menu setAutoenablesItems: NO];
1527 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Pause" action: @selector(pauseQEMU:) keyEquivalent: @""] autorelease]];
1528 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Resume" action: @selector(resumeQEMU:) keyEquivalent: @""] autorelease];
1529 [menu addItem: menuItem];
1530 [menuItem setEnabled: NO];
27074614
JA
1531 [menu addItem: [NSMenuItem separatorItem]];
1532 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Reset" action: @selector(restartQEMU:) keyEquivalent: @""] autorelease]];
1533 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Power Down" action: @selector(powerDownQEMU:) keyEquivalent: @""] autorelease]];
8524f1c7
JA
1534 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Machine" action:nil keyEquivalent:@""] autorelease];
1535 [menuItem setSubmenu:menu];
1536 [[NSApp mainMenu] addItem:menuItem];
1537
c304f7e2
TS
1538 // View menu
1539 menu = [[NSMenu alloc] initWithTitle:@"View"];
5d1b2eef
JA
1540 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
1541 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
c304f7e2
TS
1542 menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
1543 [menuItem setSubmenu:menu];
5b0753e0
FB
1544 [[NSApp mainMenu] addItem:menuItem];
1545
e47ec1a9
JA
1546 // Speed menu
1547 menu = [[NSMenu alloc] initWithTitle:@"Speed"];
1548
1549 // Add the rest of the Speed menu items
1550 int p, percentage, throttle_pct;
1551 for (p = 10; p >= 0; p--)
1552 {
1553 percentage = p * 10 > 1 ? p * 10 : 1; // prevent a 0% menu item
1554
1555 menuItem = [[[NSMenuItem alloc]
1556 initWithTitle: [NSString stringWithFormat: @"%d%%", percentage] action:@selector(adjustSpeed:) keyEquivalent:@""] autorelease];
1557
1558 if (percentage == 100) {
5e24600a 1559 [menuItem setState: NSControlStateValueOn];
e47ec1a9
JA
1560 }
1561
1562 /* Calculate the throttle percentage */
1563 throttle_pct = -1 * percentage + 100;
1564
1565 [menuItem setTag: throttle_pct];
1566 [menu addItem: menuItem];
1567 }
1568 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Speed" action:nil keyEquivalent:@""] autorelease];
1569 [menuItem setSubmenu:menu];
1570 [[NSApp mainMenu] addItem:menuItem];
1571
c304f7e2
TS
1572 // Window menu
1573 menu = [[NSMenu alloc] initWithTitle:@"Window"];
1574 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
1575 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1576 [menuItem setSubmenu:menu];
1577 [[NSApp mainMenu] addItem:menuItem];
1578 [NSApp setWindowsMenu:menu];
1579
1580 // Help menu
1581 menu = [[NSMenu alloc] initWithTitle:@"Help"];
1582 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
c304f7e2
TS
1583 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1584 [menuItem setSubmenu:menu];
1585 [[NSApp mainMenu] addItem:menuItem];
c6fd6c70
PM
1586}
1587
8b00e4e7
PM
1588/* Returns a name for a given console */
1589static NSString * getConsoleName(QemuConsole * console)
1590{
1591 return [NSString stringWithFormat: @"%s", qemu_console_get_label(console)];
1592}
1593
1594/* Add an entry to the View menu for each console */
1595static void add_console_menu_entries(void)
1596{
1597 NSMenu *menu;
1598 NSMenuItem *menuItem;
1599 int index = 0;
1600
1601 menu = [[[NSApp mainMenu] itemWithTitle:@"View"] submenu];
1602
1603 [menu addItem:[NSMenuItem separatorItem]];
1604
1605 while (qemu_console_lookup_by_index(index) != NULL) {
1606 menuItem = [[[NSMenuItem alloc] initWithTitle: getConsoleName(qemu_console_lookup_by_index(index))
1607 action: @selector(displayConsole:) keyEquivalent: @""] autorelease];
1608 [menuItem setTag: index];
1609 [menu addItem: menuItem];
1610 index++;
1611 }
1612}
1613
1614/* Make menu items for all removable devices.
1615 * Each device is given an 'Eject' and 'Change' menu item.
1616 */
1617static void addRemovableDevicesMenuItems(void)
1618{
1619 NSMenu *menu;
1620 NSMenuItem *menuItem;
1621 BlockInfoList *currentDevice, *pointerToFree;
1622 NSString *deviceName;
1623
1624 currentDevice = qmp_query_block(NULL);
1625 pointerToFree = currentDevice;
1626 if(currentDevice == NULL) {
1627 NSBeep();
1628 QEMU_Alert(@"Failed to query for block devices!");
1629 return;
1630 }
1631
1632 menu = [[[NSApp mainMenu] itemWithTitle:@"Machine"] submenu];
1633
1634 // Add a separator between related groups of menu items
1635 [menu addItem:[NSMenuItem separatorItem]];
1636
1637 // Set the attributes to the "Removable Media" menu item
1638 NSString *titleString = @"Removable Media";
1639 NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:titleString];
1640 NSColor *newColor = [NSColor blackColor];
1641 NSFontManager *fontManager = [NSFontManager sharedFontManager];
1642 NSFont *font = [fontManager fontWithFamily:@"Helvetica"
1643 traits:NSBoldFontMask|NSItalicFontMask
1644 weight:0
1645 size:14];
1646 [attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, [titleString length])];
1647 [attString addAttribute:NSForegroundColorAttributeName value:newColor range:NSMakeRange(0, [titleString length])];
1648 [attString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInt: 1] range:NSMakeRange(0, [titleString length])];
1649
1650 // Add the "Removable Media" menu item
1651 menuItem = [NSMenuItem new];
1652 [menuItem setAttributedTitle: attString];
1653 [menuItem setEnabled: NO];
1654 [menu addItem: menuItem];
1655
1656 /* Loop through all the block devices in the emulator */
1657 while (currentDevice) {
1658 deviceName = [[NSString stringWithFormat: @"%s", currentDevice->value->device] retain];
1659
1660 if(currentDevice->value->removable) {
1661 menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Change %s...", currentDevice->value->device]
1662 action: @selector(changeDeviceMedia:)
1663 keyEquivalent: @""];
1664 [menu addItem: menuItem];
1665 [menuItem setRepresentedObject: deviceName];
1666 [menuItem autorelease];
1667
1668 menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Eject %s", currentDevice->value->device]
1669 action: @selector(ejectDeviceMedia:)
1670 keyEquivalent: @""];
1671 [menu addItem: menuItem];
1672 [menuItem setRepresentedObject: deviceName];
1673 [menuItem autorelease];
1674 }
1675 currentDevice = currentDevice->next;
1676 }
1677 qapi_free_BlockInfoList(pointerToFree);
1678}
1679
5588840f
PM
1680/*
1681 * The startup process for the OSX/Cocoa UI is complicated, because
1682 * OSX insists that the UI runs on the initial main thread, and so we
1683 * need to start a second thread which runs the vl.c qemu_main():
1684 *
1685 * Initial thread: 2nd thread:
1686 * in main():
1687 * create qemu-main thread
1688 * wait on display_init semaphore
1689 * call qemu_main()
1690 * ...
1691 * in cocoa_display_init():
1692 * post the display_init semaphore
1693 * wait on app_started semaphore
1694 * create application, menus, etc
1695 * enter OSX run loop
1696 * in applicationDidFinishLaunching:
1697 * post app_started semaphore
1698 * tell main thread to fullscreen if needed
1699 * [...]
1700 * run qemu main-loop
1701 *
1702 * We do this in two stages so that we don't do the creation of the
1703 * GUI application menus and so on for command line options like --help
1704 * where we want to just print text to stdout and exit immediately.
1705 */
1706
1707static void *call_qemu_main(void *opaque)
1708{
1709 int status;
1710
1711 COCOA_DEBUG("Second thread: calling qemu_main()\n");
1712 status = qemu_main(gArgc, gArgv, *_NSGetEnviron());
1713 COCOA_DEBUG("Second thread: qemu_main() returned, exiting\n");
1714 exit(status);
1715}
1716
c6fd6c70 1717int main (int argc, const char * argv[]) {
5588840f 1718 QemuThread thread;
c6fd6c70 1719
5588840f 1720 COCOA_DEBUG("Entered main()\n");
c6fd6c70
PM
1721 gArgc = argc;
1722 gArgv = (char **)argv;
c6fd6c70 1723
5588840f
PM
1724 qemu_sem_init(&display_init_sem, 0);
1725 qemu_sem_init(&app_started_sem, 0);
c6fd6c70 1726
5588840f
PM
1727 qemu_thread_create(&thread, "qemu_main", call_qemu_main,
1728 NULL, QEMU_THREAD_DETACHED);
1729
1730 COCOA_DEBUG("Main thread: waiting for display_init_sem\n");
1731 qemu_sem_wait(&display_init_sem);
1732 COCOA_DEBUG("Main thread: initializing app\n");
c6fd6c70
PM
1733
1734 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1735
1736 // Pull this console process up to being a fully-fledged graphical
1737 // app with a menubar and Dock icon
1738 ProcessSerialNumber psn = { 0, kCurrentProcess };
1739 TransformProcessType(&psn, kProcessTransformToForegroundApplication);
1740
61a2ed44 1741 [QemuApplication sharedApplication];
c6fd6c70
PM
1742
1743 create_initial_menus();
5b0753e0 1744
5588840f
PM
1745 /*
1746 * Create the menu entries which depend on QEMU state (for consoles
1747 * and removeable devices). These make calls back into QEMU functions,
1748 * which is OK because at this point we know that the second thread
1749 * holds the iothread lock and is synchronously waiting for us to
1750 * finish.
1751 */
1752 add_console_menu_entries();
1753 addRemovableDevicesMenuItems();
1754
c304f7e2
TS
1755 // Create an Application controller
1756 QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
1757 [NSApp setDelegate:appController];
5b0753e0 1758
c304f7e2 1759 // Start the main event loop
5588840f 1760 COCOA_DEBUG("Main thread: entering OSX run loop\n");
c304f7e2 1761 [NSApp run];
5588840f 1762 COCOA_DEBUG("Main thread: left OSX run loop, exiting\n");
5b0753e0 1763
c304f7e2
TS
1764 [appController release];
1765 [pool release];
3b46e624 1766
c304f7e2
TS
1767 return 0;
1768}
3b46e624 1769
3b46e624 1770
5b0753e0 1771
c304f7e2 1772#pragma mark qemu
7c20b4a3 1773static void cocoa_update(DisplayChangeListener *dcl,
7c20b4a3 1774 int x, int y, int w, int h)
c304f7e2 1775{
6e657e64
PM
1776 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1777
c304f7e2
TS
1778 COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
1779
5588840f
PM
1780 dispatch_async(dispatch_get_main_queue(), ^{
1781 NSRect rect;
1782 if ([cocoaView cdx] == 1.0) {
1783 rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
1784 } else {
1785 rect = NSMakeRect(
1786 x * [cocoaView cdx],
1787 ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
1788 w * [cocoaView cdx],
1789 h * [cocoaView cdy]);
1790 }
1791 [cocoaView setNeedsDisplayInRect:rect];
1792 });
6e657e64
PM
1793
1794 [pool release];
5b0753e0
FB
1795}
1796
c12aeb86 1797static void cocoa_switch(DisplayChangeListener *dcl,
c12aeb86 1798 DisplaySurface *surface)
5b0753e0 1799{
6e657e64 1800 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
5588840f 1801 pixman_image_t *image = surface->image;
3b46e624 1802
6e657e64 1803 COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
5588840f
PM
1804
1805 // The DisplaySurface will be freed as soon as this callback returns.
1806 // We take a reference to the underlying pixman image here so it does
1807 // not disappear from under our feet; the switchSurface method will
1808 // deref the old image when it is done with it.
1809 pixman_image_ref(image);
1810
1811 dispatch_async(dispatch_get_main_queue(), ^{
1812 [cocoaView switchSurface:image];
1813 });
6e657e64 1814 [pool release];
c304f7e2 1815}
3b46e624 1816
bc2ed970 1817static void cocoa_refresh(DisplayChangeListener *dcl)
c304f7e2 1818{
6e657e64
PM
1819 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1820
c304f7e2 1821 COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
468a895b 1822 graphic_hw_update(NULL);
3b46e624 1823
21bae11a 1824 if (qemu_input_is_absolute()) {
5588840f
PM
1825 dispatch_async(dispatch_get_main_queue(), ^{
1826 if (![cocoaView isAbsoluteEnabled]) {
1827 if ([cocoaView isMouseGrabbed]) {
1828 [cocoaView ungrabMouse];
1829 }
c304f7e2 1830 }
5588840f
PM
1831 [cocoaView setAbsoluteEnabled:YES];
1832 });
c304f7e2 1833 }
6e657e64 1834 [pool release];
c304f7e2 1835}
3b46e624 1836
5013b9e4 1837static void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
5b0753e0 1838{
c304f7e2
TS
1839 COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
1840
5588840f
PM
1841 /* Tell main thread to go ahead and create the app and enter the run loop */
1842 qemu_sem_post(&display_init_sem);
1843 qemu_sem_wait(&app_started_sem);
1844 COCOA_DEBUG("cocoa_display_init: app start completed\n");
1845
43227af8 1846 /* if fullscreen mode is to be used */
767f9bf3 1847 if (opts->has_full_screen && opts->full_screen) {
5588840f
PM
1848 dispatch_async(dispatch_get_main_queue(), ^{
1849 [NSApp activateIgnoringOtherApps: YES];
1850 [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
1851 });
43227af8 1852 }
3487da6a
GH
1853 if (opts->has_show_cursor && opts->show_cursor) {
1854 cursor_hide = 0;
1855 }
43227af8 1856
9794f74f 1857 // register vga output callbacks
cc7859c3 1858 register_displaychangelistener(&dcl);
5b0753e0 1859}
5013b9e4
GH
1860
1861static QemuDisplay qemu_display_cocoa = {
1862 .type = DISPLAY_TYPE_COCOA,
1863 .init = cocoa_display_init,
1864};
1865
1866static void register_cocoa(void)
1867{
1868 qemu_display_register(&qemu_display_cocoa);
1869}
1870
1871type_init(register_cocoa);