]> git.proxmox.com Git - mirror_qemu.git/blame - ui/cocoa.m
ui/cocoa.m: Add Reset and Power Down menu items to Machine menu
[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
5b0753e0 25#import <Cocoa/Cocoa.h>
3bbbee18 26#include <crt_externs.h>
5b0753e0 27
87ecb68b 28#include "qemu-common.h"
28ecbaee 29#include "ui/console.h"
21bae11a 30#include "ui/input.h"
9c17d615 31#include "sysemu/sysemu.h"
8524f1c7 32#include "qmp-commands.h"
da4dbf74 33
44e4c0ba
AF
34#ifndef MAC_OS_X_VERSION_10_5
35#define MAC_OS_X_VERSION_10_5 1050
36#endif
2ba9de6e
PM
37#ifndef MAC_OS_X_VERSION_10_6
38#define MAC_OS_X_VERSION_10_6 1060
39#endif
81801ae2
PM
40#ifndef MAC_OS_X_VERSION_10_10
41#define MAC_OS_X_VERSION_10_10 101000
42#endif
44e4c0ba 43
3b46e624 44
c304f7e2 45//#define DEBUG
3b46e624 46
c304f7e2
TS
47#ifdef DEBUG
48#define COCOA_DEBUG(...) { (void) fprintf (stdout, __VA_ARGS__); }
b29169d2 49#else
c304f7e2 50#define COCOA_DEBUG(...) ((void) 0)
b29169d2
BS
51#endif
52
c304f7e2 53#define cgrect(nsrect) (*(CGRect *)&(nsrect))
5b0753e0 54
c304f7e2
TS
55typedef struct {
56 int width;
57 int height;
58 int bitsPerComponent;
59 int bitsPerPixel;
60} QEMUScreen;
61
c304f7e2 62NSWindow *normalWindow;
9794f74f 63static DisplayChangeListener *dcl;
21bae11a 64static int last_buttons;
c304f7e2
TS
65
66int gArgc;
67char **gArgv;
5d1b2eef 68bool stretch_video;
8524f1c7 69NSTextField *pauseLabel;
5b0753e0 70
c304f7e2 71// keymap conversion
87f48e6a 72int keymap[] =
5b0753e0 73{
87f48e6a
FB
74// SdlI macI macH SdlH 104xtH 104xtC sdl
75 30, // 0 0x00 0x1e A QZ_a
76 31, // 1 0x01 0x1f S QZ_s
77 32, // 2 0x02 0x20 D QZ_d
78 33, // 3 0x03 0x21 F QZ_f
79 35, // 4 0x04 0x23 H QZ_h
80 34, // 5 0x05 0x22 G QZ_g
81 44, // 6 0x06 0x2c Z QZ_z
82 45, // 7 0x07 0x2d X QZ_x
83 46, // 8 0x08 0x2e C QZ_c
84 47, // 9 0x09 0x2f V QZ_v
85 0, // 10 0x0A Undefined
86 48, // 11 0x0B 0x30 B QZ_b
87 16, // 12 0x0C 0x10 Q QZ_q
88 17, // 13 0x0D 0x11 W QZ_w
89 18, // 14 0x0E 0x12 E QZ_e
90 19, // 15 0x0F 0x13 R QZ_r
91 21, // 16 0x10 0x15 Y QZ_y
92 20, // 17 0x11 0x14 T QZ_t
93 2, // 18 0x12 0x02 1 QZ_1
94 3, // 19 0x13 0x03 2 QZ_2
95 4, // 20 0x14 0x04 3 QZ_3
96 5, // 21 0x15 0x05 4 QZ_4
97 7, // 22 0x16 0x07 6 QZ_6
98 6, // 23 0x17 0x06 5 QZ_5
99 13, // 24 0x18 0x0d = QZ_EQUALS
100 10, // 25 0x19 0x0a 9 QZ_9
101 8, // 26 0x1A 0x08 7 QZ_7
102 12, // 27 0x1B 0x0c - QZ_MINUS
103 9, // 28 0x1C 0x09 8 QZ_8
104 11, // 29 0x1D 0x0b 0 QZ_0
105 27, // 30 0x1E 0x1b ] QZ_RIGHTBRACKET
106 24, // 31 0x1F 0x18 O QZ_o
107 22, // 32 0x20 0x16 U QZ_u
108 26, // 33 0x21 0x1a [ QZ_LEFTBRACKET
109 23, // 34 0x22 0x17 I QZ_i
110 25, // 35 0x23 0x19 P QZ_p
111 28, // 36 0x24 0x1c ENTER QZ_RETURN
112 38, // 37 0x25 0x26 L QZ_l
113 36, // 38 0x26 0x24 J QZ_j
114 40, // 39 0x27 0x28 ' QZ_QUOTE
115 37, // 40 0x28 0x25 K QZ_k
116 39, // 41 0x29 0x27 ; QZ_SEMICOLON
117 43, // 42 0x2A 0x2b \ QZ_BACKSLASH
118 51, // 43 0x2B 0x33 , QZ_COMMA
119 53, // 44 0x2C 0x35 / QZ_SLASH
120 49, // 45 0x2D 0x31 N QZ_n
121 50, // 46 0x2E 0x32 M QZ_m
122 52, // 47 0x2F 0x34 . QZ_PERIOD
123 15, // 48 0x30 0x0f TAB QZ_TAB
124 57, // 49 0x31 0x39 SPACE QZ_SPACE
125 41, // 50 0x32 0x29 ` QZ_BACKQUOTE
126 14, // 51 0x33 0x0e BKSP QZ_BACKSPACE
127 0, // 52 0x34 Undefined
128 1, // 53 0x35 0x01 ESC QZ_ESCAPE
8895919a
PM
129 220, // 54 0x36 0xdc E0,5C R GUI QZ_RMETA
130 219, // 55 0x37 0xdb E0,5B L GUI QZ_LMETA
87f48e6a
FB
131 42, // 56 0x38 0x2a L SHFT QZ_LSHIFT
132 58, // 57 0x39 0x3a CAPS QZ_CAPSLOCK
133 56, // 58 0x3A 0x38 L ALT QZ_LALT
134 29, // 59 0x3B 0x1d L CTRL QZ_LCTRL
135 54, // 60 0x3C 0x36 R SHFT QZ_RSHIFT
136 184,// 61 0x3D 0xb8 E0,38 R ALT QZ_RALT
137 157,// 62 0x3E 0x9d E0,1D R CTRL QZ_RCTRL
138 0, // 63 0x3F Undefined
139 0, // 64 0x40 Undefined
140 0, // 65 0x41 Undefined
141 0, // 66 0x42 Undefined
142 55, // 67 0x43 0x37 KP * QZ_KP_MULTIPLY
143 0, // 68 0x44 Undefined
144 78, // 69 0x45 0x4e KP + QZ_KP_PLUS
145 0, // 70 0x46 Undefined
146 69, // 71 0x47 0x45 NUM QZ_NUMLOCK
147 0, // 72 0x48 Undefined
148 0, // 73 0x49 Undefined
149 0, // 74 0x4A Undefined
150 181,// 75 0x4B 0xb5 E0,35 KP / QZ_KP_DIVIDE
151 152,// 76 0x4C 0x9c E0,1C KP EN QZ_KP_ENTER
152 0, // 77 0x4D undefined
153 74, // 78 0x4E 0x4a KP - QZ_KP_MINUS
154 0, // 79 0x4F Undefined
155 0, // 80 0x50 Undefined
156 0, // 81 0x51 QZ_KP_EQUALS
157 82, // 82 0x52 0x52 KP 0 QZ_KP0
158 79, // 83 0x53 0x4f KP 1 QZ_KP1
159 80, // 84 0x54 0x50 KP 2 QZ_KP2
160 81, // 85 0x55 0x51 KP 3 QZ_KP3
161 75, // 86 0x56 0x4b KP 4 QZ_KP4
162 76, // 87 0x57 0x4c KP 5 QZ_KP5
163 77, // 88 0x58 0x4d KP 6 QZ_KP6
164 71, // 89 0x59 0x47 KP 7 QZ_KP7
165 0, // 90 0x5A Undefined
166 72, // 91 0x5B 0x48 KP 8 QZ_KP8
167 73, // 92 0x5C 0x49 KP 9 QZ_KP9
168 0, // 93 0x5D Undefined
169 0, // 94 0x5E Undefined
170 0, // 95 0x5F Undefined
171 63, // 96 0x60 0x3f F5 QZ_F5
172 64, // 97 0x61 0x40 F6 QZ_F6
173 65, // 98 0x62 0x41 F7 QZ_F7
174 61, // 99 0x63 0x3d F3 QZ_F3
175 66, // 100 0x64 0x42 F8 QZ_F8
176 67, // 101 0x65 0x43 F9 QZ_F9
177 0, // 102 0x66 Undefined
178 87, // 103 0x67 0x57 F11 QZ_F11
179 0, // 104 0x68 Undefined
c304f7e2 180 183,// 105 0x69 0xb7 QZ_PRINT
87f48e6a
FB
181 0, // 106 0x6A Undefined
182 70, // 107 0x6B 0x46 SCROLL QZ_SCROLLOCK
183 0, // 108 0x6C Undefined
184 68, // 109 0x6D 0x44 F10 QZ_F10
185 0, // 110 0x6E Undefined
186 88, // 111 0x6F 0x58 F12 QZ_F12
187 0, // 112 0x70 Undefined
188 110,// 113 0x71 0x0 QZ_PAUSE
189 210,// 114 0x72 0xd2 E0,52 INSERT QZ_INSERT
190 199,// 115 0x73 0xc7 E0,47 HOME QZ_HOME
191 201,// 116 0x74 0xc9 E0,49 PG UP QZ_PAGEUP
192 211,// 117 0x75 0xd3 E0,53 DELETE QZ_DELETE
193 62, // 118 0x76 0x3e F4 QZ_F4
194 207,// 119 0x77 0xcf E0,4f END QZ_END
195 60, // 120 0x78 0x3c F2 QZ_F2
196 209,// 121 0x79 0xd1 E0,51 PG DN QZ_PAGEDOWN
197 59, // 122 0x7A 0x3b F1 QZ_F1
198 203,// 123 0x7B 0xcb e0,4B L ARROW QZ_LEFT
199 205,// 124 0x7C 0xcd e0,4D R ARROW QZ_RIGHT
200 208,// 125 0x7D 0xd0 E0,50 D ARROW QZ_DOWN
201 200,// 126 0x7E 0xc8 E0,48 U ARROW QZ_UP
202/* completed according to http://www.libsdl.org/cgi/cvsweb.cgi/SDL12/src/video/quartz/SDL_QuartzKeys.h?rev=1.6&content-type=text/x-cvsweb-markup */
3b46e624 203
49b9bd4d 204/* Additional 104 Key XP-Keyboard Scancodes from http://www.computer-engineering.org/ps2keyboard/scancodes1.html */
87f48e6a 205/*
3b46e624
TS
206 221 // 0xdd e0,5d APPS
207 // E0,2A,E0,37 PRNT SCRN
208 // E1,1D,45,E1,9D,C5 PAUSE
209 83 // 0x53 0x53 KP .
210// ACPI Scan Codes
211 222 // 0xde E0, 5E Power
212 223 // 0xdf E0, 5F Sleep
213 227 // 0xe3 E0, 63 Wake
214// Windows Multimedia Scan Codes
215 153 // 0x99 E0, 19 Next Track
216 144 // 0x90 E0, 10 Previous Track
217 164 // 0xa4 E0, 24 Stop
218 162 // 0xa2 E0, 22 Play/Pause
219 160 // 0xa0 E0, 20 Mute
220 176 // 0xb0 E0, 30 Volume Up
5fafdf24 221 174 // 0xae E0, 2E Volume Down
3b46e624
TS
222 237 // 0xed E0, 6D Media Select
223 236 // 0xec E0, 6C E-Mail
224 161 // 0xa1 E0, 21 Calculator
5fafdf24 225 235 // 0xeb E0, 6B My Computer
3b46e624
TS
226 229 // 0xe5 E0, 65 WWW Search
227 178 // 0xb2 E0, 32 WWW Home
228 234 // 0xea E0, 6A WWW Back
5fafdf24 229 233 // 0xe9 E0, 69 WWW Forward
3b46e624 230 232 // 0xe8 E0, 68 WWW Stop
5fafdf24 231 231 // 0xe7 E0, 67 WWW Refresh
3b46e624 232 230 // 0xe6 E0, 66 WWW Favorites
87f48e6a 233*/
5b0753e0
FB
234};
235
77047bb7 236static int cocoa_keycode_to_qemu(int keycode)
5b0753e0 237{
5d70192b 238 if (ARRAY_SIZE(keymap) <= keycode) {
01cc4e6f 239 fprintf(stderr, "(cocoa) warning unknown keycode 0x%x\n", keycode);
5b0753e0
FB
240 return 0;
241 }
242 return keymap[keycode];
243}
244
c304f7e2
TS
245
246
5b0753e0
FB
247/*
248 ------------------------------------------------------
c304f7e2 249 QemuCocoaView
5b0753e0
FB
250 ------------------------------------------------------
251*/
c304f7e2 252@interface QemuCocoaView : NSView
5b0753e0 253{
c304f7e2
TS
254 QEMUScreen screen;
255 NSWindow *fullScreenWindow;
256 float cx,cy,cw,ch,cdx,cdy;
257 CGDataProviderRef dataProviderRef;
258 int modifiers_state[256];
49b9bd4d 259 BOOL isMouseGrabbed;
c304f7e2
TS
260 BOOL isFullscreen;
261 BOOL isAbsoluteEnabled;
f61c387e 262 BOOL isMouseDeassociated;
c304f7e2 263}
5e00d3ac 264- (void) switchSurface:(DisplaySurface *)surface;
c304f7e2
TS
265- (void) grabMouse;
266- (void) ungrabMouse;
267- (void) toggleFullScreen:(id)sender;
268- (void) handleEvent:(NSEvent *)event;
269- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
f61c387e
PM
270/* The state surrounding mouse grabbing is potentially confusing.
271 * isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
272 * pointing device an absolute-position one?"], but is only updated on
273 * next refresh.
274 * isMouseGrabbed tracks whether GUI events are directed to the guest;
275 * it controls whether special keys like Cmd get sent to the guest,
276 * and whether we capture the mouse when in non-absolute mode.
277 * isMouseDeassociated tracks whether we've told MacOSX to disassociate
278 * the mouse and mouse cursor position by calling
279 * CGAssociateMouseAndMouseCursorPosition(FALSE)
280 * (which basically happens if we grab in non-absolute mode).
281 */
49b9bd4d 282- (BOOL) isMouseGrabbed;
c304f7e2 283- (BOOL) isAbsoluteEnabled;
f61c387e 284- (BOOL) isMouseDeassociated;
c304f7e2
TS
285- (float) cdx;
286- (float) cdy;
287- (QEMUScreen) gscreen;
288@end
3b46e624 289
7fee199c
AF
290QemuCocoaView *cocoaView;
291
c304f7e2
TS
292@implementation QemuCocoaView
293- (id)initWithFrame:(NSRect)frameRect
294{
295 COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
3b46e624 296
c304f7e2
TS
297 self = [super initWithFrame:frameRect];
298 if (self) {
3b46e624 299
c304f7e2
TS
300 screen.bitsPerComponent = 8;
301 screen.bitsPerPixel = 32;
302 screen.width = frameRect.size.width;
303 screen.height = frameRect.size.height;
3b46e624 304
c304f7e2
TS
305 }
306 return self;
307}
3b46e624 308
c304f7e2
TS
309- (void) dealloc
310{
311 COCOA_DEBUG("QemuCocoaView: dealloc\n");
3b46e624 312
c304f7e2
TS
313 if (dataProviderRef)
314 CGDataProviderRelease(dataProviderRef);
3b46e624 315
c304f7e2
TS
316 [super dealloc];
317}
3b46e624 318
d50f71dc
AF
319- (BOOL) isOpaque
320{
321 return YES;
322}
323
5dd45bee
PM
324- (BOOL) screenContainsPoint:(NSPoint) p
325{
326 return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
327}
328
13aefd30
PM
329- (void) hideCursor
330{
331 if (!cursor_hide) {
332 return;
333 }
334 [NSCursor hide];
335}
336
337- (void) unhideCursor
338{
339 if (!cursor_hide) {
340 return;
341 }
342 [NSCursor unhide];
343}
344
c304f7e2
TS
345- (void) drawRect:(NSRect) rect
346{
347 COCOA_DEBUG("QemuCocoaView: drawRect\n");
348
c304f7e2
TS
349 // get CoreGraphic context
350 CGContextRef viewContextRef = [[NSGraphicsContext currentContext] graphicsPort];
351 CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
352 CGContextSetShouldAntialias (viewContextRef, NO);
353
354 // draw screen bitmap directly to Core Graphics context
7d270b1c
PM
355 if (!dataProviderRef) {
356 // Draw request before any guest device has set up a framebuffer:
357 // just draw an opaque black rectangle
358 CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
359 CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
360 } else {
c304f7e2
TS
361 CGImageRef imageRef = CGImageCreate(
362 screen.width, //width
363 screen.height, //height
364 screen.bitsPerComponent, //bitsPerComponent
365 screen.bitsPerPixel, //bitsPerPixel
9794f74f 366 (screen.width * (screen.bitsPerComponent/2)), //bytesPerRow
04afa4a8 367#ifdef __LITTLE_ENDIAN__
c304f7e2 368 CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4
9794f74f 369 kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
c304f7e2
TS
370#else
371 CGColorSpaceCreateDeviceRGB(), //colorspace for OS X < 10.4 (actually ppc)
372 kCGImageAlphaNoneSkipFirst, //bitmapInfo
373#endif
374 dataProviderRef, //provider
375 NULL, //decode
376 0, //interpolate
377 kCGRenderingIntentDefault //intent
378 );
b63901d8
PM
379 // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
380 const NSRect *rectList;
b63901d8 381 NSInteger rectCount;
b63901d8
PM
382 int i;
383 CGImageRef clipImageRef;
384 CGRect clipRect;
385
386 [self getRectsBeingDrawn:&rectList count:&rectCount];
387 for (i = 0; i < rectCount; i++) {
388 clipRect.origin.x = rectList[i].origin.x / cdx;
389 clipRect.origin.y = (float)screen.height - (rectList[i].origin.y + rectList[i].size.height) / cdy;
390 clipRect.size.width = rectList[i].size.width / cdx;
391 clipRect.size.height = rectList[i].size.height / cdy;
392 clipImageRef = CGImageCreateWithImageInRect(
393 imageRef,
394 clipRect
395 );
396 CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
397 CGImageRelease (clipImageRef);
5b0753e0 398 }
c304f7e2
TS
399 CGImageRelease (imageRef);
400 }
5b0753e0
FB
401}
402
c304f7e2 403- (void) setContentDimensions
5b0753e0 404{
c304f7e2
TS
405 COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
406
407 if (isFullscreen) {
408 cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
409 cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
5d1b2eef
JA
410
411 /* stretches video, but keeps same aspect ratio */
412 if (stretch_video == true) {
413 /* use smallest stretch value - prevents clipping on sides */
414 if (MIN(cdx, cdy) == cdx) {
415 cdy = cdx;
416 } else {
417 cdx = cdy;
418 }
419 } else { /* No stretching */
420 cdx = cdy = 1;
421 }
c304f7e2
TS
422 cw = screen.width * cdx;
423 ch = screen.height * cdy;
424 cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
425 cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
426 } else {
427 cx = 0;
428 cy = 0;
429 cw = screen.width;
430 ch = screen.height;
431 cdx = 1.0;
432 cdy = 1.0;
433 }
5b0753e0
FB
434}
435
5e00d3ac 436- (void) switchSurface:(DisplaySurface *)surface
5b0753e0 437{
5e00d3ac 438 COCOA_DEBUG("QemuCocoaView: switchSurface\n");
c304f7e2 439
8510d91e
PM
440 int w = surface_width(surface);
441 int h = surface_height(surface);
381600da
PM
442 /* cdx == 0 means this is our very first surface, in which case we need
443 * to recalculate the content dimensions even if it happens to be the size
444 * of the initial empty window.
445 */
446 bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
d3345a04
PM
447
448 int oldh = screen.height;
449 if (isResize) {
450 // Resize before we trigger the redraw, or we'll redraw at the wrong size
451 COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
452 screen.width = w;
453 screen.height = h;
454 [self setContentDimensions];
455 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
456 }
8510d91e 457
c304f7e2
TS
458 // update screenBuffer
459 if (dataProviderRef)
460 CGDataProviderRelease(dataProviderRef);
3b46e624 461
9794f74f 462 //sync host window color space with guests
49060c29
PM
463 screen.bitsPerPixel = surface_bits_per_pixel(surface);
464 screen.bitsPerComponent = surface_bytes_per_pixel(surface) * 2;
9794f74f 465
5e00d3ac 466 dataProviderRef = CGDataProviderCreateWithData(NULL, surface_data(surface), w * 4 * h, NULL);
3b46e624 467
c304f7e2
TS
468 // update windows
469 if (isFullscreen) {
470 [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
d3345a04 471 [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
472 } else {
473 if (qemu_name)
474 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
d3345a04
PM
475 [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:YES animate:NO];
476 }
477
478 if (isResize) {
479 [normalWindow center];
c304f7e2 480 }
5b0753e0
FB
481}
482
c304f7e2
TS
483- (void) toggleFullScreen:(id)sender
484{
485 COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
486
487 if (isFullscreen) { // switch from fullscreen to desktop
488 isFullscreen = FALSE;
489 [self ungrabMouse];
490 [self setContentDimensions];
c304f7e2
TS
491 if ([NSView respondsToSelector:@selector(exitFullScreenModeWithOptions:)]) { // test if "exitFullScreenModeWithOptions" is supported on host at runtime
492 [self exitFullScreenModeWithOptions:nil];
493 } else {
c304f7e2
TS
494 [fullScreenWindow close];
495 [normalWindow setContentView: self];
496 [normalWindow makeKeyAndOrderFront: self];
497 [NSMenu setMenuBarVisible:YES];
c304f7e2 498 }
c304f7e2
TS
499 } else { // switch from desktop to fullscreen
500 isFullscreen = TRUE;
5d1b2eef 501 [normalWindow orderOut: nil]; /* Hide the window */
c304f7e2
TS
502 [self grabMouse];
503 [self setContentDimensions];
c304f7e2
TS
504 if ([NSView respondsToSelector:@selector(enterFullScreenMode:withOptions:)]) { // test if "enterFullScreenMode:withOptions" is supported on host at runtime
505 [self enterFullScreenMode:[NSScreen mainScreen] withOptions:[NSDictionary dictionaryWithObjectsAndKeys:
506 [NSNumber numberWithBool:NO], NSFullScreenModeAllScreens,
507 [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], kCGDisplayModeIsStretched, nil], NSFullScreenModeSetting,
508 nil]];
509 } else {
c304f7e2
TS
510 [NSMenu setMenuBarVisible:NO];
511 fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
512 styleMask:NSBorderlessWindowMask
513 backing:NSBackingStoreBuffered
514 defer:NO];
5d1b2eef 515 [fullScreenWindow setAcceptsMouseMovedEvents: YES];
c304f7e2 516 [fullScreenWindow setHasShadow:NO];
5d1b2eef
JA
517 [fullScreenWindow setBackgroundColor: [NSColor blackColor]];
518 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
519 [[fullScreenWindow contentView] addSubview: self];
c304f7e2 520 [fullScreenWindow makeKeyAndOrderFront:self];
c304f7e2 521 }
c304f7e2
TS
522 }
523}
5b0753e0 524
c304f7e2 525- (void) handleEvent:(NSEvent *)event
3b46e624 526{
c304f7e2
TS
527 COCOA_DEBUG("QemuCocoaView: handleEvent\n");
528
529 int buttons = 0;
530 int keycode;
21bae11a 531 bool mouse_event = false;
c304f7e2
TS
532 NSPoint p = [event locationInWindow];
533
534 switch ([event type]) {
535 case NSFlagsChanged:
536 keycode = cocoa_keycode_to_qemu([event keyCode]);
8895919a 537
49b9bd4d 538 if ((keycode == 219 || keycode == 220) && !isMouseGrabbed) {
8895919a
PM
539 /* Don't pass command key changes to guest unless mouse is grabbed */
540 keycode = 0;
541 }
542
c304f7e2
TS
543 if (keycode) {
544 if (keycode == 58 || keycode == 69) { // emulate caps lock and num lock keydown and keyup
2e08c665
GH
545 qemu_input_event_send_key_number(dcl->con, keycode, true);
546 qemu_input_event_send_key_number(dcl->con, keycode, false);
68c0aa6e 547 } else if (qemu_console_is_graphic(NULL)) {
c304f7e2 548 if (modifiers_state[keycode] == 0) { // keydown
2e08c665 549 qemu_input_event_send_key_number(dcl->con, keycode, true);
c304f7e2
TS
550 modifiers_state[keycode] = 1;
551 } else { // keyup
2e08c665 552 qemu_input_event_send_key_number(dcl->con, keycode, false);
c304f7e2
TS
553 modifiers_state[keycode] = 0;
554 }
555 }
556 }
3b46e624 557
c304f7e2 558 // release Mouse grab when pressing ctrl+alt
5d1b2eef 559 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
c304f7e2
TS
560 [self ungrabMouse];
561 }
562 break;
563 case NSKeyDown:
8895919a 564 keycode = cocoa_keycode_to_qemu([event keyCode]);
3b46e624 565
8895919a 566 // forward command key combos to the host UI unless the mouse is grabbed
49b9bd4d 567 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
c304f7e2
TS
568 [NSApp sendEvent:event];
569 return;
570 }
3b46e624 571
c304f7e2 572 // default
c304f7e2
TS
573
574 // handle control + alt Key Combos (ctrl+alt is reserved for QEMU)
575 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
576 switch (keycode) {
577
578 // enable graphic console
579 case 0x02 ... 0x0a: // '1' to '9' keys
580 console_select(keycode - 0x02);
581 break;
582 }
583
584 // handle keys for graphic console
68c0aa6e 585 } else if (qemu_console_is_graphic(NULL)) {
2e08c665 586 qemu_input_event_send_key_number(dcl->con, keycode, true);
c304f7e2
TS
587
588 // handlekeys for Monitor
589 } else {
590 int keysym = 0;
591 switch([event keyCode]) {
592 case 115:
593 keysym = QEMU_KEY_HOME;
594 break;
595 case 117:
596 keysym = QEMU_KEY_DELETE;
597 break;
598 case 119:
599 keysym = QEMU_KEY_END;
600 break;
601 case 123:
602 keysym = QEMU_KEY_LEFT;
603 break;
604 case 124:
605 keysym = QEMU_KEY_RIGHT;
606 break;
607 case 125:
608 keysym = QEMU_KEY_DOWN;
609 break;
610 case 126:
611 keysym = QEMU_KEY_UP;
612 break;
613 default:
614 {
615 NSString *ks = [event characters];
616 if ([ks length] > 0)
617 keysym = [ks characterAtIndex:0];
618 }
619 }
620 if (keysym)
621 kbd_put_keysym(keysym);
622 }
623 break;
624 case NSKeyUp:
625 keycode = cocoa_keycode_to_qemu([event keyCode]);
8895919a
PM
626
627 // don't pass the guest a spurious key-up if we treated this
628 // command-key combo as a host UI action
49b9bd4d 629 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
8895919a
PM
630 return;
631 }
632
68c0aa6e 633 if (qemu_console_is_graphic(NULL)) {
2e08c665 634 qemu_input_event_send_key_number(dcl->con, keycode, false);
c304f7e2
TS
635 }
636 break;
637 case NSMouseMoved:
638 if (isAbsoluteEnabled) {
5dd45bee 639 if (![self screenContainsPoint:p] || ![[self window] isKeyWindow]) {
f61c387e
PM
640 if (isMouseGrabbed) {
641 [self ungrabMouse];
c304f7e2
TS
642 }
643 } else {
f61c387e
PM
644 if (!isMouseGrabbed) {
645 [self grabMouse];
c304f7e2
TS
646 }
647 }
5b0753e0 648 }
21bae11a 649 mouse_event = true;
c304f7e2
TS
650 break;
651 case NSLeftMouseDown:
652 if ([event modifierFlags] & NSCommandKeyMask) {
653 buttons |= MOUSE_EVENT_RBUTTON;
654 } else {
655 buttons |= MOUSE_EVENT_LBUTTON;
656 }
21bae11a 657 mouse_event = true;
c304f7e2
TS
658 break;
659 case NSRightMouseDown:
660 buttons |= MOUSE_EVENT_RBUTTON;
21bae11a 661 mouse_event = true;
c304f7e2
TS
662 break;
663 case NSOtherMouseDown:
664 buttons |= MOUSE_EVENT_MBUTTON;
21bae11a 665 mouse_event = true;
c304f7e2
TS
666 break;
667 case NSLeftMouseDragged:
668 if ([event modifierFlags] & NSCommandKeyMask) {
669 buttons |= MOUSE_EVENT_RBUTTON;
670 } else {
671 buttons |= MOUSE_EVENT_LBUTTON;
672 }
21bae11a 673 mouse_event = true;
c304f7e2
TS
674 break;
675 case NSRightMouseDragged:
676 buttons |= MOUSE_EVENT_RBUTTON;
21bae11a 677 mouse_event = true;
c304f7e2
TS
678 break;
679 case NSOtherMouseDragged:
680 buttons |= MOUSE_EVENT_MBUTTON;
21bae11a 681 mouse_event = true;
c304f7e2
TS
682 break;
683 case NSLeftMouseUp:
f61c387e
PM
684 mouse_event = true;
685 if (!isMouseGrabbed && [self screenContainsPoint:p]) {
686 [self grabMouse];
c304f7e2
TS
687 }
688 break;
689 case NSRightMouseUp:
21bae11a 690 mouse_event = true;
c304f7e2
TS
691 break;
692 case NSOtherMouseUp:
21bae11a 693 mouse_event = true;
c304f7e2
TS
694 break;
695 case NSScrollWheel:
f61c387e 696 if (isMouseGrabbed) {
21bae11a
GH
697 buttons |= ([event deltaY] < 0) ?
698 MOUSE_EVENT_WHEELUP : MOUSE_EVENT_WHEELDN;
c304f7e2 699 }
f61c387e 700 mouse_event = true;
c304f7e2
TS
701 break;
702 default:
703 [NSApp sendEvent:event];
5b0753e0 704 }
21bae11a
GH
705
706 if (mouse_event) {
707 if (last_buttons != buttons) {
708 static uint32_t bmap[INPUT_BUTTON_MAX] = {
709 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
710 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
711 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
712 [INPUT_BUTTON_WHEEL_UP] = MOUSE_EVENT_WHEELUP,
713 [INPUT_BUTTON_WHEEL_DOWN] = MOUSE_EVENT_WHEELDN,
714 };
715 qemu_input_update_buttons(dcl->con, bmap, last_buttons, buttons);
716 last_buttons = buttons;
717 }
f61c387e
PM
718 if (isMouseGrabbed) {
719 if (isAbsoluteEnabled) {
720 /* Note that the origin for Cocoa mouse coords is bottom left, not top left.
721 * The check on screenContainsPoint is to avoid sending out of range values for
722 * clicks in the titlebar.
723 */
724 if ([self screenContainsPoint:p]) {
725 qemu_input_queue_abs(dcl->con, INPUT_AXIS_X, p.x, screen.width);
726 qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, screen.height - p.y, screen.height);
727 }
728 } else {
729 qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, (int)[event deltaX]);
730 qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, (int)[event deltaY]);
731 }
21bae11a
GH
732 } else {
733 [NSApp sendEvent:event];
734 }
735 qemu_input_event_sync();
736 }
5b0753e0
FB
737}
738
c304f7e2 739- (void) grabMouse
5b0753e0 740{
c304f7e2 741 COCOA_DEBUG("QemuCocoaView: grabMouse\n");
3b46e624 742
c304f7e2
TS
743 if (!isFullscreen) {
744 if (qemu_name)
745 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt to release Mouse)", qemu_name]];
746 else
747 [normalWindow setTitle:@"QEMU - (Press ctrl + alt to release Mouse)"];
748 }
13aefd30 749 [self hideCursor];
f61c387e
PM
750 if (!isAbsoluteEnabled) {
751 isMouseDeassociated = TRUE;
752 CGAssociateMouseAndMouseCursorPosition(FALSE);
753 }
49b9bd4d 754 isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
5b0753e0 755}
3b46e624 756
c304f7e2
TS
757- (void) ungrabMouse
758{
759 COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
3b46e624 760
c304f7e2
TS
761 if (!isFullscreen) {
762 if (qemu_name)
763 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
764 else
765 [normalWindow setTitle:@"QEMU"];
766 }
13aefd30 767 [self unhideCursor];
f61c387e
PM
768 if (isMouseDeassociated) {
769 CGAssociateMouseAndMouseCursorPosition(TRUE);
770 isMouseDeassociated = FALSE;
771 }
49b9bd4d 772 isMouseGrabbed = FALSE;
5b0753e0
FB
773}
774
c304f7e2 775- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {isAbsoluteEnabled = tIsAbsoluteEnabled;}
49b9bd4d 776- (BOOL) isMouseGrabbed {return isMouseGrabbed;}
c304f7e2 777- (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
f61c387e 778- (BOOL) isMouseDeassociated {return isMouseDeassociated;}
c304f7e2
TS
779- (float) cdx {return cdx;}
780- (float) cdy {return cdy;}
781- (QEMUScreen) gscreen {return screen;}
5b0753e0
FB
782@end
783
784
c304f7e2 785
5b0753e0
FB
786/*
787 ------------------------------------------------------
c304f7e2 788 QemuCocoaAppController
5b0753e0
FB
789 ------------------------------------------------------
790*/
c304f7e2 791@interface QemuCocoaAppController : NSObject
2a4c8c53
PM
792#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
793 <NSApplicationDelegate>
794#endif
5b0753e0
FB
795{
796}
5b0753e0 797- (void)startEmulationWithArgc:(int)argc argv:(char**)argv;
de1aadee 798- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo;
5d1b2eef 799- (void)doToggleFullScreen:(id)sender;
c304f7e2
TS
800- (void)toggleFullScreen:(id)sender;
801- (void)showQEMUDoc:(id)sender;
802- (void)showQEMUTec:(id)sender;
5d1b2eef 803- (void)zoomToFit:(id) sender;
b4c6a112 804- (void)displayConsole:(id)sender;
8524f1c7
JA
805- (void)pauseQEMU:(id)sender;
806- (void)resumeQEMU:(id)sender;
807- (void)displayPause;
808- (void)removePause;
27074614
JA
809- (void)restartQEMU:(id)sender;
810- (void)powerDownQEMU:(id)sender;
5b0753e0
FB
811@end
812
c304f7e2
TS
813@implementation QemuCocoaAppController
814- (id) init
5b0753e0 815{
c304f7e2 816 COCOA_DEBUG("QemuCocoaAppController: init\n");
5a246934 817
c304f7e2
TS
818 self = [super init];
819 if (self) {
5a246934 820
c304f7e2
TS
821 // create a view and add it to the window
822 cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
823 if(!cocoaView) {
824 fprintf(stderr, "(cocoa) can't create a view\n");
825 exit(1);
826 }
3b46e624 827
c304f7e2
TS
828 // create a window
829 normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
830 styleMask:NSTitledWindowMask|NSMiniaturizableWindowMask|NSClosableWindowMask
831 backing:NSBackingStoreBuffered defer:NO];
832 if(!normalWindow) {
833 fprintf(stderr, "(cocoa) can't create window\n");
834 exit(1);
835 }
836 [normalWindow setAcceptsMouseMovedEvents:YES];
837 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU"]];
838 [normalWindow setContentView:cocoaView];
81801ae2 839#if (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10)
561ef251 840 [normalWindow useOptimizedDrawing:YES];
81801ae2 841#endif
c304f7e2 842 [normalWindow makeKeyAndOrderFront:self];
49060c29 843 [normalWindow center];
5d1b2eef 844 stretch_video = false;
8524f1c7
JA
845
846 /* Used for displaying pause on the screen */
847 pauseLabel = [NSTextField new];
848 [pauseLabel setBezeled:YES];
849 [pauseLabel setDrawsBackground:YES];
850 [pauseLabel setBackgroundColor: [NSColor whiteColor]];
851 [pauseLabel setEditable:NO];
852 [pauseLabel setSelectable:NO];
853 [pauseLabel setStringValue: @"Paused"];
854 [pauseLabel setFont: [NSFont fontWithName: @"Helvetica" size: 90]];
855 [pauseLabel setTextColor: [NSColor blackColor]];
856 [pauseLabel sizeToFit];
c304f7e2
TS
857 }
858 return self;
859}
3b46e624 860
c304f7e2
TS
861- (void) dealloc
862{
863 COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
864
865 if (cocoaView)
866 [cocoaView release];
867 [super dealloc];
868}
3b46e624 869
c304f7e2
TS
870- (void)applicationDidFinishLaunching: (NSNotification *) note
871{
872 COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
873
49b9bd4d 874 // Display an open dialog box if no arguments were passed or
c304f7e2
TS
875 // if qemu was launched from the finder ( the Finder passes "-psn" )
876 if( gArgc <= 1 || strncmp ((char *)gArgv[1], "-psn", 4) == 0) {
877 NSOpenPanel *op = [[NSOpenPanel alloc] init];
878 [op setPrompt:@"Boot image"];
879 [op setMessage:@"Select the disk image you want to boot.\n\nHit the \"Cancel\" button to quit"];
2ba9de6e 880 NSArray *filetypes = [NSArray arrayWithObjects:@"img", @"iso", @"dmg",
550830f9 881 @"qcow", @"qcow2", @"cloop", @"vmdk", nil];
2ba9de6e
PM
882#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
883 [op setAllowedFileTypes:filetypes];
884 [op beginSheetModalForWindow:normalWindow
885 completionHandler:^(NSInteger returnCode)
886 { [self openPanelDidEnd:op
887 returnCode:returnCode contextInfo:NULL ]; } ];
888#else
889 // Compatibility code for pre-10.6, using deprecated method
890 [op beginSheetForDirectory:nil file:nil types:filetypes
c304f7e2 891 modalForWindow:normalWindow modalDelegate:self
5b0753e0 892 didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:) contextInfo:NULL];
2ba9de6e 893#endif
c304f7e2 894 } else {
5cbdb3a3 895 // or launch QEMU, with the global args
c304f7e2 896 [self startEmulationWithArgc:gArgc argv:(char **)gArgv];
5a246934 897 }
5b0753e0
FB
898}
899
900- (void)applicationWillTerminate:(NSNotification *)aNotification
901{
c304f7e2
TS
902 COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
903
5b0753e0 904 qemu_system_shutdown_request();
5b0753e0
FB
905 exit(0);
906}
907
41ea49b3
AF
908- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
909{
910 return YES;
911}
912
c304f7e2
TS
913- (void)startEmulationWithArgc:(int)argc argv:(char**)argv
914{
915 COCOA_DEBUG("QemuCocoaAppController: startEmulationWithArgc\n");
916
917 int status;
3bbbee18 918 status = qemu_main(argc, argv, *_NSGetEnviron());
c304f7e2
TS
919 exit(status);
920}
921
de1aadee 922- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo
5b0753e0 923{
c304f7e2 924 COCOA_DEBUG("QemuCocoaAppController: openPanelDidEnd\n");
3b46e624 925
8617989e
PM
926 /* The NSFileHandlingPanelOKButton/NSFileHandlingPanelCancelButton values for
927 * returnCode strictly only apply for the 10.6-and-up beginSheetModalForWindow
928 * API. For the legacy pre-10.6 beginSheetForDirectory API they are NSOKButton
929 * and NSCancelButton. However conveniently the values are the same.
930 * We use the non-legacy names because the others are deprecated in OSX 10.10.
931 */
932 if (returnCode == NSFileHandlingPanelCancelButton) {
c304f7e2 933 exit(0);
8617989e 934 } else if (returnCode == NSFileHandlingPanelOKButton) {
8bb3f1e3 935 char *img = (char*)[ [ [ sheet URL ] path ] cStringUsingEncoding:NSASCIIStringEncoding];
3b46e624 936
98db429d 937 char **argv = g_new(char *, 4);
3b46e624 938
13766eb1
AF
939 [sheet close];
940
98db429d
PM
941 argv[0] = g_strdup(gArgv[0]);
942 argv[1] = g_strdup("-hda");
943 argv[2] = g_strdup(img);
944 argv[3] = NULL;
3b46e624 945
98db429d 946 // printf("Using argc %d argv %s -hda %s\n", 3, gArgv[0], img);
3b46e624 947
5b0753e0
FB
948 [self startEmulationWithArgc:3 argv:(char**)argv];
949 }
950}
5d1b2eef
JA
951
952/* We abstract the method called by the Enter Fullscreen menu item
953 * because Mac OS 10.7 and higher disables it. This is because of the
954 * menu item's old selector's name toggleFullScreen:
955 */
956- (void) doToggleFullScreen:(id)sender
957{
958 [self toggleFullScreen:(id)sender];
959}
960
c304f7e2
TS
961- (void)toggleFullScreen:(id)sender
962{
963 COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
964
965 [cocoaView toggleFullScreen:sender];
966}
5b0753e0 967
c304f7e2 968- (void)showQEMUDoc:(id)sender
5b0753e0 969{
c304f7e2
TS
970 COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
971
972 [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-doc.html",
973 [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
974}
975
976- (void)showQEMUTec:(id)sender
977{
978 COCOA_DEBUG("QemuCocoaAppController: showQEMUTec\n");
979
980 [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-tech.html",
981 [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
5b0753e0 982}
5d1b2eef
JA
983
984/* Stretches video to fit host monitor size */
985- (void)zoomToFit:(id) sender
986{
987 stretch_video = !stretch_video;
988 if (stretch_video == true) {
989 [sender setState: NSOnState];
990 } else {
991 [sender setState: NSOffState];
992 }
993}
5b0753e0 994
b4c6a112
JA
995/* Displays the console on the screen */
996- (void)displayConsole:(id)sender
997{
998 console_select([sender tag]);
999}
8524f1c7
JA
1000
1001/* Pause the guest */
1002- (void)pauseQEMU:(id)sender
1003{
1004 qmp_stop(NULL);
1005 [sender setEnabled: NO];
1006 [[[sender menu] itemWithTitle: @"Resume"] setEnabled: YES];
1007 [self displayPause];
1008}
1009
1010/* Resume running the guest operating system */
1011- (void)resumeQEMU:(id) sender
1012{
1013 qmp_cont(NULL);
1014 [sender setEnabled: NO];
1015 [[[sender menu] itemWithTitle: @"Pause"] setEnabled: YES];
1016 [self removePause];
1017}
1018
1019/* Displays the word pause on the screen */
1020- (void)displayPause
1021{
1022 /* Coordinates have to be calculated each time because the window can change its size */
1023 int xCoord, yCoord, width, height;
1024 xCoord = ([normalWindow frame].size.width - [pauseLabel frame].size.width)/2;
1025 yCoord = [normalWindow frame].size.height - [pauseLabel frame].size.height - ([pauseLabel frame].size.height * .5);
1026 width = [pauseLabel frame].size.width;
1027 height = [pauseLabel frame].size.height;
1028 [pauseLabel setFrame: NSMakeRect(xCoord, yCoord, width, height)];
1029 [cocoaView addSubview: pauseLabel];
1030}
1031
1032/* Removes the word pause from the screen */
1033- (void)removePause
1034{
1035 [pauseLabel removeFromSuperview];
1036}
1037
27074614
JA
1038/* Restarts QEMU */
1039- (void)restartQEMU:(id)sender
1040{
1041 qmp_system_reset(NULL);
1042}
1043
1044/* Powers down QEMU */
1045- (void)powerDownQEMU:(id)sender
1046{
1047 qmp_system_powerdown(NULL);
1048}
1049
b4c6a112 1050@end
5b0753e0 1051
c304f7e2 1052
c304f7e2 1053int main (int argc, const char * argv[]) {
5b0753e0 1054
c304f7e2
TS
1055 gArgc = argc;
1056 gArgv = (char **)argv;
f4918804
AF
1057 int i;
1058
1059 /* In case we don't need to display a window, let's not do that */
1060 for (i = 1; i < argc; i++) {
e4ebcc1a
TG
1061 const char *opt = argv[i];
1062
1063 if (opt[0] == '-') {
1064 /* Treat --foo the same as -foo. */
1065 if (opt[1] == '-') {
1066 opt++;
1067 }
9851484f
AR
1068 if (!strcmp(opt, "-h") || !strcmp(opt, "-help") ||
1069 !strcmp(opt, "-vnc") ||
e4ebcc1a
TG
1070 !strcmp(opt, "-nographic") ||
1071 !strcmp(opt, "-version") ||
60b46aa2
AF
1072 !strcmp(opt, "-curses") ||
1073 !strcmp(opt, "-qtest")) {
3bbbee18 1074 return qemu_main(gArgc, gArgv, *_NSGetEnviron());
e4ebcc1a 1075 }
f4918804
AF
1076 }
1077 }
5b0753e0 1078
c304f7e2 1079 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
5b0753e0 1080
42a5dfe7
PM
1081 // Pull this console process up to being a fully-fledged graphical
1082 // app with a menubar and Dock icon
1083 ProcessSerialNumber psn = { 0, kCurrentProcess };
1084 TransformProcessType(&psn, kProcessTransformToForegroundApplication);
1085
1086 [NSApplication sharedApplication];
5b0753e0 1087
c304f7e2
TS
1088 // Add menus
1089 NSMenu *menu;
1090 NSMenuItem *menuItem;
5b0753e0 1091
c304f7e2 1092 [NSApp setMainMenu:[[NSMenu alloc] init]];
5b0753e0 1093
c304f7e2
TS
1094 // Application menu
1095 menu = [[NSMenu alloc] initWithTitle:@""];
1096 [menu addItemWithTitle:@"About QEMU" action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; // About QEMU
1097 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1098 [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
1099 menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
1100 [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)];
1101 [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
1102 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1103 [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
1104 menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
1105 [menuItem setSubmenu:menu];
1106 [[NSApp mainMenu] addItem:menuItem];
1107 [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
3b46e624 1108
8524f1c7
JA
1109 // Machine menu
1110 menu = [[NSMenu alloc] initWithTitle: @"Machine"];
1111 [menu setAutoenablesItems: NO];
1112 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Pause" action: @selector(pauseQEMU:) keyEquivalent: @""] autorelease]];
1113 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Resume" action: @selector(resumeQEMU:) keyEquivalent: @""] autorelease];
1114 [menu addItem: menuItem];
1115 [menuItem setEnabled: NO];
27074614
JA
1116 [menu addItem: [NSMenuItem separatorItem]];
1117 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Reset" action: @selector(restartQEMU:) keyEquivalent: @""] autorelease]];
1118 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Power Down" action: @selector(powerDownQEMU:) keyEquivalent: @""] autorelease]];
8524f1c7
JA
1119 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Machine" action:nil keyEquivalent:@""] autorelease];
1120 [menuItem setSubmenu:menu];
1121 [[NSApp mainMenu] addItem:menuItem];
1122
c304f7e2
TS
1123 // View menu
1124 menu = [[NSMenu alloc] initWithTitle:@"View"];
5d1b2eef
JA
1125 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
1126 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
c304f7e2
TS
1127 menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
1128 [menuItem setSubmenu:menu];
5b0753e0
FB
1129 [[NSApp mainMenu] addItem:menuItem];
1130
c304f7e2
TS
1131 // Window menu
1132 menu = [[NSMenu alloc] initWithTitle:@"Window"];
1133 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
1134 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1135 [menuItem setSubmenu:menu];
1136 [[NSApp mainMenu] addItem:menuItem];
1137 [NSApp setWindowsMenu:menu];
1138
1139 // Help menu
1140 menu = [[NSMenu alloc] initWithTitle:@"Help"];
1141 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
1142 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Technology" action:@selector(showQEMUTec:) keyEquivalent:@""] autorelease]]; // QEMU Help
1143 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1144 [menuItem setSubmenu:menu];
1145 [[NSApp mainMenu] addItem:menuItem];
5b0753e0 1146
c304f7e2
TS
1147 // Create an Application controller
1148 QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
1149 [NSApp setDelegate:appController];
5b0753e0 1150
c304f7e2
TS
1151 // Start the main event loop
1152 [NSApp run];
5b0753e0 1153
c304f7e2
TS
1154 [appController release];
1155 [pool release];
3b46e624 1156
c304f7e2
TS
1157 return 0;
1158}
3b46e624 1159
3b46e624 1160
5b0753e0 1161
c304f7e2 1162#pragma mark qemu
7c20b4a3 1163static void cocoa_update(DisplayChangeListener *dcl,
7c20b4a3 1164 int x, int y, int w, int h)
c304f7e2 1165{
6e657e64
PM
1166 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1167
c304f7e2
TS
1168 COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
1169
1170 NSRect rect;
1171 if ([cocoaView cdx] == 1.0) {
1172 rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
1173 } else {
1174 rect = NSMakeRect(
1175 x * [cocoaView cdx],
1176 ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
1177 w * [cocoaView cdx],
1178 h * [cocoaView cdy]);
1179 }
17ccbc27 1180 [cocoaView setNeedsDisplayInRect:rect];
6e657e64
PM
1181
1182 [pool release];
5b0753e0
FB
1183}
1184
c12aeb86 1185static void cocoa_switch(DisplayChangeListener *dcl,
c12aeb86 1186 DisplaySurface *surface)
5b0753e0 1187{
6e657e64 1188 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
3b46e624 1189
6e657e64 1190 COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
5e00d3ac 1191 [cocoaView switchSurface:surface];
6e657e64 1192 [pool release];
c304f7e2 1193}
3b46e624 1194
bc2ed970 1195static void cocoa_refresh(DisplayChangeListener *dcl)
c304f7e2 1196{
6e657e64
PM
1197 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1198
c304f7e2 1199 COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
3b46e624 1200
21bae11a 1201 if (qemu_input_is_absolute()) {
c304f7e2 1202 if (![cocoaView isAbsoluteEnabled]) {
49b9bd4d 1203 if ([cocoaView isMouseGrabbed]) {
c304f7e2
TS
1204 [cocoaView ungrabMouse];
1205 }
1206 }
1207 [cocoaView setAbsoluteEnabled:YES];
1208 }
5b0753e0 1209
c304f7e2
TS
1210 NSDate *distantPast;
1211 NSEvent *event;
1212 distantPast = [NSDate distantPast];
1213 do {
1214 event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:distantPast
1215 inMode: NSDefaultRunLoopMode dequeue:YES];
1216 if (event != nil) {
1217 [cocoaView handleEvent:event];
1218 }
1219 } while(event != nil);
68c0aa6e 1220 graphic_hw_update(NULL);
6e657e64 1221 [pool release];
c304f7e2 1222}
3b46e624 1223
c304f7e2
TS
1224static void cocoa_cleanup(void)
1225{
1226 COCOA_DEBUG("qemu_cocoa: cocoa_cleanup\n");
58a06675 1227 g_free(dcl);
5b0753e0
FB
1228}
1229
7c20b4a3
GH
1230static const DisplayChangeListenerOps dcl_ops = {
1231 .dpy_name = "cocoa",
8510d91e
PM
1232 .dpy_gfx_update = cocoa_update,
1233 .dpy_gfx_switch = cocoa_switch,
1234 .dpy_refresh = cocoa_refresh,
7c20b4a3
GH
1235};
1236
b4c6a112
JA
1237/* Returns a name for a given console */
1238static NSString * getConsoleName(QemuConsole * console)
1239{
1240 return [NSString stringWithFormat: @"%s", qemu_console_get_label(console)];
1241}
1242
1243/* Add an entry to the View menu for each console */
1244static void add_console_menu_entries(void)
1245{
1246 NSMenu *menu;
1247 NSMenuItem *menuItem;
1248 int index = 0;
1249
1250 menu = [[[NSApp mainMenu] itemWithTitle:@"View"] submenu];
1251
1252 [menu addItem:[NSMenuItem separatorItem]];
1253
1254 while (qemu_console_lookup_by_index(index) != NULL) {
1255 menuItem = [[[NSMenuItem alloc] initWithTitle: getConsoleName(qemu_console_lookup_by_index(index))
1256 action: @selector(displayConsole:) keyEquivalent: @""] autorelease];
1257 [menuItem setTag: index];
1258 [menu addItem: menuItem];
1259 index++;
1260 }
1261}
1262
c304f7e2 1263void cocoa_display_init(DisplayState *ds, int full_screen)
5b0753e0 1264{
c304f7e2
TS
1265 COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
1266
43227af8
JA
1267 /* if fullscreen mode is to be used */
1268 if (full_screen == true) {
1269 [NSApp activateIgnoringOtherApps: YES];
1270 [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
1271 }
1272
58a06675
BS
1273 dcl = g_malloc0(sizeof(DisplayChangeListener));
1274
9794f74f 1275 // register vga output callbacks
7c20b4a3 1276 dcl->ops = &dcl_ops;
5209089f 1277 register_displaychangelistener(dcl);
cae41b10 1278
c304f7e2
TS
1279 // register cleanup function
1280 atexit(cocoa_cleanup);
b4c6a112
JA
1281
1282 /* At this point QEMU has created all the consoles, so we can add View
1283 * menu entries for them.
1284 */
1285 add_console_menu_entries();
5b0753e0 1286}