tests/tcg/ppc64le: use inline asm instead of __builtin_mtfsf
[qemu.git] / ui / cocoa.m
blobb6e70e9134db1897ced1dbe2145c589f7220b2d4
1 /*
2  * QEMU Cocoa CG display driver
3  *
4  * Copyright (c) 2008 Mike Kronenberg
5  *
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  */
25 #include "qemu/osdep.h"
27 #import <Cocoa/Cocoa.h>
28 #include <crt_externs.h>
30 #include "qemu-common.h"
31 #include "ui/clipboard.h"
32 #include "ui/console.h"
33 #include "ui/input.h"
34 #include "ui/kbd-state.h"
35 #include "sysemu/sysemu.h"
36 #include "sysemu/runstate.h"
37 #include "sysemu/cpu-throttle.h"
38 #include "qapi/error.h"
39 #include "qapi/qapi-commands-block.h"
40 #include "qapi/qapi-commands-machine.h"
41 #include "qapi/qapi-commands-misc.h"
42 #include "sysemu/blockdev.h"
43 #include "qemu-version.h"
44 #include "qemu/cutils.h"
45 #include "qemu/main-loop.h"
46 #include "qemu/module.h"
47 #include <Carbon/Carbon.h>
48 #include "hw/core/cpu.h"
50 #ifndef MAC_OS_X_VERSION_10_13
51 #define MAC_OS_X_VERSION_10_13 101300
52 #endif
54 /* 10.14 deprecates NSOnState and NSOffState in favor of
55  * NSControlStateValueOn/Off, which were introduced in 10.13.
56  * Define for older versions
57  */
58 #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_13
59 #define NSControlStateValueOn NSOnState
60 #define NSControlStateValueOff NSOffState
61 #endif
63 //#define DEBUG
65 #ifdef DEBUG
66 #define COCOA_DEBUG(...)  { (void) fprintf (stdout, __VA_ARGS__); }
67 #else
68 #define COCOA_DEBUG(...)  ((void) 0)
69 #endif
71 #define cgrect(nsrect) (*(CGRect *)&(nsrect))
73 typedef struct {
74     int width;
75     int height;
76 } QEMUScreen;
78 static void cocoa_update(DisplayChangeListener *dcl,
79                          int x, int y, int w, int h);
81 static void cocoa_switch(DisplayChangeListener *dcl,
82                          DisplaySurface *surface);
84 static void cocoa_refresh(DisplayChangeListener *dcl);
86 static NSWindow *normalWindow, *about_window;
87 static const DisplayChangeListenerOps dcl_ops = {
88     .dpy_name          = "cocoa",
89     .dpy_gfx_update = cocoa_update,
90     .dpy_gfx_switch = cocoa_switch,
91     .dpy_refresh = cocoa_refresh,
93 static DisplayChangeListener dcl = {
94     .ops = &dcl_ops,
96 static int last_buttons;
97 static int cursor_hide = 1;
99 static int gArgc;
100 static char **gArgv;
101 static bool stretch_video;
102 static NSTextField *pauseLabel;
104 static QemuSemaphore display_init_sem;
105 static QemuSemaphore app_started_sem;
106 static bool allow_events;
108 static NSInteger cbchangecount = -1;
109 static QemuClipboardInfo *cbinfo;
110 static QemuEvent cbevent;
112 // Utility functions to run specified code block with iothread lock held
113 typedef void (^CodeBlock)(void);
114 typedef bool (^BoolCodeBlock)(void);
116 static void with_iothread_lock(CodeBlock block)
118     bool locked = qemu_mutex_iothread_locked();
119     if (!locked) {
120         qemu_mutex_lock_iothread();
121     }
122     block();
123     if (!locked) {
124         qemu_mutex_unlock_iothread();
125     }
128 static bool bool_with_iothread_lock(BoolCodeBlock block)
130     bool locked = qemu_mutex_iothread_locked();
131     bool val;
133     if (!locked) {
134         qemu_mutex_lock_iothread();
135     }
136     val = block();
137     if (!locked) {
138         qemu_mutex_unlock_iothread();
139     }
140     return val;
143 // Mac to QKeyCode conversion
144 static const int mac_to_qkeycode_map[] = {
145     [kVK_ANSI_A] = Q_KEY_CODE_A,
146     [kVK_ANSI_B] = Q_KEY_CODE_B,
147     [kVK_ANSI_C] = Q_KEY_CODE_C,
148     [kVK_ANSI_D] = Q_KEY_CODE_D,
149     [kVK_ANSI_E] = Q_KEY_CODE_E,
150     [kVK_ANSI_F] = Q_KEY_CODE_F,
151     [kVK_ANSI_G] = Q_KEY_CODE_G,
152     [kVK_ANSI_H] = Q_KEY_CODE_H,
153     [kVK_ANSI_I] = Q_KEY_CODE_I,
154     [kVK_ANSI_J] = Q_KEY_CODE_J,
155     [kVK_ANSI_K] = Q_KEY_CODE_K,
156     [kVK_ANSI_L] = Q_KEY_CODE_L,
157     [kVK_ANSI_M] = Q_KEY_CODE_M,
158     [kVK_ANSI_N] = Q_KEY_CODE_N,
159     [kVK_ANSI_O] = Q_KEY_CODE_O,
160     [kVK_ANSI_P] = Q_KEY_CODE_P,
161     [kVK_ANSI_Q] = Q_KEY_CODE_Q,
162     [kVK_ANSI_R] = Q_KEY_CODE_R,
163     [kVK_ANSI_S] = Q_KEY_CODE_S,
164     [kVK_ANSI_T] = Q_KEY_CODE_T,
165     [kVK_ANSI_U] = Q_KEY_CODE_U,
166     [kVK_ANSI_V] = Q_KEY_CODE_V,
167     [kVK_ANSI_W] = Q_KEY_CODE_W,
168     [kVK_ANSI_X] = Q_KEY_CODE_X,
169     [kVK_ANSI_Y] = Q_KEY_CODE_Y,
170     [kVK_ANSI_Z] = Q_KEY_CODE_Z,
172     [kVK_ANSI_0] = Q_KEY_CODE_0,
173     [kVK_ANSI_1] = Q_KEY_CODE_1,
174     [kVK_ANSI_2] = Q_KEY_CODE_2,
175     [kVK_ANSI_3] = Q_KEY_CODE_3,
176     [kVK_ANSI_4] = Q_KEY_CODE_4,
177     [kVK_ANSI_5] = Q_KEY_CODE_5,
178     [kVK_ANSI_6] = Q_KEY_CODE_6,
179     [kVK_ANSI_7] = Q_KEY_CODE_7,
180     [kVK_ANSI_8] = Q_KEY_CODE_8,
181     [kVK_ANSI_9] = Q_KEY_CODE_9,
183     [kVK_ANSI_Grave] = Q_KEY_CODE_GRAVE_ACCENT,
184     [kVK_ANSI_Minus] = Q_KEY_CODE_MINUS,
185     [kVK_ANSI_Equal] = Q_KEY_CODE_EQUAL,
186     [kVK_Delete] = Q_KEY_CODE_BACKSPACE,
187     [kVK_CapsLock] = Q_KEY_CODE_CAPS_LOCK,
188     [kVK_Tab] = Q_KEY_CODE_TAB,
189     [kVK_Return] = Q_KEY_CODE_RET,
190     [kVK_ANSI_LeftBracket] = Q_KEY_CODE_BRACKET_LEFT,
191     [kVK_ANSI_RightBracket] = Q_KEY_CODE_BRACKET_RIGHT,
192     [kVK_ANSI_Backslash] = Q_KEY_CODE_BACKSLASH,
193     [kVK_ANSI_Semicolon] = Q_KEY_CODE_SEMICOLON,
194     [kVK_ANSI_Quote] = Q_KEY_CODE_APOSTROPHE,
195     [kVK_ANSI_Comma] = Q_KEY_CODE_COMMA,
196     [kVK_ANSI_Period] = Q_KEY_CODE_DOT,
197     [kVK_ANSI_Slash] = Q_KEY_CODE_SLASH,
198     [kVK_Space] = Q_KEY_CODE_SPC,
200     [kVK_ANSI_Keypad0] = Q_KEY_CODE_KP_0,
201     [kVK_ANSI_Keypad1] = Q_KEY_CODE_KP_1,
202     [kVK_ANSI_Keypad2] = Q_KEY_CODE_KP_2,
203     [kVK_ANSI_Keypad3] = Q_KEY_CODE_KP_3,
204     [kVK_ANSI_Keypad4] = Q_KEY_CODE_KP_4,
205     [kVK_ANSI_Keypad5] = Q_KEY_CODE_KP_5,
206     [kVK_ANSI_Keypad6] = Q_KEY_CODE_KP_6,
207     [kVK_ANSI_Keypad7] = Q_KEY_CODE_KP_7,
208     [kVK_ANSI_Keypad8] = Q_KEY_CODE_KP_8,
209     [kVK_ANSI_Keypad9] = Q_KEY_CODE_KP_9,
210     [kVK_ANSI_KeypadDecimal] = Q_KEY_CODE_KP_DECIMAL,
211     [kVK_ANSI_KeypadEnter] = Q_KEY_CODE_KP_ENTER,
212     [kVK_ANSI_KeypadPlus] = Q_KEY_CODE_KP_ADD,
213     [kVK_ANSI_KeypadMinus] = Q_KEY_CODE_KP_SUBTRACT,
214     [kVK_ANSI_KeypadMultiply] = Q_KEY_CODE_KP_MULTIPLY,
215     [kVK_ANSI_KeypadDivide] = Q_KEY_CODE_KP_DIVIDE,
216     [kVK_ANSI_KeypadEquals] = Q_KEY_CODE_KP_EQUALS,
217     [kVK_ANSI_KeypadClear] = Q_KEY_CODE_NUM_LOCK,
219     [kVK_UpArrow] = Q_KEY_CODE_UP,
220     [kVK_DownArrow] = Q_KEY_CODE_DOWN,
221     [kVK_LeftArrow] = Q_KEY_CODE_LEFT,
222     [kVK_RightArrow] = Q_KEY_CODE_RIGHT,
224     [kVK_Help] = Q_KEY_CODE_INSERT,
225     [kVK_Home] = Q_KEY_CODE_HOME,
226     [kVK_PageUp] = Q_KEY_CODE_PGUP,
227     [kVK_PageDown] = Q_KEY_CODE_PGDN,
228     [kVK_End] = Q_KEY_CODE_END,
229     [kVK_ForwardDelete] = Q_KEY_CODE_DELETE,
231     [kVK_Escape] = Q_KEY_CODE_ESC,
233     /* The Power key can't be used directly because the operating system uses
234      * it. This key can be emulated by using it in place of another key such as
235      * F1. Don't forget to disable the real key binding.
236      */
237     /* [kVK_F1] = Q_KEY_CODE_POWER, */
239     [kVK_F1] = Q_KEY_CODE_F1,
240     [kVK_F2] = Q_KEY_CODE_F2,
241     [kVK_F3] = Q_KEY_CODE_F3,
242     [kVK_F4] = Q_KEY_CODE_F4,
243     [kVK_F5] = Q_KEY_CODE_F5,
244     [kVK_F6] = Q_KEY_CODE_F6,
245     [kVK_F7] = Q_KEY_CODE_F7,
246     [kVK_F8] = Q_KEY_CODE_F8,
247     [kVK_F9] = Q_KEY_CODE_F9,
248     [kVK_F10] = Q_KEY_CODE_F10,
249     [kVK_F11] = Q_KEY_CODE_F11,
250     [kVK_F12] = Q_KEY_CODE_F12,
251     [kVK_F13] = Q_KEY_CODE_PRINT,
252     [kVK_F14] = Q_KEY_CODE_SCROLL_LOCK,
253     [kVK_F15] = Q_KEY_CODE_PAUSE,
255     // JIS keyboards only
256     [kVK_JIS_Yen] = Q_KEY_CODE_YEN,
257     [kVK_JIS_Underscore] = Q_KEY_CODE_RO,
258     [kVK_JIS_KeypadComma] = Q_KEY_CODE_KP_COMMA,
259     [kVK_JIS_Eisu] = Q_KEY_CODE_MUHENKAN,
260     [kVK_JIS_Kana] = Q_KEY_CODE_HENKAN,
262     /*
263      * The eject and volume keys can't be used here because they are handled at
264      * a lower level than what an Application can see.
265      */
268 static int cocoa_keycode_to_qemu(int keycode)
270     if (ARRAY_SIZE(mac_to_qkeycode_map) <= keycode) {
271         error_report("(cocoa) warning unknown keycode 0x%x", keycode);
272         return 0;
273     }
274     return mac_to_qkeycode_map[keycode];
277 /* Displays an alert dialog box with the specified message */
278 static void QEMU_Alert(NSString *message)
280     NSAlert *alert;
281     alert = [NSAlert new];
282     [alert setMessageText: message];
283     [alert runModal];
286 /* Handles any errors that happen with a device transaction */
287 static void handleAnyDeviceErrors(Error * err)
289     if (err) {
290         QEMU_Alert([NSString stringWithCString: error_get_pretty(err)
291                                       encoding: NSASCIIStringEncoding]);
292         error_free(err);
293     }
297  ------------------------------------------------------
298     QemuCocoaView
299  ------------------------------------------------------
301 @interface QemuCocoaView : NSView
303     QEMUScreen screen;
304     NSWindow *fullScreenWindow;
305     float cx,cy,cw,ch,cdx,cdy;
306     pixman_image_t *pixman_image;
307     QKbdState *kbd;
308     BOOL isMouseGrabbed;
309     BOOL isFullscreen;
310     BOOL isAbsoluteEnabled;
312 - (void) switchSurface:(pixman_image_t *)image;
313 - (void) grabMouse;
314 - (void) ungrabMouse;
315 - (void) toggleFullScreen:(id)sender;
316 - (void) handleMonitorInput:(NSEvent *)event;
317 - (bool) handleEvent:(NSEvent *)event;
318 - (bool) handleEventLocked:(NSEvent *)event;
319 - (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
320 /* The state surrounding mouse grabbing is potentially confusing.
321  * isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
322  *   pointing device an absolute-position one?"], but is only updated on
323  *   next refresh.
324  * isMouseGrabbed tracks whether GUI events are directed to the guest;
325  *   it controls whether special keys like Cmd get sent to the guest,
326  *   and whether we capture the mouse when in non-absolute mode.
327  */
328 - (BOOL) isMouseGrabbed;
329 - (BOOL) isAbsoluteEnabled;
330 - (float) cdx;
331 - (float) cdy;
332 - (QEMUScreen) gscreen;
333 - (void) raiseAllKeys;
334 @end
336 QemuCocoaView *cocoaView;
338 @implementation QemuCocoaView
339 - (id)initWithFrame:(NSRect)frameRect
341     COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
343     self = [super initWithFrame:frameRect];
344     if (self) {
346         screen.width = frameRect.size.width;
347         screen.height = frameRect.size.height;
348         kbd = qkbd_state_init(dcl.con);
350     }
351     return self;
354 - (void) dealloc
356     COCOA_DEBUG("QemuCocoaView: dealloc\n");
358     if (pixman_image) {
359         pixman_image_unref(pixman_image);
360     }
362     qkbd_state_free(kbd);
363     [super dealloc];
366 - (BOOL) isOpaque
368     return YES;
371 - (BOOL) screenContainsPoint:(NSPoint) p
373     return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
376 /* Get location of event and convert to virtual screen coordinate */
377 - (CGPoint) screenLocationOfEvent:(NSEvent *)ev
379     NSWindow *eventWindow = [ev window];
380     // XXX: Use CGRect and -convertRectFromScreen: to support macOS 10.10
381     CGRect r = CGRectZero;
382     r.origin = [ev locationInWindow];
383     if (!eventWindow) {
384         if (!isFullscreen) {
385             return [[self window] convertRectFromScreen:r].origin;
386         } else {
387             CGPoint locationInSelfWindow = [[self window] convertRectFromScreen:r].origin;
388             CGPoint loc = [self convertPoint:locationInSelfWindow fromView:nil];
389             if (stretch_video) {
390                 loc.x /= cdx;
391                 loc.y /= cdy;
392             }
393             return loc;
394         }
395     } else if ([[self window] isEqual:eventWindow]) {
396         if (!isFullscreen) {
397             return r.origin;
398         } else {
399             CGPoint loc = [self convertPoint:r.origin fromView:nil];
400             if (stretch_video) {
401                 loc.x /= cdx;
402                 loc.y /= cdy;
403             }
404             return loc;
405         }
406     } else {
407         return [[self window] convertRectFromScreen:[eventWindow convertRectToScreen:r]].origin;
408     }
411 - (void) hideCursor
413     if (!cursor_hide) {
414         return;
415     }
416     [NSCursor hide];
419 - (void) unhideCursor
421     if (!cursor_hide) {
422         return;
423     }
424     [NSCursor unhide];
427 - (void) drawRect:(NSRect) rect
429     COCOA_DEBUG("QemuCocoaView: drawRect\n");
431     // get CoreGraphic context
432     CGContextRef viewContextRef = [[NSGraphicsContext currentContext] CGContext];
434     CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
435     CGContextSetShouldAntialias (viewContextRef, NO);
437     // draw screen bitmap directly to Core Graphics context
438     if (!pixman_image) {
439         // Draw request before any guest device has set up a framebuffer:
440         // just draw an opaque black rectangle
441         CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
442         CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
443     } else {
444         int w = pixman_image_get_width(pixman_image);
445         int h = pixman_image_get_height(pixman_image);
446         int bitsPerPixel = PIXMAN_FORMAT_BPP(pixman_image_get_format(pixman_image));
447         int stride = pixman_image_get_stride(pixman_image);
448         CGDataProviderRef dataProviderRef = CGDataProviderCreateWithData(
449             NULL,
450             pixman_image_get_data(pixman_image),
451             stride * h,
452             NULL
453         );
454         CGImageRef imageRef = CGImageCreate(
455             w, //width
456             h, //height
457             DIV_ROUND_UP(bitsPerPixel, 8) * 2, //bitsPerComponent
458             bitsPerPixel, //bitsPerPixel
459             stride, //bytesPerRow
460             CGColorSpaceCreateWithName(kCGColorSpaceSRGB), //colorspace
461             kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, //bitmapInfo
462             dataProviderRef, //provider
463             NULL, //decode
464             0, //interpolate
465             kCGRenderingIntentDefault //intent
466         );
467         // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
468         const NSRect *rectList;
469         NSInteger rectCount;
470         int i;
471         CGImageRef clipImageRef;
472         CGRect clipRect;
474         [self getRectsBeingDrawn:&rectList count:&rectCount];
475         for (i = 0; i < rectCount; i++) {
476             clipRect.origin.x = rectList[i].origin.x / cdx;
477             clipRect.origin.y = (float)h - (rectList[i].origin.y + rectList[i].size.height) / cdy;
478             clipRect.size.width = rectList[i].size.width / cdx;
479             clipRect.size.height = rectList[i].size.height / cdy;
480             clipImageRef = CGImageCreateWithImageInRect(
481                                                         imageRef,
482                                                         clipRect
483                                                         );
484             CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
485             CGImageRelease (clipImageRef);
486         }
487         CGImageRelease (imageRef);
488         CGDataProviderRelease(dataProviderRef);
489     }
492 - (void) setContentDimensions
494     COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
496     if (isFullscreen) {
497         cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
498         cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
500         /* stretches video, but keeps same aspect ratio */
501         if (stretch_video == true) {
502             /* use smallest stretch value - prevents clipping on sides */
503             if (MIN(cdx, cdy) == cdx) {
504                 cdy = cdx;
505             } else {
506                 cdx = cdy;
507             }
508         } else {  /* No stretching */
509             cdx = cdy = 1;
510         }
511         cw = screen.width * cdx;
512         ch = screen.height * cdy;
513         cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
514         cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
515     } else {
516         cx = 0;
517         cy = 0;
518         cw = screen.width;
519         ch = screen.height;
520         cdx = 1.0;
521         cdy = 1.0;
522     }
525 - (void) updateUIInfoLocked
527     /* Must be called with the iothread lock, i.e. via updateUIInfo */
528     NSSize frameSize;
529     QemuUIInfo info;
531     if (!qemu_console_is_graphic(dcl.con)) {
532         return;
533     }
535     if ([self window]) {
536         NSDictionary *description = [[[self window] screen] deviceDescription];
537         CGDirectDisplayID display = [[description objectForKey:@"NSScreenNumber"] unsignedIntValue];
538         NSSize screenSize = [[[self window] screen] frame].size;
539         CGSize screenPhysicalSize = CGDisplayScreenSize(display);
541         frameSize = isFullscreen ? screenSize : [self frame].size;
542         info.width_mm = frameSize.width / screenSize.width * screenPhysicalSize.width;
543         info.height_mm = frameSize.height / screenSize.height * screenPhysicalSize.height;
544     } else {
545         frameSize = [self frame].size;
546         info.width_mm = 0;
547         info.height_mm = 0;
548     }
550     info.xoff = 0;
551     info.yoff = 0;
552     info.width = frameSize.width;
553     info.height = frameSize.height;
555     dpy_set_ui_info(dcl.con, &info, TRUE);
558 - (void) updateUIInfo
560     if (!allow_events) {
561         /*
562          * Don't try to tell QEMU about UI information in the application
563          * startup phase -- we haven't yet registered dcl with the QEMU UI
564          * layer, and also trying to take the iothread lock would deadlock.
565          * When cocoa_display_init() does register the dcl, the UI layer
566          * will call cocoa_switch(), which will call updateUIInfo, so
567          * we don't lose any information here.
568          */
569         return;
570     }
572     with_iothread_lock(^{
573         [self updateUIInfoLocked];
574     });
577 - (void)viewDidMoveToWindow
579     [self updateUIInfo];
582 - (void) switchSurface:(pixman_image_t *)image
584     COCOA_DEBUG("QemuCocoaView: switchSurface\n");
586     int w = pixman_image_get_width(image);
587     int h = pixman_image_get_height(image);
588     /* cdx == 0 means this is our very first surface, in which case we need
589      * to recalculate the content dimensions even if it happens to be the size
590      * of the initial empty window.
591      */
592     bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
594     int oldh = screen.height;
595     if (isResize) {
596         // Resize before we trigger the redraw, or we'll redraw at the wrong size
597         COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
598         screen.width = w;
599         screen.height = h;
600         [self setContentDimensions];
601         [self setFrame:NSMakeRect(cx, cy, cw, ch)];
602     }
604     // update screenBuffer
605     if (pixman_image) {
606         pixman_image_unref(pixman_image);
607     }
609     pixman_image = image;
611     // update windows
612     if (isFullscreen) {
613         [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
614         [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:NO animate:NO];
615     } else {
616         if (qemu_name)
617             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
618         [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:YES animate:NO];
619     }
621     if (isResize) {
622         [normalWindow center];
623     }
626 - (void) toggleFullScreen:(id)sender
628     COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
630     if (isFullscreen) { // switch from fullscreen to desktop
631         isFullscreen = FALSE;
632         [self ungrabMouse];
633         [self setContentDimensions];
634         [fullScreenWindow close];
635         [normalWindow setContentView: self];
636         [normalWindow makeKeyAndOrderFront: self];
637         [NSMenu setMenuBarVisible:YES];
638     } else { // switch from desktop to fullscreen
639         isFullscreen = TRUE;
640         [normalWindow orderOut: nil]; /* Hide the window */
641         [self grabMouse];
642         [self setContentDimensions];
643         [NSMenu setMenuBarVisible:NO];
644         fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
645             styleMask:NSWindowStyleMaskBorderless
646             backing:NSBackingStoreBuffered
647             defer:NO];
648         [fullScreenWindow setAcceptsMouseMovedEvents: YES];
649         [fullScreenWindow setHasShadow:NO];
650         [fullScreenWindow setBackgroundColor: [NSColor blackColor]];
651         [self setFrame:NSMakeRect(cx, cy, cw, ch)];
652         [[fullScreenWindow contentView] addSubview: self];
653         [fullScreenWindow makeKeyAndOrderFront:self];
654     }
657 - (void) toggleKey: (int)keycode {
658     qkbd_state_key_event(kbd, keycode, !qkbd_state_key_get(kbd, keycode));
661 // Does the work of sending input to the monitor
662 - (void) handleMonitorInput:(NSEvent *)event
664     int keysym = 0;
665     int control_key = 0;
667     // if the control key is down
668     if ([event modifierFlags] & NSEventModifierFlagControl) {
669         control_key = 1;
670     }
672     /* translates Macintosh keycodes to QEMU's keysym */
674     int without_control_translation[] = {
675         [0 ... 0xff] = 0,   // invalid key
677         [kVK_UpArrow]       = QEMU_KEY_UP,
678         [kVK_DownArrow]     = QEMU_KEY_DOWN,
679         [kVK_RightArrow]    = QEMU_KEY_RIGHT,
680         [kVK_LeftArrow]     = QEMU_KEY_LEFT,
681         [kVK_Home]          = QEMU_KEY_HOME,
682         [kVK_End]           = QEMU_KEY_END,
683         [kVK_PageUp]        = QEMU_KEY_PAGEUP,
684         [kVK_PageDown]      = QEMU_KEY_PAGEDOWN,
685         [kVK_ForwardDelete] = QEMU_KEY_DELETE,
686         [kVK_Delete]        = QEMU_KEY_BACKSPACE,
687     };
689     int with_control_translation[] = {
690         [0 ... 0xff] = 0,   // invalid key
692         [kVK_UpArrow]       = QEMU_KEY_CTRL_UP,
693         [kVK_DownArrow]     = QEMU_KEY_CTRL_DOWN,
694         [kVK_RightArrow]    = QEMU_KEY_CTRL_RIGHT,
695         [kVK_LeftArrow]     = QEMU_KEY_CTRL_LEFT,
696         [kVK_Home]          = QEMU_KEY_CTRL_HOME,
697         [kVK_End]           = QEMU_KEY_CTRL_END,
698         [kVK_PageUp]        = QEMU_KEY_CTRL_PAGEUP,
699         [kVK_PageDown]      = QEMU_KEY_CTRL_PAGEDOWN,
700     };
702     if (control_key != 0) { /* If the control key is being used */
703         if ([event keyCode] < ARRAY_SIZE(with_control_translation)) {
704             keysym = with_control_translation[[event keyCode]];
705         }
706     } else {
707         if ([event keyCode] < ARRAY_SIZE(without_control_translation)) {
708             keysym = without_control_translation[[event keyCode]];
709         }
710     }
712     // if not a key that needs translating
713     if (keysym == 0) {
714         NSString *ks = [event characters];
715         if ([ks length] > 0) {
716             keysym = [ks characterAtIndex:0];
717         }
718     }
720     if (keysym) {
721         kbd_put_keysym(keysym);
722     }
725 - (bool) handleEvent:(NSEvent *)event
727     if(!allow_events) {
728         /*
729          * Just let OSX have all events that arrive before
730          * applicationDidFinishLaunching.
731          * This avoids a deadlock on the iothread lock, which cocoa_display_init()
732          * will not drop until after the app_started_sem is posted. (In theory
733          * there should not be any such events, but OSX Catalina now emits some.)
734          */
735         return false;
736     }
737     return bool_with_iothread_lock(^{
738         return [self handleEventLocked:event];
739     });
742 - (bool) handleEventLocked:(NSEvent *)event
744     /* Return true if we handled the event, false if it should be given to OSX */
745     COCOA_DEBUG("QemuCocoaView: handleEvent\n");
746     int buttons = 0;
747     int keycode = 0;
748     bool mouse_event = false;
749     static bool switched_to_fullscreen = false;
750     // Location of event in virtual screen coordinates
751     NSPoint p = [self screenLocationOfEvent:event];
752     NSUInteger modifiers = [event modifierFlags];
754     /*
755      * Check -[NSEvent modifierFlags] here.
756      *
757      * There is a NSEventType for an event notifying the change of
758      * -[NSEvent modifierFlags], NSEventTypeFlagsChanged but these operations
759      * are performed for any events because a modifier state may change while
760      * the application is inactive (i.e. no events fire) and we don't want to
761      * wait for another modifier state change to detect such a change.
762      *
763      * NSEventModifierFlagCapsLock requires a special treatment. The other flags
764      * are handled in similar manners.
765      *
766      * NSEventModifierFlagCapsLock
767      * ---------------------------
768      *
769      * If CapsLock state is changed, "up" and "down" events will be fired in
770      * sequence, effectively updates CapsLock state on the guest.
771      *
772      * The other flags
773      * ---------------
774      *
775      * If a flag is not set, fire "up" events for all keys which correspond to
776      * the flag. Note that "down" events are not fired here because the flags
777      * checked here do not tell what exact keys are down.
778      *
779      * If one of the keys corresponding to a flag is down, we rely on
780      * -[NSEvent keyCode] of an event whose -[NSEvent type] is
781      * NSEventTypeFlagsChanged to know the exact key which is down, which has
782      * the following two downsides:
783      * - It does not work when the application is inactive as described above.
784      * - It malfactions *after* the modifier state is changed while the
785      *   application is inactive. It is because -[NSEvent keyCode] does not tell
786      *   if the key is up or down, and requires to infer the current state from
787      *   the previous state. It is still possible to fix such a malfanction by
788      *   completely leaving your hands from the keyboard, which hopefully makes
789      *   this implementation usable enough.
790      */
791     if (!!(modifiers & NSEventModifierFlagCapsLock) !=
792         qkbd_state_modifier_get(kbd, QKBD_MOD_CAPSLOCK)) {
793         qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, true);
794         qkbd_state_key_event(kbd, Q_KEY_CODE_CAPS_LOCK, false);
795     }
797     if (!(modifiers & NSEventModifierFlagShift)) {
798         qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT, false);
799         qkbd_state_key_event(kbd, Q_KEY_CODE_SHIFT_R, false);
800     }
801     if (!(modifiers & NSEventModifierFlagControl)) {
802         qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL, false);
803         qkbd_state_key_event(kbd, Q_KEY_CODE_CTRL_R, false);
804     }
805     if (!(modifiers & NSEventModifierFlagOption)) {
806         qkbd_state_key_event(kbd, Q_KEY_CODE_ALT, false);
807         qkbd_state_key_event(kbd, Q_KEY_CODE_ALT_R, false);
808     }
809     if (!(modifiers & NSEventModifierFlagCommand)) {
810         qkbd_state_key_event(kbd, Q_KEY_CODE_META_L, false);
811         qkbd_state_key_event(kbd, Q_KEY_CODE_META_R, false);
812     }
814     switch ([event type]) {
815         case NSEventTypeFlagsChanged:
816             switch ([event keyCode]) {
817                 case kVK_Shift:
818                     if (!!(modifiers & NSEventModifierFlagShift)) {
819                         [self toggleKey:Q_KEY_CODE_SHIFT];
820                     }
821                     break;
823                 case kVK_RightShift:
824                     if (!!(modifiers & NSEventModifierFlagShift)) {
825                         [self toggleKey:Q_KEY_CODE_SHIFT_R];
826                     }
827                     break;
829                 case kVK_Control:
830                     if (!!(modifiers & NSEventModifierFlagControl)) {
831                         [self toggleKey:Q_KEY_CODE_CTRL];
832                     }
833                     break;
835                 case kVK_RightControl:
836                     if (!!(modifiers & NSEventModifierFlagControl)) {
837                         [self toggleKey:Q_KEY_CODE_CTRL_R];
838                     }
839                     break;
841                 case kVK_Option:
842                     if (!!(modifiers & NSEventModifierFlagOption)) {
843                         [self toggleKey:Q_KEY_CODE_ALT];
844                     }
845                     break;
847                 case kVK_RightOption:
848                     if (!!(modifiers & NSEventModifierFlagOption)) {
849                         [self toggleKey:Q_KEY_CODE_ALT_R];
850                     }
851                     break;
853                 /* Don't pass command key changes to guest unless mouse is grabbed */
854                 case kVK_Command:
855                     if (isMouseGrabbed &&
856                         !!(modifiers & NSEventModifierFlagCommand)) {
857                         [self toggleKey:Q_KEY_CODE_META_L];
858                     }
859                     break;
861                 case kVK_RightCommand:
862                     if (isMouseGrabbed &&
863                         !!(modifiers & NSEventModifierFlagCommand)) {
864                         [self toggleKey:Q_KEY_CODE_META_R];
865                     }
866                     break;
867             }
868             break;
869         case NSEventTypeKeyDown:
870             keycode = cocoa_keycode_to_qemu([event keyCode]);
872             // forward command key combos to the host UI unless the mouse is grabbed
873             if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
874                 /*
875                  * Prevent the command key from being stuck down in the guest
876                  * when using Command-F to switch to full screen mode.
877                  */
878                 if (keycode == Q_KEY_CODE_F) {
879                     switched_to_fullscreen = true;
880                 }
881                 return false;
882             }
884             // default
886             // handle control + alt Key Combos (ctrl+alt+[1..9,g] is reserved for QEMU)
887             if (([event modifierFlags] & NSEventModifierFlagControl) && ([event modifierFlags] & NSEventModifierFlagOption)) {
888                 NSString *keychar = [event charactersIgnoringModifiers];
889                 if ([keychar length] == 1) {
890                     char key = [keychar characterAtIndex:0];
891                     switch (key) {
893                         // enable graphic console
894                         case '1' ... '9':
895                             console_select(key - '0' - 1); /* ascii math */
896                             return true;
898                         // release the mouse grab
899                         case 'g':
900                             [self ungrabMouse];
901                             return true;
902                     }
903                 }
904             }
906             if (qemu_console_is_graphic(NULL)) {
907                 qkbd_state_key_event(kbd, keycode, true);
908             } else {
909                 [self handleMonitorInput: event];
910             }
911             break;
912         case NSEventTypeKeyUp:
913             keycode = cocoa_keycode_to_qemu([event keyCode]);
915             // don't pass the guest a spurious key-up if we treated this
916             // command-key combo as a host UI action
917             if (!isMouseGrabbed && ([event modifierFlags] & NSEventModifierFlagCommand)) {
918                 return true;
919             }
921             if (qemu_console_is_graphic(NULL)) {
922                 qkbd_state_key_event(kbd, keycode, false);
923             }
924             break;
925         case NSEventTypeMouseMoved:
926             if (isAbsoluteEnabled) {
927                 // Cursor re-entered into a window might generate events bound to screen coordinates
928                 // and `nil` window property, and in full screen mode, current window might not be
929                 // key window, where event location alone should suffice.
930                 if (![self screenContainsPoint:p] || !([[self window] isKeyWindow] || isFullscreen)) {
931                     if (isMouseGrabbed) {
932                         [self ungrabMouse];
933                     }
934                 } else {
935                     if (!isMouseGrabbed) {
936                         [self grabMouse];
937                     }
938                 }
939             }
940             mouse_event = true;
941             break;
942         case NSEventTypeLeftMouseDown:
943             buttons |= MOUSE_EVENT_LBUTTON;
944             mouse_event = true;
945             break;
946         case NSEventTypeRightMouseDown:
947             buttons |= MOUSE_EVENT_RBUTTON;
948             mouse_event = true;
949             break;
950         case NSEventTypeOtherMouseDown:
951             buttons |= MOUSE_EVENT_MBUTTON;
952             mouse_event = true;
953             break;
954         case NSEventTypeLeftMouseDragged:
955             buttons |= MOUSE_EVENT_LBUTTON;
956             mouse_event = true;
957             break;
958         case NSEventTypeRightMouseDragged:
959             buttons |= MOUSE_EVENT_RBUTTON;
960             mouse_event = true;
961             break;
962         case NSEventTypeOtherMouseDragged:
963             buttons |= MOUSE_EVENT_MBUTTON;
964             mouse_event = true;
965             break;
966         case NSEventTypeLeftMouseUp:
967             mouse_event = true;
968             if (!isMouseGrabbed && [self screenContainsPoint:p]) {
969                 /*
970                  * In fullscreen mode, the window of cocoaView may not be the
971                  * key window, therefore the position relative to the virtual
972                  * screen alone will be sufficient.
973                  */
974                 if(isFullscreen || [[self window] isKeyWindow]) {
975                     [self grabMouse];
976                 }
977             }
978             break;
979         case NSEventTypeRightMouseUp:
980             mouse_event = true;
981             break;
982         case NSEventTypeOtherMouseUp:
983             mouse_event = true;
984             break;
985         case NSEventTypeScrollWheel:
986             /*
987              * Send wheel events to the guest regardless of window focus.
988              * This is in-line with standard Mac OS X UI behaviour.
989              */
991             /*
992              * We shouldn't have got a scroll event when deltaY and delta Y
993              * are zero, hence no harm in dropping the event
994              */
995             if ([event deltaY] != 0 || [event deltaX] != 0) {
996             /* Determine if this is a scroll up or scroll down event */
997                 if ([event deltaY] != 0) {
998                   buttons = ([event deltaY] > 0) ?
999                     INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
1000                 } else if ([event deltaX] != 0) {
1001                   buttons = ([event deltaX] > 0) ?
1002                     INPUT_BUTTON_WHEEL_LEFT : INPUT_BUTTON_WHEEL_RIGHT;
1003                 }
1005                 qemu_input_queue_btn(dcl.con, buttons, true);
1006                 qemu_input_event_sync();
1007                 qemu_input_queue_btn(dcl.con, buttons, false);
1008                 qemu_input_event_sync();
1009             }
1011             /*
1012              * Since deltaX/deltaY also report scroll wheel events we prevent mouse
1013              * movement code from executing.
1014              */
1015             mouse_event = false;
1016             break;
1017         default:
1018             return false;
1019     }
1021     if (mouse_event) {
1022         /* Don't send button events to the guest unless we've got a
1023          * mouse grab or window focus. If we have neither then this event
1024          * is the user clicking on the background window to activate and
1025          * bring us to the front, which will be done by the sendEvent
1026          * call below. We definitely don't want to pass that click through
1027          * to the guest.
1028          */
1029         if ((isMouseGrabbed || [[self window] isKeyWindow]) &&
1030             (last_buttons != buttons)) {
1031             static uint32_t bmap[INPUT_BUTTON__MAX] = {
1032                 [INPUT_BUTTON_LEFT]       = MOUSE_EVENT_LBUTTON,
1033                 [INPUT_BUTTON_MIDDLE]     = MOUSE_EVENT_MBUTTON,
1034                 [INPUT_BUTTON_RIGHT]      = MOUSE_EVENT_RBUTTON
1035             };
1036             qemu_input_update_buttons(dcl.con, bmap, last_buttons, buttons);
1037             last_buttons = buttons;
1038         }
1039         if (isMouseGrabbed) {
1040             if (isAbsoluteEnabled) {
1041                 /* Note that the origin for Cocoa mouse coords is bottom left, not top left.
1042                  * The check on screenContainsPoint is to avoid sending out of range values for
1043                  * clicks in the titlebar.
1044                  */
1045                 if ([self screenContainsPoint:p]) {
1046                     qemu_input_queue_abs(dcl.con, INPUT_AXIS_X, p.x, 0, screen.width);
1047                     qemu_input_queue_abs(dcl.con, INPUT_AXIS_Y, screen.height - p.y, 0, screen.height);
1048                 }
1049             } else {
1050                 qemu_input_queue_rel(dcl.con, INPUT_AXIS_X, (int)[event deltaX]);
1051                 qemu_input_queue_rel(dcl.con, INPUT_AXIS_Y, (int)[event deltaY]);
1052             }
1053         } else {
1054             return false;
1055         }
1056         qemu_input_event_sync();
1057     }
1058     return true;
1061 - (void) grabMouse
1063     COCOA_DEBUG("QemuCocoaView: grabMouse\n");
1065     if (!isFullscreen) {
1066         if (qemu_name)
1067             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt + g to release Mouse)", qemu_name]];
1068         else
1069             [normalWindow setTitle:@"QEMU - (Press ctrl + alt + g to release Mouse)"];
1070     }
1071     [self hideCursor];
1072     CGAssociateMouseAndMouseCursorPosition(isAbsoluteEnabled);
1073     isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
1076 - (void) ungrabMouse
1078     COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
1080     if (!isFullscreen) {
1081         if (qemu_name)
1082             [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
1083         else
1084             [normalWindow setTitle:@"QEMU"];
1085     }
1086     [self unhideCursor];
1087     CGAssociateMouseAndMouseCursorPosition(TRUE);
1088     isMouseGrabbed = FALSE;
1091 - (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {
1092     isAbsoluteEnabled = tIsAbsoluteEnabled;
1093     if (isMouseGrabbed) {
1094         CGAssociateMouseAndMouseCursorPosition(isAbsoluteEnabled);
1095     }
1097 - (BOOL) isMouseGrabbed {return isMouseGrabbed;}
1098 - (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
1099 - (float) cdx {return cdx;}
1100 - (float) cdy {return cdy;}
1101 - (QEMUScreen) gscreen {return screen;}
1104  * Makes the target think all down keys are being released.
1105  * This prevents a stuck key problem, since we will not see
1106  * key up events for those keys after we have lost focus.
1107  */
1108 - (void) raiseAllKeys
1110     with_iothread_lock(^{
1111         qkbd_state_lift_all_keys(kbd);
1112     });
1114 @end
1119  ------------------------------------------------------
1120     QemuCocoaAppController
1121  ------------------------------------------------------
1123 @interface QemuCocoaAppController : NSObject
1124                                        <NSWindowDelegate, NSApplicationDelegate>
1127 - (void)doToggleFullScreen:(id)sender;
1128 - (void)toggleFullScreen:(id)sender;
1129 - (void)showQEMUDoc:(id)sender;
1130 - (void)zoomToFit:(id) sender;
1131 - (void)displayConsole:(id)sender;
1132 - (void)pauseQEMU:(id)sender;
1133 - (void)resumeQEMU:(id)sender;
1134 - (void)displayPause;
1135 - (void)removePause;
1136 - (void)restartQEMU:(id)sender;
1137 - (void)powerDownQEMU:(id)sender;
1138 - (void)ejectDeviceMedia:(id)sender;
1139 - (void)changeDeviceMedia:(id)sender;
1140 - (BOOL)verifyQuit;
1141 - (void)openDocumentation:(NSString *)filename;
1142 - (IBAction) do_about_menu_item: (id) sender;
1143 - (void)make_about_window;
1144 - (void)adjustSpeed:(id)sender;
1145 @end
1147 @implementation QemuCocoaAppController
1148 - (id) init
1150     COCOA_DEBUG("QemuCocoaAppController: init\n");
1152     self = [super init];
1153     if (self) {
1155         // create a view and add it to the window
1156         cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
1157         if(!cocoaView) {
1158             error_report("(cocoa) can't create a view");
1159             exit(1);
1160         }
1162         // create a window
1163         normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
1164             styleMask:NSWindowStyleMaskTitled|NSWindowStyleMaskMiniaturizable|NSWindowStyleMaskClosable
1165             backing:NSBackingStoreBuffered defer:NO];
1166         if(!normalWindow) {
1167             error_report("(cocoa) can't create window");
1168             exit(1);
1169         }
1170         [normalWindow setAcceptsMouseMovedEvents:YES];
1171         [normalWindow setTitle:@"QEMU"];
1172         [normalWindow setContentView:cocoaView];
1173         [normalWindow makeKeyAndOrderFront:self];
1174         [normalWindow center];
1175         [normalWindow setDelegate: self];
1176         stretch_video = false;
1178         /* Used for displaying pause on the screen */
1179         pauseLabel = [NSTextField new];
1180         [pauseLabel setBezeled:YES];
1181         [pauseLabel setDrawsBackground:YES];
1182         [pauseLabel setBackgroundColor: [NSColor whiteColor]];
1183         [pauseLabel setEditable:NO];
1184         [pauseLabel setSelectable:NO];
1185         [pauseLabel setStringValue: @"Paused"];
1186         [pauseLabel setFont: [NSFont fontWithName: @"Helvetica" size: 90]];
1187         [pauseLabel setTextColor: [NSColor blackColor]];
1188         [pauseLabel sizeToFit];
1190         [self make_about_window];
1191     }
1192     return self;
1195 - (void) dealloc
1197     COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
1199     if (cocoaView)
1200         [cocoaView release];
1201     [super dealloc];
1204 - (void)applicationDidFinishLaunching: (NSNotification *) note
1206     COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
1207     allow_events = true;
1208     /* Tell cocoa_display_init to proceed */
1209     qemu_sem_post(&app_started_sem);
1212 - (void)applicationWillTerminate:(NSNotification *)aNotification
1214     COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
1216     qemu_system_shutdown_request(SHUTDOWN_CAUSE_HOST_UI);
1218     /*
1219      * Sleep here, because returning will cause OSX to kill us
1220      * immediately; the QEMU main loop will handle the shutdown
1221      * request and terminate the process.
1222      */
1223     [NSThread sleepForTimeInterval:INFINITY];
1226 - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
1228     return YES;
1231 - (NSApplicationTerminateReply)applicationShouldTerminate:
1232                                                          (NSApplication *)sender
1234     COCOA_DEBUG("QemuCocoaAppController: applicationShouldTerminate\n");
1235     return [self verifyQuit];
1238 - (void)windowDidChangeScreen:(NSNotification *)notification
1240     [cocoaView updateUIInfo];
1243 - (void)windowDidResize:(NSNotification *)notification
1245     [cocoaView updateUIInfo];
1248 /* Called when the user clicks on a window's close button */
1249 - (BOOL)windowShouldClose:(id)sender
1251     COCOA_DEBUG("QemuCocoaAppController: windowShouldClose\n");
1252     [NSApp terminate: sender];
1253     /* If the user allows the application to quit then the call to
1254      * NSApp terminate will never return. If we get here then the user
1255      * cancelled the quit, so we should return NO to not permit the
1256      * closing of this window.
1257      */
1258     return NO;
1261 /* Called when QEMU goes into the background */
1262 - (void) applicationWillResignActive: (NSNotification *)aNotification
1264     COCOA_DEBUG("QemuCocoaAppController: applicationWillResignActive\n");
1265     [cocoaView raiseAllKeys];
1268 /* We abstract the method called by the Enter Fullscreen menu item
1269  * because Mac OS 10.7 and higher disables it. This is because of the
1270  * menu item's old selector's name toggleFullScreen:
1271  */
1272 - (void) doToggleFullScreen:(id)sender
1274     [self toggleFullScreen:(id)sender];
1277 - (void)toggleFullScreen:(id)sender
1279     COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
1281     [cocoaView toggleFullScreen:sender];
1284 /* Tries to find then open the specified filename */
1285 - (void) openDocumentation: (NSString *) filename
1287     /* Where to look for local files */
1288     NSString *path_array[] = {@"../share/doc/qemu/", @"../doc/qemu/", @"docs/"};
1289     NSString *full_file_path;
1290     NSURL *full_file_url;
1292     /* iterate thru the possible paths until the file is found */
1293     int index;
1294     for (index = 0; index < ARRAY_SIZE(path_array); index++) {
1295         full_file_path = [[NSBundle mainBundle] executablePath];
1296         full_file_path = [full_file_path stringByDeletingLastPathComponent];
1297         full_file_path = [NSString stringWithFormat: @"%@/%@%@", full_file_path,
1298                           path_array[index], filename];
1299         full_file_url = [NSURL fileURLWithPath: full_file_path
1300                                    isDirectory: false];
1301         if ([[NSWorkspace sharedWorkspace] openURL: full_file_url] == YES) {
1302             return;
1303         }
1304     }
1306     /* If none of the paths opened a file */
1307     NSBeep();
1308     QEMU_Alert(@"Failed to open file");
1311 - (void)showQEMUDoc:(id)sender
1313     COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
1315     [self openDocumentation: @"index.html"];
1318 /* Stretches video to fit host monitor size */
1319 - (void)zoomToFit:(id) sender
1321     stretch_video = !stretch_video;
1322     if (stretch_video == true) {
1323         [sender setState: NSControlStateValueOn];
1324     } else {
1325         [sender setState: NSControlStateValueOff];
1326     }
1329 /* Displays the console on the screen */
1330 - (void)displayConsole:(id)sender
1332     console_select([sender tag]);
1335 /* Pause the guest */
1336 - (void)pauseQEMU:(id)sender
1338     with_iothread_lock(^{
1339         qmp_stop(NULL);
1340     });
1341     [sender setEnabled: NO];
1342     [[[sender menu] itemWithTitle: @"Resume"] setEnabled: YES];
1343     [self displayPause];
1346 /* Resume running the guest operating system */
1347 - (void)resumeQEMU:(id) sender
1349     with_iothread_lock(^{
1350         qmp_cont(NULL);
1351     });
1352     [sender setEnabled: NO];
1353     [[[sender menu] itemWithTitle: @"Pause"] setEnabled: YES];
1354     [self removePause];
1357 /* Displays the word pause on the screen */
1358 - (void)displayPause
1360     /* Coordinates have to be calculated each time because the window can change its size */
1361     int xCoord, yCoord, width, height;
1362     xCoord = ([normalWindow frame].size.width - [pauseLabel frame].size.width)/2;
1363     yCoord = [normalWindow frame].size.height - [pauseLabel frame].size.height - ([pauseLabel frame].size.height * .5);
1364     width = [pauseLabel frame].size.width;
1365     height = [pauseLabel frame].size.height;
1366     [pauseLabel setFrame: NSMakeRect(xCoord, yCoord, width, height)];
1367     [cocoaView addSubview: pauseLabel];
1370 /* Removes the word pause from the screen */
1371 - (void)removePause
1373     [pauseLabel removeFromSuperview];
1376 /* Restarts QEMU */
1377 - (void)restartQEMU:(id)sender
1379     with_iothread_lock(^{
1380         qmp_system_reset(NULL);
1381     });
1384 /* Powers down QEMU */
1385 - (void)powerDownQEMU:(id)sender
1387     with_iothread_lock(^{
1388         qmp_system_powerdown(NULL);
1389     });
1392 /* Ejects the media.
1393  * Uses sender's tag to figure out the device to eject.
1394  */
1395 - (void)ejectDeviceMedia:(id)sender
1397     NSString * drive;
1398     drive = [sender representedObject];
1399     if(drive == nil) {
1400         NSBeep();
1401         QEMU_Alert(@"Failed to find drive to eject!");
1402         return;
1403     }
1405     __block Error *err = NULL;
1406     with_iothread_lock(^{
1407         qmp_eject(true, [drive cStringUsingEncoding: NSASCIIStringEncoding],
1408                   false, NULL, false, false, &err);
1409     });
1410     handleAnyDeviceErrors(err);
1413 /* Displays a dialog box asking the user to select an image file to load.
1414  * Uses sender's represented object value to figure out which drive to use.
1415  */
1416 - (void)changeDeviceMedia:(id)sender
1418     /* Find the drive name */
1419     NSString * drive;
1420     drive = [sender representedObject];
1421     if(drive == nil) {
1422         NSBeep();
1423         QEMU_Alert(@"Could not find drive!");
1424         return;
1425     }
1427     /* Display the file open dialog */
1428     NSOpenPanel * openPanel;
1429     openPanel = [NSOpenPanel openPanel];
1430     [openPanel setCanChooseFiles: YES];
1431     [openPanel setAllowsMultipleSelection: NO];
1432     if([openPanel runModal] == NSModalResponseOK) {
1433         NSString * file = [[[openPanel URLs] objectAtIndex: 0] path];
1434         if(file == nil) {
1435             NSBeep();
1436             QEMU_Alert(@"Failed to convert URL to file path!");
1437             return;
1438         }
1440         __block Error *err = NULL;
1441         with_iothread_lock(^{
1442             qmp_blockdev_change_medium(true,
1443                                        [drive cStringUsingEncoding:
1444                                                   NSASCIIStringEncoding],
1445                                        false, NULL,
1446                                        [file cStringUsingEncoding:
1447                                                  NSASCIIStringEncoding],
1448                                        true, "raw",
1449                                        false, 0,
1450                                        &err);
1451         });
1452         handleAnyDeviceErrors(err);
1453     }
1456 /* Verifies if the user really wants to quit */
1457 - (BOOL)verifyQuit
1459     NSAlert *alert = [NSAlert new];
1460     [alert autorelease];
1461     [alert setMessageText: @"Are you sure you want to quit QEMU?"];
1462     [alert addButtonWithTitle: @"Cancel"];
1463     [alert addButtonWithTitle: @"Quit"];
1464     if([alert runModal] == NSAlertSecondButtonReturn) {
1465         return YES;
1466     } else {
1467         return NO;
1468     }
1471 /* The action method for the About menu item */
1472 - (IBAction) do_about_menu_item: (id) sender
1474     [about_window makeKeyAndOrderFront: nil];
1477 /* Create and display the about dialog */
1478 - (void)make_about_window
1480     /* Make the window */
1481     int x = 0, y = 0, about_width = 400, about_height = 200;
1482     NSRect window_rect = NSMakeRect(x, y, about_width, about_height);
1483     about_window = [[NSWindow alloc] initWithContentRect:window_rect
1484                     styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable |
1485                     NSWindowStyleMaskMiniaturizable
1486                     backing:NSBackingStoreBuffered
1487                     defer:NO];
1488     [about_window setTitle: @"About"];
1489     [about_window setReleasedWhenClosed: NO];
1490     [about_window center];
1491     NSView *superView = [about_window contentView];
1493     /* Create the dimensions of the picture */
1494     int picture_width = 80, picture_height = 80;
1495     x = (about_width - picture_width)/2;
1496     y = about_height - picture_height - 10;
1497     NSRect picture_rect = NSMakeRect(x, y, picture_width, picture_height);
1499     /* Make the picture of QEMU */
1500     NSImageView *picture_view = [[NSImageView alloc] initWithFrame:
1501                                                      picture_rect];
1502     char *qemu_image_path_c = get_relocated_path(CONFIG_QEMU_ICONDIR "/hicolor/512x512/apps/qemu.png");
1503     NSString *qemu_image_path = [NSString stringWithUTF8String:qemu_image_path_c];
1504     g_free(qemu_image_path_c);
1505     NSImage *qemu_image = [[NSImage alloc] initWithContentsOfFile:qemu_image_path];
1506     [picture_view setImage: qemu_image];
1507     [picture_view setImageScaling: NSImageScaleProportionallyUpOrDown];
1508     [superView addSubview: picture_view];
1510     /* Make the name label */
1511     NSBundle *bundle = [NSBundle mainBundle];
1512     if (bundle) {
1513         x = 0;
1514         y = y - 25;
1515         int name_width = about_width, name_height = 20;
1516         NSRect name_rect = NSMakeRect(x, y, name_width, name_height);
1517         NSTextField *name_label = [[NSTextField alloc] initWithFrame: name_rect];
1518         [name_label setEditable: NO];
1519         [name_label setBezeled: NO];
1520         [name_label setDrawsBackground: NO];
1521         [name_label setAlignment: NSTextAlignmentCenter];
1522         NSString *qemu_name = [[bundle executablePath] lastPathComponent];
1523         [name_label setStringValue: qemu_name];
1524         [superView addSubview: name_label];
1525     }
1527     /* Set the version label's attributes */
1528     x = 0;
1529     y = 50;
1530     int version_width = about_width, version_height = 20;
1531     NSRect version_rect = NSMakeRect(x, y, version_width, version_height);
1532     NSTextField *version_label = [[NSTextField alloc] initWithFrame:
1533                                                       version_rect];
1534     [version_label setEditable: NO];
1535     [version_label setBezeled: NO];
1536     [version_label setAlignment: NSTextAlignmentCenter];
1537     [version_label setDrawsBackground: NO];
1539     /* Create the version string*/
1540     NSString *version_string;
1541     version_string = [[NSString alloc] initWithFormat:
1542     @"QEMU emulator version %s", QEMU_FULL_VERSION];
1543     [version_label setStringValue: version_string];
1544     [superView addSubview: version_label];
1546     /* Make copyright label */
1547     x = 0;
1548     y = 35;
1549     int copyright_width = about_width, copyright_height = 20;
1550     NSRect copyright_rect = NSMakeRect(x, y, copyright_width, copyright_height);
1551     NSTextField *copyright_label = [[NSTextField alloc] initWithFrame:
1552                                                         copyright_rect];
1553     [copyright_label setEditable: NO];
1554     [copyright_label setBezeled: NO];
1555     [copyright_label setDrawsBackground: NO];
1556     [copyright_label setAlignment: NSTextAlignmentCenter];
1557     [copyright_label setStringValue: [NSString stringWithFormat: @"%s",
1558                                      QEMU_COPYRIGHT]];
1559     [superView addSubview: copyright_label];
1562 /* Used by the Speed menu items */
1563 - (void)adjustSpeed:(id)sender
1565     int throttle_pct; /* throttle percentage */
1566     NSMenu *menu;
1568     menu = [sender menu];
1569     if (menu != nil)
1570     {
1571         /* Unselect the currently selected item */
1572         for (NSMenuItem *item in [menu itemArray]) {
1573             if (item.state == NSControlStateValueOn) {
1574                 [item setState: NSControlStateValueOff];
1575                 break;
1576             }
1577         }
1578     }
1580     // check the menu item
1581     [sender setState: NSControlStateValueOn];
1583     // get the throttle percentage
1584     throttle_pct = [sender tag];
1586     with_iothread_lock(^{
1587         cpu_throttle_set(throttle_pct);
1588     });
1589     COCOA_DEBUG("cpu throttling at %d%c\n", cpu_throttle_get_percentage(), '%');
1592 @end
1594 @interface QemuApplication : NSApplication
1595 @end
1597 @implementation QemuApplication
1598 - (void)sendEvent:(NSEvent *)event
1600     COCOA_DEBUG("QemuApplication: sendEvent\n");
1601     if (![cocoaView handleEvent:event]) {
1602         [super sendEvent: event];
1603     }
1605 @end
1607 static void create_initial_menus(void)
1609     // Add menus
1610     NSMenu      *menu;
1611     NSMenuItem  *menuItem;
1613     [NSApp setMainMenu:[[NSMenu alloc] init]];
1615     // Application menu
1616     menu = [[NSMenu alloc] initWithTitle:@""];
1617     [menu addItemWithTitle:@"About QEMU" action:@selector(do_about_menu_item:) keyEquivalent:@""]; // About QEMU
1618     [menu addItem:[NSMenuItem separatorItem]]; //Separator
1619     [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
1620     menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
1621     [menuItem setKeyEquivalentModifierMask:(NSEventModifierFlagOption|NSEventModifierFlagCommand)];
1622     [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
1623     [menu addItem:[NSMenuItem separatorItem]]; //Separator
1624     [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
1625     menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
1626     [menuItem setSubmenu:menu];
1627     [[NSApp mainMenu] addItem:menuItem];
1628     [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
1630     // Machine menu
1631     menu = [[NSMenu alloc] initWithTitle: @"Machine"];
1632     [menu setAutoenablesItems: NO];
1633     [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Pause" action: @selector(pauseQEMU:) keyEquivalent: @""] autorelease]];
1634     menuItem = [[[NSMenuItem alloc] initWithTitle: @"Resume" action: @selector(resumeQEMU:) keyEquivalent: @""] autorelease];
1635     [menu addItem: menuItem];
1636     [menuItem setEnabled: NO];
1637     [menu addItem: [NSMenuItem separatorItem]];
1638     [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Reset" action: @selector(restartQEMU:) keyEquivalent: @""] autorelease]];
1639     [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Power Down" action: @selector(powerDownQEMU:) keyEquivalent: @""] autorelease]];
1640     menuItem = [[[NSMenuItem alloc] initWithTitle: @"Machine" action:nil keyEquivalent:@""] autorelease];
1641     [menuItem setSubmenu:menu];
1642     [[NSApp mainMenu] addItem:menuItem];
1644     // View menu
1645     menu = [[NSMenu alloc] initWithTitle:@"View"];
1646     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
1647     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
1648     menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
1649     [menuItem setSubmenu:menu];
1650     [[NSApp mainMenu] addItem:menuItem];
1652     // Speed menu
1653     menu = [[NSMenu alloc] initWithTitle:@"Speed"];
1655     // Add the rest of the Speed menu items
1656     int p, percentage, throttle_pct;
1657     for (p = 10; p >= 0; p--)
1658     {
1659         percentage = p * 10 > 1 ? p * 10 : 1; // prevent a 0% menu item
1661         menuItem = [[[NSMenuItem alloc]
1662                    initWithTitle: [NSString stringWithFormat: @"%d%%", percentage] action:@selector(adjustSpeed:) keyEquivalent:@""] autorelease];
1664         if (percentage == 100) {
1665             [menuItem setState: NSControlStateValueOn];
1666         }
1668         /* Calculate the throttle percentage */
1669         throttle_pct = -1 * percentage + 100;
1671         [menuItem setTag: throttle_pct];
1672         [menu addItem: menuItem];
1673     }
1674     menuItem = [[[NSMenuItem alloc] initWithTitle:@"Speed" action:nil keyEquivalent:@""] autorelease];
1675     [menuItem setSubmenu:menu];
1676     [[NSApp mainMenu] addItem:menuItem];
1678     // Window menu
1679     menu = [[NSMenu alloc] initWithTitle:@"Window"];
1680     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
1681     menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1682     [menuItem setSubmenu:menu];
1683     [[NSApp mainMenu] addItem:menuItem];
1684     [NSApp setWindowsMenu:menu];
1686     // Help menu
1687     menu = [[NSMenu alloc] initWithTitle:@"Help"];
1688     [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
1689     menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1690     [menuItem setSubmenu:menu];
1691     [[NSApp mainMenu] addItem:menuItem];
1694 /* Returns a name for a given console */
1695 static NSString * getConsoleName(QemuConsole * console)
1697     g_autofree char *label = qemu_console_get_label(console);
1699     return [NSString stringWithUTF8String:label];
1702 /* Add an entry to the View menu for each console */
1703 static void add_console_menu_entries(void)
1705     NSMenu *menu;
1706     NSMenuItem *menuItem;
1707     int index = 0;
1709     menu = [[[NSApp mainMenu] itemWithTitle:@"View"] submenu];
1711     [menu addItem:[NSMenuItem separatorItem]];
1713     while (qemu_console_lookup_by_index(index) != NULL) {
1714         menuItem = [[[NSMenuItem alloc] initWithTitle: getConsoleName(qemu_console_lookup_by_index(index))
1715                                                action: @selector(displayConsole:) keyEquivalent: @""] autorelease];
1716         [menuItem setTag: index];
1717         [menu addItem: menuItem];
1718         index++;
1719     }
1722 /* Make menu items for all removable devices.
1723  * Each device is given an 'Eject' and 'Change' menu item.
1724  */
1725 static void addRemovableDevicesMenuItems(void)
1727     NSMenu *menu;
1728     NSMenuItem *menuItem;
1729     BlockInfoList *currentDevice, *pointerToFree;
1730     NSString *deviceName;
1732     currentDevice = qmp_query_block(NULL);
1733     pointerToFree = currentDevice;
1735     menu = [[[NSApp mainMenu] itemWithTitle:@"Machine"] submenu];
1737     // Add a separator between related groups of menu items
1738     [menu addItem:[NSMenuItem separatorItem]];
1740     // Set the attributes to the "Removable Media" menu item
1741     NSString *titleString = @"Removable Media";
1742     NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:titleString];
1743     NSColor *newColor = [NSColor blackColor];
1744     NSFontManager *fontManager = [NSFontManager sharedFontManager];
1745     NSFont *font = [fontManager fontWithFamily:@"Helvetica"
1746                                           traits:NSBoldFontMask|NSItalicFontMask
1747                                           weight:0
1748                                             size:14];
1749     [attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, [titleString length])];
1750     [attString addAttribute:NSForegroundColorAttributeName value:newColor range:NSMakeRange(0, [titleString length])];
1751     [attString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInt: 1] range:NSMakeRange(0, [titleString length])];
1753     // Add the "Removable Media" menu item
1754     menuItem = [NSMenuItem new];
1755     [menuItem setAttributedTitle: attString];
1756     [menuItem setEnabled: NO];
1757     [menu addItem: menuItem];
1759     /* Loop through all the block devices in the emulator */
1760     while (currentDevice) {
1761         deviceName = [[NSString stringWithFormat: @"%s", currentDevice->value->device] retain];
1763         if(currentDevice->value->removable) {
1764             menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Change %s...", currentDevice->value->device]
1765                                                   action: @selector(changeDeviceMedia:)
1766                                            keyEquivalent: @""];
1767             [menu addItem: menuItem];
1768             [menuItem setRepresentedObject: deviceName];
1769             [menuItem autorelease];
1771             menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Eject %s", currentDevice->value->device]
1772                                                   action: @selector(ejectDeviceMedia:)
1773                                            keyEquivalent: @""];
1774             [menu addItem: menuItem];
1775             [menuItem setRepresentedObject: deviceName];
1776             [menuItem autorelease];
1777         }
1778         currentDevice = currentDevice->next;
1779     }
1780     qapi_free_BlockInfoList(pointerToFree);
1783 @interface QemuCocoaPasteboardTypeOwner : NSObject<NSPasteboardTypeOwner>
1784 @end
1786 @implementation QemuCocoaPasteboardTypeOwner
1788 - (void)pasteboard:(NSPasteboard *)sender provideDataForType:(NSPasteboardType)type
1790     if (type != NSPasteboardTypeString) {
1791         return;
1792     }
1794     with_iothread_lock(^{
1795         QemuClipboardInfo *info = qemu_clipboard_info_ref(cbinfo);
1796         qemu_event_reset(&cbevent);
1797         qemu_clipboard_request(info, QEMU_CLIPBOARD_TYPE_TEXT);
1799         while (info == cbinfo &&
1800                info->types[QEMU_CLIPBOARD_TYPE_TEXT].available &&
1801                info->types[QEMU_CLIPBOARD_TYPE_TEXT].data == NULL) {
1802             qemu_mutex_unlock_iothread();
1803             qemu_event_wait(&cbevent);
1804             qemu_mutex_lock_iothread();
1805         }
1807         if (info == cbinfo) {
1808             NSData *data = [[NSData alloc] initWithBytes:info->types[QEMU_CLIPBOARD_TYPE_TEXT].data
1809                                            length:info->types[QEMU_CLIPBOARD_TYPE_TEXT].size];
1810             [sender setData:data forType:NSPasteboardTypeString];
1811             [data release];
1812         }
1814         qemu_clipboard_info_unref(info);
1815     });
1818 @end
1820 static QemuCocoaPasteboardTypeOwner *cbowner;
1822 static void cocoa_clipboard_notify(Notifier *notifier, void *data);
1823 static void cocoa_clipboard_request(QemuClipboardInfo *info,
1824                                     QemuClipboardType type);
1826 static QemuClipboardPeer cbpeer = {
1827     .name = "cocoa",
1828     .notifier = { .notify = cocoa_clipboard_notify },
1829     .request = cocoa_clipboard_request
1832 static void cocoa_clipboard_update_info(QemuClipboardInfo *info)
1834     if (info->owner == &cbpeer || info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) {
1835         return;
1836     }
1838     if (info != cbinfo) {
1839         NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1840         qemu_clipboard_info_unref(cbinfo);
1841         cbinfo = qemu_clipboard_info_ref(info);
1842         cbchangecount = [[NSPasteboard generalPasteboard] declareTypes:@[NSPasteboardTypeString] owner:cbowner];
1843         [pool release];
1844     }
1846     qemu_event_set(&cbevent);
1849 static void cocoa_clipboard_notify(Notifier *notifier, void *data)
1851     QemuClipboardNotify *notify = data;
1853     switch (notify->type) {
1854     case QEMU_CLIPBOARD_UPDATE_INFO:
1855         cocoa_clipboard_update_info(notify->info);
1856         return;
1857     case QEMU_CLIPBOARD_RESET_SERIAL:
1858         /* ignore */
1859         return;
1860     }
1863 static void cocoa_clipboard_request(QemuClipboardInfo *info,
1864                                     QemuClipboardType type)
1866     NSData *text;
1868     switch (type) {
1869     case QEMU_CLIPBOARD_TYPE_TEXT:
1870         text = [[NSPasteboard generalPasteboard] dataForType:NSPasteboardTypeString];
1871         if (text) {
1872             qemu_clipboard_set_data(&cbpeer, info, type,
1873                                     [text length], [text bytes], true);
1874             [text release];
1875         }
1876         break;
1877     default:
1878         break;
1879     }
1883  * The startup process for the OSX/Cocoa UI is complicated, because
1884  * OSX insists that the UI runs on the initial main thread, and so we
1885  * need to start a second thread which runs the vl.c qemu_main():
1887  * Initial thread:                    2nd thread:
1888  * in main():
1889  *  create qemu-main thread
1890  *  wait on display_init semaphore
1891  *                                    call qemu_main()
1892  *                                    ...
1893  *                                    in cocoa_display_init():
1894  *                                     post the display_init semaphore
1895  *                                     wait on app_started semaphore
1896  *  create application, menus, etc
1897  *  enter OSX run loop
1898  * in applicationDidFinishLaunching:
1899  *  post app_started semaphore
1900  *                                     tell main thread to fullscreen if needed
1901  *                                    [...]
1902  *                                    run qemu main-loop
1904  * We do this in two stages so that we don't do the creation of the
1905  * GUI application menus and so on for command line options like --help
1906  * where we want to just print text to stdout and exit immediately.
1907  */
1909 static void *call_qemu_main(void *opaque)
1911     int status;
1913     COCOA_DEBUG("Second thread: calling qemu_main()\n");
1914     status = qemu_main(gArgc, gArgv, *_NSGetEnviron());
1915     COCOA_DEBUG("Second thread: qemu_main() returned, exiting\n");
1916     [cbowner release];
1917     exit(status);
1920 int main (int argc, char **argv) {
1921     QemuThread thread;
1923     COCOA_DEBUG("Entered main()\n");
1924     gArgc = argc;
1925     gArgv = argv;
1927     qemu_sem_init(&display_init_sem, 0);
1928     qemu_sem_init(&app_started_sem, 0);
1930     qemu_thread_create(&thread, "qemu_main", call_qemu_main,
1931                        NULL, QEMU_THREAD_DETACHED);
1933     COCOA_DEBUG("Main thread: waiting for display_init_sem\n");
1934     qemu_sem_wait(&display_init_sem);
1935     COCOA_DEBUG("Main thread: initializing app\n");
1937     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1939     // Pull this console process up to being a fully-fledged graphical
1940     // app with a menubar and Dock icon
1941     ProcessSerialNumber psn = { 0, kCurrentProcess };
1942     TransformProcessType(&psn, kProcessTransformToForegroundApplication);
1944     [QemuApplication sharedApplication];
1946     create_initial_menus();
1948     /*
1949      * Create the menu entries which depend on QEMU state (for consoles
1950      * and removeable devices). These make calls back into QEMU functions,
1951      * which is OK because at this point we know that the second thread
1952      * holds the iothread lock and is synchronously waiting for us to
1953      * finish.
1954      */
1955     add_console_menu_entries();
1956     addRemovableDevicesMenuItems();
1958     // Create an Application controller
1959     QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
1960     [NSApp setDelegate:appController];
1962     // Start the main event loop
1963     COCOA_DEBUG("Main thread: entering OSX run loop\n");
1964     [NSApp run];
1965     COCOA_DEBUG("Main thread: left OSX run loop, exiting\n");
1967     [appController release];
1968     [pool release];
1970     return 0;
1975 #pragma mark qemu
1976 static void cocoa_update(DisplayChangeListener *dcl,
1977                          int x, int y, int w, int h)
1979     COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
1981     dispatch_async(dispatch_get_main_queue(), ^{
1982         NSRect rect;
1983         if ([cocoaView cdx] == 1.0) {
1984             rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
1985         } else {
1986             rect = NSMakeRect(
1987                 x * [cocoaView cdx],
1988                 ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
1989                 w * [cocoaView cdx],
1990                 h * [cocoaView cdy]);
1991         }
1992         [cocoaView setNeedsDisplayInRect:rect];
1993     });
1996 static void cocoa_switch(DisplayChangeListener *dcl,
1997                          DisplaySurface *surface)
1999     pixman_image_t *image = surface->image;
2001     COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
2003     // The DisplaySurface will be freed as soon as this callback returns.
2004     // We take a reference to the underlying pixman image here so it does
2005     // not disappear from under our feet; the switchSurface method will
2006     // deref the old image when it is done with it.
2007     pixman_image_ref(image);
2009     dispatch_async(dispatch_get_main_queue(), ^{
2010         [cocoaView updateUIInfo];
2011         [cocoaView switchSurface:image];
2012     });
2015 static void cocoa_refresh(DisplayChangeListener *dcl)
2017     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
2019     COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
2020     graphic_hw_update(NULL);
2022     if (qemu_input_is_absolute()) {
2023         dispatch_async(dispatch_get_main_queue(), ^{
2024             if (![cocoaView isAbsoluteEnabled]) {
2025                 if ([cocoaView isMouseGrabbed]) {
2026                     [cocoaView ungrabMouse];
2027                 }
2028             }
2029             [cocoaView setAbsoluteEnabled:YES];
2030         });
2031     }
2033     if (cbchangecount != [[NSPasteboard generalPasteboard] changeCount]) {
2034         qemu_clipboard_info_unref(cbinfo);
2035         cbinfo = qemu_clipboard_info_new(&cbpeer, QEMU_CLIPBOARD_SELECTION_CLIPBOARD);
2036         if ([[NSPasteboard generalPasteboard] availableTypeFromArray:@[NSPasteboardTypeString]]) {
2037             cbinfo->types[QEMU_CLIPBOARD_TYPE_TEXT].available = true;
2038         }
2039         qemu_clipboard_update(cbinfo);
2040         cbchangecount = [[NSPasteboard generalPasteboard] changeCount];
2041         qemu_event_set(&cbevent);
2042     }
2044     [pool release];
2047 static void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
2049     COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
2051     /* Tell main thread to go ahead and create the app and enter the run loop */
2052     qemu_sem_post(&display_init_sem);
2053     qemu_sem_wait(&app_started_sem);
2054     COCOA_DEBUG("cocoa_display_init: app start completed\n");
2056     /* if fullscreen mode is to be used */
2057     if (opts->has_full_screen && opts->full_screen) {
2058         dispatch_async(dispatch_get_main_queue(), ^{
2059             [NSApp activateIgnoringOtherApps: YES];
2060             [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
2061         });
2062     }
2063     if (opts->has_show_cursor && opts->show_cursor) {
2064         cursor_hide = 0;
2065     }
2067     // register vga output callbacks
2068     register_displaychangelistener(&dcl);
2070     qemu_event_init(&cbevent, false);
2071     cbowner = [[QemuCocoaPasteboardTypeOwner alloc] init];
2072     qemu_clipboard_peer_register(&cbpeer);
2075 static QemuDisplay qemu_display_cocoa = {
2076     .type       = DISPLAY_TYPE_COCOA,
2077     .init       = cocoa_display_init,
2080 static void register_cocoa(void)
2082     qemu_display_register(&qemu_display_cocoa);
2085 type_init(register_cocoa);