blob: 563ea47253a919958e45706c80551ca502637e6b [file] [log] [blame]
bellard5b0753e2005-03-01 21:37:28 +00001/*
thsc304f7e2008-01-22 23:25:15 +00002 * QEMU Cocoa CG display driver
ths5fafdf22007-09-16 21:08:06 +00003 *
thsc304f7e2008-01-22 23:25:15 +00004 * Copyright (c) 2008 Mike Kronenberg
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard5b0753e2005-03-01 21:37:28 +00006 * 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 */
bellardda4dbf72005-03-02 22:22:43 +000024
bellard5b0753e2005-03-01 21:37:28 +000025#import <Cocoa/Cocoa.h>
Andreas Färber3bbbee12011-05-29 19:42:51 +020026#include <crt_externs.h>
bellard5b0753e2005-03-01 21:37:28 +000027
pbrook87ecb682007-11-17 17:14:51 +000028#include "qemu-common.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010029#include "ui/console.h"
Gerd Hoffmann21bae112013-12-04 14:08:04 +010030#include "ui/input.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/sysemu.h"
bellardda4dbf72005-03-02 22:22:43 +000032
Andreas Färber44e4c0b2009-12-13 00:45:40 +010033#ifndef MAC_OS_X_VERSION_10_5
34#define MAC_OS_X_VERSION_10_5 1050
35#endif
Peter Maydell2ba9de62013-04-22 10:29:49 +000036#ifndef MAC_OS_X_VERSION_10_6
37#define MAC_OS_X_VERSION_10_6 1060
38#endif
Andreas Färber44e4c0b2009-12-13 00:45:40 +010039
bellard5b0753e2005-03-01 21:37:28 +000040
thsc304f7e2008-01-22 23:25:15 +000041//#define DEBUG
42
43#ifdef DEBUG
44#define COCOA_DEBUG(...) { (void) fprintf (stdout, __VA_ARGS__); }
45#else
46#define COCOA_DEBUG(...) ((void) 0)
47#endif
48
49#define cgrect(nsrect) (*(CGRect *)&(nsrect))
thsc304f7e2008-01-22 23:25:15 +000050
51typedef struct {
52 int width;
53 int height;
54 int bitsPerComponent;
55 int bitsPerPixel;
56} QEMUScreen;
57
thsc304f7e2008-01-22 23:25:15 +000058NSWindow *normalWindow;
aliguori9794f742009-03-04 19:25:22 +000059static DisplayChangeListener *dcl;
Gerd Hoffmann21bae112013-12-04 14:08:04 +010060static int last_buttons;
bellard5b0753e2005-03-01 21:37:28 +000061
62int gArgc;
63char **gArgv;
Programmingkid5d1b2ee2015-05-19 09:11:17 +010064bool stretch_video;
bellard5b0753e2005-03-01 21:37:28 +000065
thsc304f7e2008-01-22 23:25:15 +000066// keymap conversion
bellard87f48e62005-10-30 18:24:49 +000067int keymap[] =
bellard5b0753e2005-03-01 21:37:28 +000068{
bellard87f48e62005-10-30 18:24:49 +000069// SdlI macI macH SdlH 104xtH 104xtC sdl
70 30, // 0 0x00 0x1e A QZ_a
71 31, // 1 0x01 0x1f S QZ_s
72 32, // 2 0x02 0x20 D QZ_d
73 33, // 3 0x03 0x21 F QZ_f
74 35, // 4 0x04 0x23 H QZ_h
75 34, // 5 0x05 0x22 G QZ_g
76 44, // 6 0x06 0x2c Z QZ_z
77 45, // 7 0x07 0x2d X QZ_x
78 46, // 8 0x08 0x2e C QZ_c
79 47, // 9 0x09 0x2f V QZ_v
80 0, // 10 0x0A Undefined
81 48, // 11 0x0B 0x30 B QZ_b
82 16, // 12 0x0C 0x10 Q QZ_q
83 17, // 13 0x0D 0x11 W QZ_w
84 18, // 14 0x0E 0x12 E QZ_e
85 19, // 15 0x0F 0x13 R QZ_r
86 21, // 16 0x10 0x15 Y QZ_y
87 20, // 17 0x11 0x14 T QZ_t
88 2, // 18 0x12 0x02 1 QZ_1
89 3, // 19 0x13 0x03 2 QZ_2
90 4, // 20 0x14 0x04 3 QZ_3
91 5, // 21 0x15 0x05 4 QZ_4
92 7, // 22 0x16 0x07 6 QZ_6
93 6, // 23 0x17 0x06 5 QZ_5
94 13, // 24 0x18 0x0d = QZ_EQUALS
95 10, // 25 0x19 0x0a 9 QZ_9
96 8, // 26 0x1A 0x08 7 QZ_7
97 12, // 27 0x1B 0x0c - QZ_MINUS
98 9, // 28 0x1C 0x09 8 QZ_8
99 11, // 29 0x1D 0x0b 0 QZ_0
100 27, // 30 0x1E 0x1b ] QZ_RIGHTBRACKET
101 24, // 31 0x1F 0x18 O QZ_o
102 22, // 32 0x20 0x16 U QZ_u
103 26, // 33 0x21 0x1a [ QZ_LEFTBRACKET
104 23, // 34 0x22 0x17 I QZ_i
105 25, // 35 0x23 0x19 P QZ_p
106 28, // 36 0x24 0x1c ENTER QZ_RETURN
107 38, // 37 0x25 0x26 L QZ_l
108 36, // 38 0x26 0x24 J QZ_j
109 40, // 39 0x27 0x28 ' QZ_QUOTE
110 37, // 40 0x28 0x25 K QZ_k
111 39, // 41 0x29 0x27 ; QZ_SEMICOLON
112 43, // 42 0x2A 0x2b \ QZ_BACKSLASH
113 51, // 43 0x2B 0x33 , QZ_COMMA
114 53, // 44 0x2C 0x35 / QZ_SLASH
115 49, // 45 0x2D 0x31 N QZ_n
116 50, // 46 0x2E 0x32 M QZ_m
117 52, // 47 0x2F 0x34 . QZ_PERIOD
118 15, // 48 0x30 0x0f TAB QZ_TAB
119 57, // 49 0x31 0x39 SPACE QZ_SPACE
120 41, // 50 0x32 0x29 ` QZ_BACKQUOTE
121 14, // 51 0x33 0x0e BKSP QZ_BACKSPACE
122 0, // 52 0x34 Undefined
123 1, // 53 0x35 0x01 ESC QZ_ESCAPE
Peter Maydell88959192013-12-08 22:59:02 +0000124 220, // 54 0x36 0xdc E0,5C R GUI QZ_RMETA
125 219, // 55 0x37 0xdb E0,5B L GUI QZ_LMETA
bellard87f48e62005-10-30 18:24:49 +0000126 42, // 56 0x38 0x2a L SHFT QZ_LSHIFT
127 58, // 57 0x39 0x3a CAPS QZ_CAPSLOCK
128 56, // 58 0x3A 0x38 L ALT QZ_LALT
129 29, // 59 0x3B 0x1d L CTRL QZ_LCTRL
130 54, // 60 0x3C 0x36 R SHFT QZ_RSHIFT
131 184,// 61 0x3D 0xb8 E0,38 R ALT QZ_RALT
132 157,// 62 0x3E 0x9d E0,1D R CTRL QZ_RCTRL
133 0, // 63 0x3F Undefined
134 0, // 64 0x40 Undefined
135 0, // 65 0x41 Undefined
136 0, // 66 0x42 Undefined
137 55, // 67 0x43 0x37 KP * QZ_KP_MULTIPLY
138 0, // 68 0x44 Undefined
139 78, // 69 0x45 0x4e KP + QZ_KP_PLUS
140 0, // 70 0x46 Undefined
141 69, // 71 0x47 0x45 NUM QZ_NUMLOCK
142 0, // 72 0x48 Undefined
143 0, // 73 0x49 Undefined
144 0, // 74 0x4A Undefined
145 181,// 75 0x4B 0xb5 E0,35 KP / QZ_KP_DIVIDE
146 152,// 76 0x4C 0x9c E0,1C KP EN QZ_KP_ENTER
147 0, // 77 0x4D undefined
148 74, // 78 0x4E 0x4a KP - QZ_KP_MINUS
149 0, // 79 0x4F Undefined
150 0, // 80 0x50 Undefined
151 0, // 81 0x51 QZ_KP_EQUALS
152 82, // 82 0x52 0x52 KP 0 QZ_KP0
153 79, // 83 0x53 0x4f KP 1 QZ_KP1
154 80, // 84 0x54 0x50 KP 2 QZ_KP2
155 81, // 85 0x55 0x51 KP 3 QZ_KP3
156 75, // 86 0x56 0x4b KP 4 QZ_KP4
157 76, // 87 0x57 0x4c KP 5 QZ_KP5
158 77, // 88 0x58 0x4d KP 6 QZ_KP6
159 71, // 89 0x59 0x47 KP 7 QZ_KP7
160 0, // 90 0x5A Undefined
161 72, // 91 0x5B 0x48 KP 8 QZ_KP8
162 73, // 92 0x5C 0x49 KP 9 QZ_KP9
163 0, // 93 0x5D Undefined
164 0, // 94 0x5E Undefined
165 0, // 95 0x5F Undefined
166 63, // 96 0x60 0x3f F5 QZ_F5
167 64, // 97 0x61 0x40 F6 QZ_F6
168 65, // 98 0x62 0x41 F7 QZ_F7
169 61, // 99 0x63 0x3d F3 QZ_F3
170 66, // 100 0x64 0x42 F8 QZ_F8
171 67, // 101 0x65 0x43 F9 QZ_F9
172 0, // 102 0x66 Undefined
173 87, // 103 0x67 0x57 F11 QZ_F11
174 0, // 104 0x68 Undefined
thsc304f7e2008-01-22 23:25:15 +0000175 183,// 105 0x69 0xb7 QZ_PRINT
bellard87f48e62005-10-30 18:24:49 +0000176 0, // 106 0x6A Undefined
177 70, // 107 0x6B 0x46 SCROLL QZ_SCROLLOCK
178 0, // 108 0x6C Undefined
179 68, // 109 0x6D 0x44 F10 QZ_F10
180 0, // 110 0x6E Undefined
181 88, // 111 0x6F 0x58 F12 QZ_F12
182 0, // 112 0x70 Undefined
183 110,// 113 0x71 0x0 QZ_PAUSE
184 210,// 114 0x72 0xd2 E0,52 INSERT QZ_INSERT
185 199,// 115 0x73 0xc7 E0,47 HOME QZ_HOME
186 201,// 116 0x74 0xc9 E0,49 PG UP QZ_PAGEUP
187 211,// 117 0x75 0xd3 E0,53 DELETE QZ_DELETE
188 62, // 118 0x76 0x3e F4 QZ_F4
189 207,// 119 0x77 0xcf E0,4f END QZ_END
190 60, // 120 0x78 0x3c F2 QZ_F2
191 209,// 121 0x79 0xd1 E0,51 PG DN QZ_PAGEDOWN
192 59, // 122 0x7A 0x3b F1 QZ_F1
193 203,// 123 0x7B 0xcb e0,4B L ARROW QZ_LEFT
194 205,// 124 0x7C 0xcd e0,4D R ARROW QZ_RIGHT
195 208,// 125 0x7D 0xd0 E0,50 D ARROW QZ_DOWN
196 200,// 126 0x7E 0xc8 E0,48 U ARROW QZ_UP
197/* 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 */
ths3b46e622007-09-17 08:09:54 +0000198
Peter Maydell49b9bd42013-12-08 22:59:03 +0000199/* Additional 104 Key XP-Keyboard Scancodes from http://www.computer-engineering.org/ps2keyboard/scancodes1.html */
bellard87f48e62005-10-30 18:24:49 +0000200/*
ths3b46e622007-09-17 08:09:54 +0000201 221 // 0xdd e0,5d APPS
202 // E0,2A,E0,37 PRNT SCRN
203 // E1,1D,45,E1,9D,C5 PAUSE
204 83 // 0x53 0x53 KP .
205// ACPI Scan Codes
206 222 // 0xde E0, 5E Power
207 223 // 0xdf E0, 5F Sleep
208 227 // 0xe3 E0, 63 Wake
209// Windows Multimedia Scan Codes
210 153 // 0x99 E0, 19 Next Track
211 144 // 0x90 E0, 10 Previous Track
212 164 // 0xa4 E0, 24 Stop
213 162 // 0xa2 E0, 22 Play/Pause
214 160 // 0xa0 E0, 20 Mute
215 176 // 0xb0 E0, 30 Volume Up
ths5fafdf22007-09-16 21:08:06 +0000216 174 // 0xae E0, 2E Volume Down
ths3b46e622007-09-17 08:09:54 +0000217 237 // 0xed E0, 6D Media Select
218 236 // 0xec E0, 6C E-Mail
219 161 // 0xa1 E0, 21 Calculator
ths5fafdf22007-09-16 21:08:06 +0000220 235 // 0xeb E0, 6B My Computer
ths3b46e622007-09-17 08:09:54 +0000221 229 // 0xe5 E0, 65 WWW Search
222 178 // 0xb2 E0, 32 WWW Home
223 234 // 0xea E0, 6A WWW Back
ths5fafdf22007-09-16 21:08:06 +0000224 233 // 0xe9 E0, 69 WWW Forward
ths3b46e622007-09-17 08:09:54 +0000225 232 // 0xe8 E0, 68 WWW Stop
ths5fafdf22007-09-16 21:08:06 +0000226 231 // 0xe7 E0, 67 WWW Refresh
ths3b46e622007-09-17 08:09:54 +0000227 230 // 0xe6 E0, 66 WWW Favorites
bellard87f48e62005-10-30 18:24:49 +0000228*/
bellard5b0753e2005-03-01 21:37:28 +0000229};
230
Andreas Färber77047bb2009-12-13 00:55:53 +0100231static int cocoa_keycode_to_qemu(int keycode)
bellard5b0753e2005-03-01 21:37:28 +0000232{
Stefan Weil5d701922013-12-07 14:48:05 +0100233 if (ARRAY_SIZE(keymap) <= keycode) {
Peter Maydell01cc4e62013-12-08 22:59:04 +0000234 fprintf(stderr, "(cocoa) warning unknown keycode 0x%x\n", keycode);
bellard5b0753e2005-03-01 21:37:28 +0000235 return 0;
236 }
237 return keymap[keycode];
238}
239
thsc304f7e2008-01-22 23:25:15 +0000240
241
bellard5b0753e2005-03-01 21:37:28 +0000242/*
243 ------------------------------------------------------
thsc304f7e2008-01-22 23:25:15 +0000244 QemuCocoaView
bellard5b0753e2005-03-01 21:37:28 +0000245 ------------------------------------------------------
246*/
thsc304f7e2008-01-22 23:25:15 +0000247@interface QemuCocoaView : NSView
bellard5b0753e2005-03-01 21:37:28 +0000248{
thsc304f7e2008-01-22 23:25:15 +0000249 QEMUScreen screen;
250 NSWindow *fullScreenWindow;
251 float cx,cy,cw,ch,cdx,cdy;
252 CGDataProviderRef dataProviderRef;
253 int modifiers_state[256];
Peter Maydell49b9bd42013-12-08 22:59:03 +0000254 BOOL isMouseGrabbed;
thsc304f7e2008-01-22 23:25:15 +0000255 BOOL isFullscreen;
256 BOOL isAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100257 BOOL isMouseDeassociated;
thsc304f7e2008-01-22 23:25:15 +0000258}
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100259- (void) switchSurface:(DisplaySurface *)surface;
thsc304f7e2008-01-22 23:25:15 +0000260- (void) grabMouse;
261- (void) ungrabMouse;
262- (void) toggleFullScreen:(id)sender;
263- (void) handleEvent:(NSEvent *)event;
264- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100265/* The state surrounding mouse grabbing is potentially confusing.
266 * isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
267 * pointing device an absolute-position one?"], but is only updated on
268 * next refresh.
269 * isMouseGrabbed tracks whether GUI events are directed to the guest;
270 * it controls whether special keys like Cmd get sent to the guest,
271 * and whether we capture the mouse when in non-absolute mode.
272 * isMouseDeassociated tracks whether we've told MacOSX to disassociate
273 * the mouse and mouse cursor position by calling
274 * CGAssociateMouseAndMouseCursorPosition(FALSE)
275 * (which basically happens if we grab in non-absolute mode).
276 */
Peter Maydell49b9bd42013-12-08 22:59:03 +0000277- (BOOL) isMouseGrabbed;
thsc304f7e2008-01-22 23:25:15 +0000278- (BOOL) isAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100279- (BOOL) isMouseDeassociated;
thsc304f7e2008-01-22 23:25:15 +0000280- (float) cdx;
281- (float) cdy;
282- (QEMUScreen) gscreen;
283@end
ths3b46e622007-09-17 08:09:54 +0000284
Andreas Färber7fee1992011-06-09 20:53:32 +0200285QemuCocoaView *cocoaView;
286
thsc304f7e2008-01-22 23:25:15 +0000287@implementation QemuCocoaView
288- (id)initWithFrame:(NSRect)frameRect
289{
290 COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
ths3b46e622007-09-17 08:09:54 +0000291
thsc304f7e2008-01-22 23:25:15 +0000292 self = [super initWithFrame:frameRect];
293 if (self) {
pbrook95219892006-04-09 01:06:34 +0000294
thsc304f7e2008-01-22 23:25:15 +0000295 screen.bitsPerComponent = 8;
296 screen.bitsPerPixel = 32;
297 screen.width = frameRect.size.width;
298 screen.height = frameRect.size.height;
bellard7c206a72005-12-18 19:18:45 +0000299
thsc304f7e2008-01-22 23:25:15 +0000300 }
301 return self;
302}
bellard7c206a72005-12-18 19:18:45 +0000303
thsc304f7e2008-01-22 23:25:15 +0000304- (void) dealloc
305{
306 COCOA_DEBUG("QemuCocoaView: dealloc\n");
bellard7c206a72005-12-18 19:18:45 +0000307
thsc304f7e2008-01-22 23:25:15 +0000308 if (dataProviderRef)
309 CGDataProviderRelease(dataProviderRef);
ths3b46e622007-09-17 08:09:54 +0000310
thsc304f7e2008-01-22 23:25:15 +0000311 [super dealloc];
312}
bellard5cbfcd02006-06-14 15:53:24 +0000313
Andreas Färberd50f71d2009-12-13 02:03:33 +0100314- (BOOL) isOpaque
315{
316 return YES;
317}
318
Peter Maydell5dd45be2014-06-23 10:35:23 +0100319- (BOOL) screenContainsPoint:(NSPoint) p
320{
321 return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
322}
323
Peter Maydell13aefd32014-06-23 10:35:25 +0100324- (void) hideCursor
325{
326 if (!cursor_hide) {
327 return;
328 }
329 [NSCursor hide];
330}
331
332- (void) unhideCursor
333{
334 if (!cursor_hide) {
335 return;
336 }
337 [NSCursor unhide];
338}
339
thsc304f7e2008-01-22 23:25:15 +0000340- (void) drawRect:(NSRect) rect
341{
342 COCOA_DEBUG("QemuCocoaView: drawRect\n");
bellard5cbfcd02006-06-14 15:53:24 +0000343
thsc304f7e2008-01-22 23:25:15 +0000344 // get CoreGraphic context
345 CGContextRef viewContextRef = [[NSGraphicsContext currentContext] graphicsPort];
346 CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
347 CGContextSetShouldAntialias (viewContextRef, NO);
ths3b46e622007-09-17 08:09:54 +0000348
thsc304f7e2008-01-22 23:25:15 +0000349 // draw screen bitmap directly to Core Graphics context
Peter Maydell7d270b12013-12-24 02:51:47 +0000350 if (!dataProviderRef) {
351 // Draw request before any guest device has set up a framebuffer:
352 // just draw an opaque black rectangle
353 CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
354 CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
355 } else {
thsc304f7e2008-01-22 23:25:15 +0000356 CGImageRef imageRef = CGImageCreate(
357 screen.width, //width
358 screen.height, //height
359 screen.bitsPerComponent, //bitsPerComponent
360 screen.bitsPerPixel, //bitsPerPixel
aliguori9794f742009-03-04 19:25:22 +0000361 (screen.width * (screen.bitsPerComponent/2)), //bytesPerRow
Andreas Färber04afa4a2009-12-13 00:58:21 +0100362#ifdef __LITTLE_ENDIAN__
thsc304f7e2008-01-22 23:25:15 +0000363 CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4
aliguori9794f742009-03-04 19:25:22 +0000364 kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
thsc304f7e2008-01-22 23:25:15 +0000365#else
366 CGColorSpaceCreateDeviceRGB(), //colorspace for OS X < 10.4 (actually ppc)
367 kCGImageAlphaNoneSkipFirst, //bitmapInfo
368#endif
369 dataProviderRef, //provider
370 NULL, //decode
371 0, //interpolate
372 kCGRenderingIntentDefault //intent
373 );
Peter Maydellb63901d2015-05-19 09:11:17 +0100374 // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
375 const NSRect *rectList;
Peter Maydellb63901d2015-05-19 09:11:17 +0100376 NSInteger rectCount;
Peter Maydellb63901d2015-05-19 09:11:17 +0100377 int i;
378 CGImageRef clipImageRef;
379 CGRect clipRect;
ths3b46e622007-09-17 08:09:54 +0000380
Peter Maydellb63901d2015-05-19 09:11:17 +0100381 [self getRectsBeingDrawn:&rectList count:&rectCount];
382 for (i = 0; i < rectCount; i++) {
383 clipRect.origin.x = rectList[i].origin.x / cdx;
384 clipRect.origin.y = (float)screen.height - (rectList[i].origin.y + rectList[i].size.height) / cdy;
385 clipRect.size.width = rectList[i].size.width / cdx;
386 clipRect.size.height = rectList[i].size.height / cdy;
387 clipImageRef = CGImageCreateWithImageInRect(
388 imageRef,
389 clipRect
390 );
391 CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
392 CGImageRelease (clipImageRef);
bellard5b0753e2005-03-01 21:37:28 +0000393 }
thsc304f7e2008-01-22 23:25:15 +0000394 CGImageRelease (imageRef);
bellard5b0753e2005-03-01 21:37:28 +0000395 }
396}
397
thsc304f7e2008-01-22 23:25:15 +0000398- (void) setContentDimensions
bellard5b0753e2005-03-01 21:37:28 +0000399{
thsc304f7e2008-01-22 23:25:15 +0000400 COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
ths3b46e622007-09-17 08:09:54 +0000401
thsc304f7e2008-01-22 23:25:15 +0000402 if (isFullscreen) {
403 cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
404 cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100405
406 /* stretches video, but keeps same aspect ratio */
407 if (stretch_video == true) {
408 /* use smallest stretch value - prevents clipping on sides */
409 if (MIN(cdx, cdy) == cdx) {
410 cdy = cdx;
411 } else {
412 cdx = cdy;
413 }
414 } else { /* No stretching */
415 cdx = cdy = 1;
416 }
thsc304f7e2008-01-22 23:25:15 +0000417 cw = screen.width * cdx;
418 ch = screen.height * cdy;
419 cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
420 cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
421 } else {
422 cx = 0;
423 cy = 0;
424 cw = screen.width;
425 ch = screen.height;
426 cdx = 1.0;
427 cdy = 1.0;
428 }
bellard5b0753e2005-03-01 21:37:28 +0000429}
430
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100431- (void) switchSurface:(DisplaySurface *)surface
thsc304f7e2008-01-22 23:25:15 +0000432{
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100433 COCOA_DEBUG("QemuCocoaView: switchSurface\n");
thsc304f7e2008-01-22 23:25:15 +0000434
Peter Maydell8510d912013-03-18 20:28:21 +0000435 int w = surface_width(surface);
436 int h = surface_height(surface);
Peter Maydell381600d2014-06-23 10:35:22 +0100437 /* cdx == 0 means this is our very first surface, in which case we need
438 * to recalculate the content dimensions even if it happens to be the size
439 * of the initial empty window.
440 */
441 bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
Peter Maydelld3345a02013-12-24 02:51:46 +0000442
443 int oldh = screen.height;
444 if (isResize) {
445 // Resize before we trigger the redraw, or we'll redraw at the wrong size
446 COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
447 screen.width = w;
448 screen.height = h;
449 [self setContentDimensions];
450 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
451 }
Peter Maydell8510d912013-03-18 20:28:21 +0000452
thsc304f7e2008-01-22 23:25:15 +0000453 // update screenBuffer
454 if (dataProviderRef)
455 CGDataProviderRelease(dataProviderRef);
thsc304f7e2008-01-22 23:25:15 +0000456
aliguori9794f742009-03-04 19:25:22 +0000457 //sync host window color space with guests
Peter Maydell49060c22013-12-24 11:54:12 +0000458 screen.bitsPerPixel = surface_bits_per_pixel(surface);
459 screen.bitsPerComponent = surface_bytes_per_pixel(surface) * 2;
thsc304f7e2008-01-22 23:25:15 +0000460
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100461 dataProviderRef = CGDataProviderCreateWithData(NULL, surface_data(surface), w * 4 * h, NULL);
thsc304f7e2008-01-22 23:25:15 +0000462
463 // update windows
464 if (isFullscreen) {
465 [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
Peter Maydelld3345a02013-12-24 02:51:46 +0000466 [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:NO animate:NO];
thsc304f7e2008-01-22 23:25:15 +0000467 } else {
468 if (qemu_name)
469 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
Peter Maydelld3345a02013-12-24 02:51:46 +0000470 [normalWindow setFrame:NSMakeRect([normalWindow frame].origin.x, [normalWindow frame].origin.y - h + oldh, w, h + [normalWindow frame].size.height - oldh) display:YES animate:NO];
thsc304f7e2008-01-22 23:25:15 +0000471 }
Peter Maydelld3345a02013-12-24 02:51:46 +0000472
473 if (isResize) {
474 [normalWindow center];
475 }
thsc304f7e2008-01-22 23:25:15 +0000476}
477
478- (void) toggleFullScreen:(id)sender
479{
480 COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
481
482 if (isFullscreen) { // switch from fullscreen to desktop
483 isFullscreen = FALSE;
484 [self ungrabMouse];
485 [self setContentDimensions];
thsc304f7e2008-01-22 23:25:15 +0000486 if ([NSView respondsToSelector:@selector(exitFullScreenModeWithOptions:)]) { // test if "exitFullScreenModeWithOptions" is supported on host at runtime
487 [self exitFullScreenModeWithOptions:nil];
488 } else {
thsc304f7e2008-01-22 23:25:15 +0000489 [fullScreenWindow close];
490 [normalWindow setContentView: self];
491 [normalWindow makeKeyAndOrderFront: self];
492 [NSMenu setMenuBarVisible:YES];
thsc304f7e2008-01-22 23:25:15 +0000493 }
thsc304f7e2008-01-22 23:25:15 +0000494 } else { // switch from desktop to fullscreen
495 isFullscreen = TRUE;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100496 [normalWindow orderOut: nil]; /* Hide the window */
thsc304f7e2008-01-22 23:25:15 +0000497 [self grabMouse];
498 [self setContentDimensions];
thsc304f7e2008-01-22 23:25:15 +0000499 if ([NSView respondsToSelector:@selector(enterFullScreenMode:withOptions:)]) { // test if "enterFullScreenMode:withOptions" is supported on host at runtime
500 [self enterFullScreenMode:[NSScreen mainScreen] withOptions:[NSDictionary dictionaryWithObjectsAndKeys:
501 [NSNumber numberWithBool:NO], NSFullScreenModeAllScreens,
502 [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], kCGDisplayModeIsStretched, nil], NSFullScreenModeSetting,
503 nil]];
504 } else {
thsc304f7e2008-01-22 23:25:15 +0000505 [NSMenu setMenuBarVisible:NO];
506 fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
507 styleMask:NSBorderlessWindowMask
508 backing:NSBackingStoreBuffered
509 defer:NO];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100510 [fullScreenWindow setAcceptsMouseMovedEvents: YES];
thsc304f7e2008-01-22 23:25:15 +0000511 [fullScreenWindow setHasShadow:NO];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100512 [fullScreenWindow setBackgroundColor: [NSColor blackColor]];
513 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
514 [[fullScreenWindow contentView] addSubview: self];
thsc304f7e2008-01-22 23:25:15 +0000515 [fullScreenWindow makeKeyAndOrderFront:self];
thsc304f7e2008-01-22 23:25:15 +0000516 }
thsc304f7e2008-01-22 23:25:15 +0000517 }
518}
519
520- (void) handleEvent:(NSEvent *)event
521{
522 COCOA_DEBUG("QemuCocoaView: handleEvent\n");
523
524 int buttons = 0;
525 int keycode;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100526 bool mouse_event = false;
thsc304f7e2008-01-22 23:25:15 +0000527 NSPoint p = [event locationInWindow];
528
529 switch ([event type]) {
530 case NSFlagsChanged:
531 keycode = cocoa_keycode_to_qemu([event keyCode]);
Peter Maydell88959192013-12-08 22:59:02 +0000532
Peter Maydell49b9bd42013-12-08 22:59:03 +0000533 if ((keycode == 219 || keycode == 220) && !isMouseGrabbed) {
Peter Maydell88959192013-12-08 22:59:02 +0000534 /* Don't pass command key changes to guest unless mouse is grabbed */
535 keycode = 0;
536 }
537
thsc304f7e2008-01-22 23:25:15 +0000538 if (keycode) {
539 if (keycode == 58 || keycode == 69) { // emulate caps lock and num lock keydown and keyup
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100540 qemu_input_event_send_key_number(dcl->con, keycode, true);
541 qemu_input_event_send_key_number(dcl->con, keycode, false);
Peter Maydell68c0aa62013-04-17 09:16:35 +0000542 } else if (qemu_console_is_graphic(NULL)) {
thsc304f7e2008-01-22 23:25:15 +0000543 if (modifiers_state[keycode] == 0) { // keydown
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100544 qemu_input_event_send_key_number(dcl->con, keycode, true);
thsc304f7e2008-01-22 23:25:15 +0000545 modifiers_state[keycode] = 1;
546 } else { // keyup
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100547 qemu_input_event_send_key_number(dcl->con, keycode, false);
thsc304f7e2008-01-22 23:25:15 +0000548 modifiers_state[keycode] = 0;
549 }
550 }
551 }
552
553 // release Mouse grab when pressing ctrl+alt
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100554 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
thsc304f7e2008-01-22 23:25:15 +0000555 [self ungrabMouse];
556 }
557 break;
558 case NSKeyDown:
Peter Maydell88959192013-12-08 22:59:02 +0000559 keycode = cocoa_keycode_to_qemu([event keyCode]);
thsc304f7e2008-01-22 23:25:15 +0000560
Peter Maydell88959192013-12-08 22:59:02 +0000561 // forward command key combos to the host UI unless the mouse is grabbed
Peter Maydell49b9bd42013-12-08 22:59:03 +0000562 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
thsc304f7e2008-01-22 23:25:15 +0000563 [NSApp sendEvent:event];
564 return;
565 }
566
567 // default
thsc304f7e2008-01-22 23:25:15 +0000568
569 // handle control + alt Key Combos (ctrl+alt is reserved for QEMU)
570 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
571 switch (keycode) {
572
573 // enable graphic console
574 case 0x02 ... 0x0a: // '1' to '9' keys
575 console_select(keycode - 0x02);
576 break;
577 }
578
579 // handle keys for graphic console
Peter Maydell68c0aa62013-04-17 09:16:35 +0000580 } else if (qemu_console_is_graphic(NULL)) {
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100581 qemu_input_event_send_key_number(dcl->con, keycode, true);
thsc304f7e2008-01-22 23:25:15 +0000582
583 // handlekeys for Monitor
584 } else {
585 int keysym = 0;
586 switch([event keyCode]) {
587 case 115:
588 keysym = QEMU_KEY_HOME;
589 break;
590 case 117:
591 keysym = QEMU_KEY_DELETE;
592 break;
593 case 119:
594 keysym = QEMU_KEY_END;
595 break;
596 case 123:
597 keysym = QEMU_KEY_LEFT;
598 break;
599 case 124:
600 keysym = QEMU_KEY_RIGHT;
601 break;
602 case 125:
603 keysym = QEMU_KEY_DOWN;
604 break;
605 case 126:
606 keysym = QEMU_KEY_UP;
607 break;
608 default:
609 {
610 NSString *ks = [event characters];
611 if ([ks length] > 0)
612 keysym = [ks characterAtIndex:0];
613 }
614 }
615 if (keysym)
616 kbd_put_keysym(keysym);
617 }
618 break;
619 case NSKeyUp:
620 keycode = cocoa_keycode_to_qemu([event keyCode]);
Peter Maydell88959192013-12-08 22:59:02 +0000621
622 // don't pass the guest a spurious key-up if we treated this
623 // command-key combo as a host UI action
Peter Maydell49b9bd42013-12-08 22:59:03 +0000624 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
Peter Maydell88959192013-12-08 22:59:02 +0000625 return;
626 }
627
Peter Maydell68c0aa62013-04-17 09:16:35 +0000628 if (qemu_console_is_graphic(NULL)) {
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100629 qemu_input_event_send_key_number(dcl->con, keycode, false);
thsc304f7e2008-01-22 23:25:15 +0000630 }
631 break;
632 case NSMouseMoved:
633 if (isAbsoluteEnabled) {
Peter Maydell5dd45be2014-06-23 10:35:23 +0100634 if (![self screenContainsPoint:p] || ![[self window] isKeyWindow]) {
Peter Maydellf61c3872014-06-23 10:35:24 +0100635 if (isMouseGrabbed) {
636 [self ungrabMouse];
thsc304f7e2008-01-22 23:25:15 +0000637 }
638 } else {
Peter Maydellf61c3872014-06-23 10:35:24 +0100639 if (!isMouseGrabbed) {
640 [self grabMouse];
thsc304f7e2008-01-22 23:25:15 +0000641 }
642 }
643 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100644 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000645 break;
646 case NSLeftMouseDown:
647 if ([event modifierFlags] & NSCommandKeyMask) {
648 buttons |= MOUSE_EVENT_RBUTTON;
649 } else {
650 buttons |= MOUSE_EVENT_LBUTTON;
651 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100652 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000653 break;
654 case NSRightMouseDown:
655 buttons |= MOUSE_EVENT_RBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100656 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000657 break;
658 case NSOtherMouseDown:
659 buttons |= MOUSE_EVENT_MBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100660 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000661 break;
662 case NSLeftMouseDragged:
663 if ([event modifierFlags] & NSCommandKeyMask) {
664 buttons |= MOUSE_EVENT_RBUTTON;
665 } else {
666 buttons |= MOUSE_EVENT_LBUTTON;
667 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100668 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000669 break;
670 case NSRightMouseDragged:
671 buttons |= MOUSE_EVENT_RBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100672 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000673 break;
674 case NSOtherMouseDragged:
675 buttons |= MOUSE_EVENT_MBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100676 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000677 break;
678 case NSLeftMouseUp:
Peter Maydellf61c3872014-06-23 10:35:24 +0100679 mouse_event = true;
680 if (!isMouseGrabbed && [self screenContainsPoint:p]) {
681 [self grabMouse];
thsc304f7e2008-01-22 23:25:15 +0000682 }
683 break;
684 case NSRightMouseUp:
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100685 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000686 break;
687 case NSOtherMouseUp:
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100688 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000689 break;
690 case NSScrollWheel:
Peter Maydellf61c3872014-06-23 10:35:24 +0100691 if (isMouseGrabbed) {
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100692 buttons |= ([event deltaY] < 0) ?
693 MOUSE_EVENT_WHEELUP : MOUSE_EVENT_WHEELDN;
thsc304f7e2008-01-22 23:25:15 +0000694 }
Peter Maydellf61c3872014-06-23 10:35:24 +0100695 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000696 break;
697 default:
698 [NSApp sendEvent:event];
699 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100700
701 if (mouse_event) {
702 if (last_buttons != buttons) {
703 static uint32_t bmap[INPUT_BUTTON_MAX] = {
704 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
705 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
706 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
707 [INPUT_BUTTON_WHEEL_UP] = MOUSE_EVENT_WHEELUP,
708 [INPUT_BUTTON_WHEEL_DOWN] = MOUSE_EVENT_WHEELDN,
709 };
710 qemu_input_update_buttons(dcl->con, bmap, last_buttons, buttons);
711 last_buttons = buttons;
712 }
Peter Maydellf61c3872014-06-23 10:35:24 +0100713 if (isMouseGrabbed) {
714 if (isAbsoluteEnabled) {
715 /* Note that the origin for Cocoa mouse coords is bottom left, not top left.
716 * The check on screenContainsPoint is to avoid sending out of range values for
717 * clicks in the titlebar.
718 */
719 if ([self screenContainsPoint:p]) {
720 qemu_input_queue_abs(dcl->con, INPUT_AXIS_X, p.x, screen.width);
721 qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, screen.height - p.y, screen.height);
722 }
723 } else {
724 qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, (int)[event deltaX]);
725 qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, (int)[event deltaY]);
726 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100727 } else {
728 [NSApp sendEvent:event];
729 }
730 qemu_input_event_sync();
731 }
thsc304f7e2008-01-22 23:25:15 +0000732}
733
734- (void) grabMouse
735{
736 COCOA_DEBUG("QemuCocoaView: grabMouse\n");
737
738 if (!isFullscreen) {
739 if (qemu_name)
740 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt to release Mouse)", qemu_name]];
741 else
742 [normalWindow setTitle:@"QEMU - (Press ctrl + alt to release Mouse)"];
743 }
Peter Maydell13aefd32014-06-23 10:35:25 +0100744 [self hideCursor];
Peter Maydellf61c3872014-06-23 10:35:24 +0100745 if (!isAbsoluteEnabled) {
746 isMouseDeassociated = TRUE;
747 CGAssociateMouseAndMouseCursorPosition(FALSE);
748 }
Peter Maydell49b9bd42013-12-08 22:59:03 +0000749 isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
thsc304f7e2008-01-22 23:25:15 +0000750}
751
752- (void) ungrabMouse
753{
754 COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
755
756 if (!isFullscreen) {
757 if (qemu_name)
758 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
759 else
760 [normalWindow setTitle:@"QEMU"];
761 }
Peter Maydell13aefd32014-06-23 10:35:25 +0100762 [self unhideCursor];
Peter Maydellf61c3872014-06-23 10:35:24 +0100763 if (isMouseDeassociated) {
764 CGAssociateMouseAndMouseCursorPosition(TRUE);
765 isMouseDeassociated = FALSE;
766 }
Peter Maydell49b9bd42013-12-08 22:59:03 +0000767 isMouseGrabbed = FALSE;
thsc304f7e2008-01-22 23:25:15 +0000768}
769
770- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {isAbsoluteEnabled = tIsAbsoluteEnabled;}
Peter Maydell49b9bd42013-12-08 22:59:03 +0000771- (BOOL) isMouseGrabbed {return isMouseGrabbed;}
thsc304f7e2008-01-22 23:25:15 +0000772- (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
Peter Maydellf61c3872014-06-23 10:35:24 +0100773- (BOOL) isMouseDeassociated {return isMouseDeassociated;}
thsc304f7e2008-01-22 23:25:15 +0000774- (float) cdx {return cdx;}
775- (float) cdy {return cdy;}
776- (QEMUScreen) gscreen {return screen;}
bellard5b0753e2005-03-01 21:37:28 +0000777@end
778
779
thsc304f7e2008-01-22 23:25:15 +0000780
bellard5b0753e2005-03-01 21:37:28 +0000781/*
782 ------------------------------------------------------
thsc304f7e2008-01-22 23:25:15 +0000783 QemuCocoaAppController
bellard5b0753e2005-03-01 21:37:28 +0000784 ------------------------------------------------------
785*/
thsc304f7e2008-01-22 23:25:15 +0000786@interface QemuCocoaAppController : NSObject
bellard5b0753e2005-03-01 21:37:28 +0000787{
788}
bellard5b0753e2005-03-01 21:37:28 +0000789- (void)startEmulationWithArgc:(int)argc argv:(char**)argv;
Peter Maydellde1aade2015-05-19 09:11:18 +0100790- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100791- (void)doToggleFullScreen:(id)sender;
thsc304f7e2008-01-22 23:25:15 +0000792- (void)toggleFullScreen:(id)sender;
793- (void)showQEMUDoc:(id)sender;
794- (void)showQEMUTec:(id)sender;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100795- (void)zoomToFit:(id) sender;
bellard5b0753e2005-03-01 21:37:28 +0000796@end
797
thsc304f7e2008-01-22 23:25:15 +0000798@implementation QemuCocoaAppController
799- (id) init
800{
801 COCOA_DEBUG("QemuCocoaAppController: init\n");
802
803 self = [super init];
804 if (self) {
805
806 // create a view and add it to the window
807 cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
808 if(!cocoaView) {
809 fprintf(stderr, "(cocoa) can't create a view\n");
810 exit(1);
811 }
812
813 // create a window
814 normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
815 styleMask:NSTitledWindowMask|NSMiniaturizableWindowMask|NSClosableWindowMask
816 backing:NSBackingStoreBuffered defer:NO];
817 if(!normalWindow) {
818 fprintf(stderr, "(cocoa) can't create window\n");
819 exit(1);
820 }
821 [normalWindow setAcceptsMouseMovedEvents:YES];
822 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU"]];
823 [normalWindow setContentView:cocoaView];
Andreas Färber561ef252009-12-13 03:06:20 +0100824 [normalWindow useOptimizedDrawing:YES];
thsc304f7e2008-01-22 23:25:15 +0000825 [normalWindow makeKeyAndOrderFront:self];
Peter Maydell49060c22013-12-24 11:54:12 +0000826 [normalWindow center];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100827 stretch_video = false;
thsc304f7e2008-01-22 23:25:15 +0000828 }
829 return self;
830}
831
832- (void) dealloc
833{
834 COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
835
836 if (cocoaView)
837 [cocoaView release];
838 [super dealloc];
839}
840
bellard5b0753e2005-03-01 21:37:28 +0000841- (void)applicationDidFinishLaunching: (NSNotification *) note
842{
thsc304f7e2008-01-22 23:25:15 +0000843 COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
bellard5a246932005-04-07 20:35:06 +0000844
Peter Maydell49b9bd42013-12-08 22:59:03 +0000845 // Display an open dialog box if no arguments were passed or
thsc304f7e2008-01-22 23:25:15 +0000846 // if qemu was launched from the finder ( the Finder passes "-psn" )
847 if( gArgc <= 1 || strncmp ((char *)gArgv[1], "-psn", 4) == 0) {
bellard5b0753e2005-03-01 21:37:28 +0000848 NSOpenPanel *op = [[NSOpenPanel alloc] init];
bellard5b0753e2005-03-01 21:37:28 +0000849 [op setPrompt:@"Boot image"];
bellard5b0753e2005-03-01 21:37:28 +0000850 [op setMessage:@"Select the disk image you want to boot.\n\nHit the \"Cancel\" button to quit"];
Peter Maydell2ba9de62013-04-22 10:29:49 +0000851 NSArray *filetypes = [NSArray arrayWithObjects:@"img", @"iso", @"dmg",
Stefan Hajnoczi550830f2014-09-16 15:24:24 +0100852 @"qcow", @"qcow2", @"cloop", @"vmdk", nil];
Peter Maydell2ba9de62013-04-22 10:29:49 +0000853#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
854 [op setAllowedFileTypes:filetypes];
855 [op beginSheetModalForWindow:normalWindow
856 completionHandler:^(NSInteger returnCode)
857 { [self openPanelDidEnd:op
858 returnCode:returnCode contextInfo:NULL ]; } ];
859#else
860 // Compatibility code for pre-10.6, using deprecated method
861 [op beginSheetForDirectory:nil file:nil types:filetypes
thsc304f7e2008-01-22 23:25:15 +0000862 modalForWindow:normalWindow modalDelegate:self
bellard5b0753e2005-03-01 21:37:28 +0000863 didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:) contextInfo:NULL];
Peter Maydell2ba9de62013-04-22 10:29:49 +0000864#endif
thsc304f7e2008-01-22 23:25:15 +0000865 } else {
Stefan Weil5cbdb3a2012-04-07 09:23:39 +0200866 // or launch QEMU, with the global args
thsc304f7e2008-01-22 23:25:15 +0000867 [self startEmulationWithArgc:gArgc argv:(char **)gArgv];
bellard5a246932005-04-07 20:35:06 +0000868 }
bellard5b0753e2005-03-01 21:37:28 +0000869}
870
871- (void)applicationWillTerminate:(NSNotification *)aNotification
872{
thsc304f7e2008-01-22 23:25:15 +0000873 COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
874
bellard5b0753e2005-03-01 21:37:28 +0000875 qemu_system_shutdown_request();
bellard5b0753e2005-03-01 21:37:28 +0000876 exit(0);
877}
878
Andreas Färber41ea49b2009-12-14 22:13:27 +0100879- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
880{
881 return YES;
882}
883
thsc304f7e2008-01-22 23:25:15 +0000884- (void)startEmulationWithArgc:(int)argc argv:(char**)argv
885{
886 COCOA_DEBUG("QemuCocoaAppController: startEmulationWithArgc\n");
887
888 int status;
Andreas Färber3bbbee12011-05-29 19:42:51 +0200889 status = qemu_main(argc, argv, *_NSGetEnviron());
thsc304f7e2008-01-22 23:25:15 +0000890 exit(status);
891}
892
Peter Maydellde1aade2015-05-19 09:11:18 +0100893- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo
bellard5b0753e2005-03-01 21:37:28 +0000894{
thsc304f7e2008-01-22 23:25:15 +0000895 COCOA_DEBUG("QemuCocoaAppController: openPanelDidEnd\n");
ths3b46e622007-09-17 08:09:54 +0000896
thsc304f7e2008-01-22 23:25:15 +0000897 if(returnCode == NSCancelButton) {
898 exit(0);
899 } else if(returnCode == NSOKButton) {
Peter Maydell8bb3f1e2013-04-22 10:29:48 +0000900 char *img = (char*)[ [ [ sheet URL ] path ] cStringUsingEncoding:NSASCIIStringEncoding];
ths3b46e622007-09-17 08:09:54 +0000901
Peter Maydell98db4292013-12-08 22:59:06 +0000902 char **argv = g_new(char *, 4);
ths3b46e622007-09-17 08:09:54 +0000903
Andreas Färber13766eb2011-10-30 23:19:54 +0100904 [sheet close];
905
Peter Maydell98db4292013-12-08 22:59:06 +0000906 argv[0] = g_strdup(gArgv[0]);
907 argv[1] = g_strdup("-hda");
908 argv[2] = g_strdup(img);
909 argv[3] = NULL;
ths3b46e622007-09-17 08:09:54 +0000910
Peter Maydell98db4292013-12-08 22:59:06 +0000911 // printf("Using argc %d argv %s -hda %s\n", 3, gArgv[0], img);
ths3b46e622007-09-17 08:09:54 +0000912
bellard5b0753e2005-03-01 21:37:28 +0000913 [self startEmulationWithArgc:3 argv:(char**)argv];
914 }
915}
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100916
917/* We abstract the method called by the Enter Fullscreen menu item
918 * because Mac OS 10.7 and higher disables it. This is because of the
919 * menu item's old selector's name toggleFullScreen:
920 */
921- (void) doToggleFullScreen:(id)sender
922{
923 [self toggleFullScreen:(id)sender];
924}
925
thsc304f7e2008-01-22 23:25:15 +0000926- (void)toggleFullScreen:(id)sender
bellard5b0753e2005-03-01 21:37:28 +0000927{
thsc304f7e2008-01-22 23:25:15 +0000928 COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
929
930 [cocoaView toggleFullScreen:sender];
931}
932
933- (void)showQEMUDoc:(id)sender
934{
935 COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
936
937 [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-doc.html",
938 [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
939}
940
941- (void)showQEMUTec:(id)sender
942{
943 COCOA_DEBUG("QemuCocoaAppController: showQEMUTec\n");
944
945 [[NSWorkspace sharedWorkspace] openFile:[NSString stringWithFormat:@"%@/../doc/qemu/qemu-tech.html",
946 [[NSBundle mainBundle] resourcePath]] withApplication:@"Help Viewer"];
bellard5b0753e2005-03-01 21:37:28 +0000947}
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100948
949/* Stretches video to fit host monitor size */
950- (void)zoomToFit:(id) sender
951{
952 stretch_video = !stretch_video;
953 if (stretch_video == true) {
954 [sender setState: NSOnState];
955 } else {
956 [sender setState: NSOffState];
957 }
958}
bellard5b0753e2005-03-01 21:37:28 +0000959@end
960
bellard5b0753e2005-03-01 21:37:28 +0000961
thsc304f7e2008-01-22 23:25:15 +0000962
thsc304f7e2008-01-22 23:25:15 +0000963int main (int argc, const char * argv[]) {
ths3b46e622007-09-17 08:09:54 +0000964
thsc304f7e2008-01-22 23:25:15 +0000965 gArgc = argc;
966 gArgv = (char **)argv;
Andreas Färberf4918802009-12-13 02:11:44 +0100967 int i;
968
969 /* In case we don't need to display a window, let's not do that */
970 for (i = 1; i < argc; i++) {
Tristan Gingolde4ebcc12011-03-15 14:18:22 +0100971 const char *opt = argv[i];
972
973 if (opt[0] == '-') {
974 /* Treat --foo the same as -foo. */
975 if (opt[1] == '-') {
976 opt++;
977 }
Alexandre Raymond98514842011-05-29 18:22:49 -0400978 if (!strcmp(opt, "-h") || !strcmp(opt, "-help") ||
979 !strcmp(opt, "-vnc") ||
Tristan Gingolde4ebcc12011-03-15 14:18:22 +0100980 !strcmp(opt, "-nographic") ||
981 !strcmp(opt, "-version") ||
Andreas Färber60b46aa2012-05-28 03:18:31 +0200982 !strcmp(opt, "-curses") ||
983 !strcmp(opt, "-qtest")) {
Andreas Färber3bbbee12011-05-29 19:42:51 +0200984 return qemu_main(gArgc, gArgv, *_NSGetEnviron());
Tristan Gingolde4ebcc12011-03-15 14:18:22 +0100985 }
Andreas Färberf4918802009-12-13 02:11:44 +0100986 }
987 }
ths3b46e622007-09-17 08:09:54 +0000988
thsc304f7e2008-01-22 23:25:15 +0000989 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
ths3b46e622007-09-17 08:09:54 +0000990
Peter Maydell42a5dfe2013-04-22 10:29:47 +0000991 // Pull this console process up to being a fully-fledged graphical
992 // app with a menubar and Dock icon
993 ProcessSerialNumber psn = { 0, kCurrentProcess };
994 TransformProcessType(&psn, kProcessTransformToForegroundApplication);
995
996 [NSApplication sharedApplication];
ths3b46e622007-09-17 08:09:54 +0000997
thsc304f7e2008-01-22 23:25:15 +0000998 // Add menus
999 NSMenu *menu;
1000 NSMenuItem *menuItem;
1001
bellard5b0753e2005-03-01 21:37:28 +00001002 [NSApp setMainMenu:[[NSMenu alloc] init]];
bellard5b0753e2005-03-01 21:37:28 +00001003
thsc304f7e2008-01-22 23:25:15 +00001004 // Application menu
1005 menu = [[NSMenu alloc] initWithTitle:@""];
1006 [menu addItemWithTitle:@"About QEMU" action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; // About QEMU
1007 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1008 [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
1009 menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
1010 [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)];
1011 [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
1012 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1013 [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
1014 menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
1015 [menuItem setSubmenu:menu];
1016 [[NSApp mainMenu] addItem:menuItem];
1017 [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
ths3b46e622007-09-17 08:09:54 +00001018
thsc304f7e2008-01-22 23:25:15 +00001019 // View menu
1020 menu = [[NSMenu alloc] initWithTitle:@"View"];
Programmingkid5d1b2ee2015-05-19 09:11:17 +01001021 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
1022 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
thsc304f7e2008-01-22 23:25:15 +00001023 menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
1024 [menuItem setSubmenu:menu];
1025 [[NSApp mainMenu] addItem:menuItem];
1026
1027 // Window menu
1028 menu = [[NSMenu alloc] initWithTitle:@"Window"];
1029 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
1030 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1031 [menuItem setSubmenu:menu];
1032 [[NSApp mainMenu] addItem:menuItem];
1033 [NSApp setWindowsMenu:menu];
1034
1035 // Help menu
1036 menu = [[NSMenu alloc] initWithTitle:@"Help"];
1037 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
1038 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Technology" action:@selector(showQEMUTec:) keyEquivalent:@""] autorelease]]; // QEMU Help
1039 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1040 [menuItem setSubmenu:menu];
1041 [[NSApp mainMenu] addItem:menuItem];
1042
1043 // Create an Application controller
1044 QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
1045 [NSApp setDelegate:appController];
1046
1047 // Start the main event loop
bellard5b0753e2005-03-01 21:37:28 +00001048 [NSApp run];
ths3b46e622007-09-17 08:09:54 +00001049
thsc304f7e2008-01-22 23:25:15 +00001050 [appController release];
bellard5b0753e2005-03-01 21:37:28 +00001051 [pool release];
bellardcae41b12006-05-22 21:25:04 +00001052
bellard5b0753e2005-03-01 21:37:28 +00001053 return 0;
1054}
thsc304f7e2008-01-22 23:25:15 +00001055
1056
1057
1058#pragma mark qemu
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001059static void cocoa_update(DisplayChangeListener *dcl,
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001060 int x, int y, int w, int h)
thsc304f7e2008-01-22 23:25:15 +00001061{
Peter Maydell6e657e62013-04-22 10:29:46 +00001062 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1063
thsc304f7e2008-01-22 23:25:15 +00001064 COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
1065
1066 NSRect rect;
1067 if ([cocoaView cdx] == 1.0) {
1068 rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
1069 } else {
1070 rect = NSMakeRect(
1071 x * [cocoaView cdx],
1072 ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
1073 w * [cocoaView cdx],
1074 h * [cocoaView cdy]);
1075 }
Andreas Färber17ccbc22009-12-13 02:08:58 +01001076 [cocoaView setNeedsDisplayInRect:rect];
Peter Maydell6e657e62013-04-22 10:29:46 +00001077
1078 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001079}
1080
Gerd Hoffmannc12aeb82013-02-28 15:03:04 +01001081static void cocoa_switch(DisplayChangeListener *dcl,
Gerd Hoffmannc12aeb82013-02-28 15:03:04 +01001082 DisplaySurface *surface)
thsc304f7e2008-01-22 23:25:15 +00001083{
Peter Maydell6e657e62013-04-22 10:29:46 +00001084 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
thsc304f7e2008-01-22 23:25:15 +00001085
Peter Maydell6e657e62013-04-22 10:29:46 +00001086 COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +01001087 [cocoaView switchSurface:surface];
Peter Maydell6e657e62013-04-22 10:29:46 +00001088 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001089}
1090
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001091static void cocoa_refresh(DisplayChangeListener *dcl)
thsc304f7e2008-01-22 23:25:15 +00001092{
Peter Maydell6e657e62013-04-22 10:29:46 +00001093 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1094
thsc304f7e2008-01-22 23:25:15 +00001095 COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
1096
Gerd Hoffmann21bae112013-12-04 14:08:04 +01001097 if (qemu_input_is_absolute()) {
thsc304f7e2008-01-22 23:25:15 +00001098 if (![cocoaView isAbsoluteEnabled]) {
Peter Maydell49b9bd42013-12-08 22:59:03 +00001099 if ([cocoaView isMouseGrabbed]) {
thsc304f7e2008-01-22 23:25:15 +00001100 [cocoaView ungrabMouse];
1101 }
1102 }
1103 [cocoaView setAbsoluteEnabled:YES];
1104 }
1105
1106 NSDate *distantPast;
1107 NSEvent *event;
1108 distantPast = [NSDate distantPast];
1109 do {
1110 event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:distantPast
1111 inMode: NSDefaultRunLoopMode dequeue:YES];
1112 if (event != nil) {
1113 [cocoaView handleEvent:event];
1114 }
1115 } while(event != nil);
Peter Maydell68c0aa62013-04-17 09:16:35 +00001116 graphic_hw_update(NULL);
Peter Maydell6e657e62013-04-22 10:29:46 +00001117 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001118}
1119
1120static void cocoa_cleanup(void)
1121{
1122 COCOA_DEBUG("qemu_cocoa: cocoa_cleanup\n");
Blue Swirl58a06672011-08-21 18:42:08 +00001123 g_free(dcl);
thsc304f7e2008-01-22 23:25:15 +00001124}
1125
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001126static const DisplayChangeListenerOps dcl_ops = {
1127 .dpy_name = "cocoa",
Peter Maydell8510d912013-03-18 20:28:21 +00001128 .dpy_gfx_update = cocoa_update,
1129 .dpy_gfx_switch = cocoa_switch,
1130 .dpy_refresh = cocoa_refresh,
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001131};
1132
thsc304f7e2008-01-22 23:25:15 +00001133void cocoa_display_init(DisplayState *ds, int full_screen)
1134{
1135 COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
1136
Programmingkid43227af2015-05-19 09:11:17 +01001137 /* if fullscreen mode is to be used */
1138 if (full_screen == true) {
1139 [NSApp activateIgnoringOtherApps: YES];
1140 [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
1141 }
1142
Blue Swirl58a06672011-08-21 18:42:08 +00001143 dcl = g_malloc0(sizeof(DisplayChangeListener));
1144
aliguori9794f742009-03-04 19:25:22 +00001145 // register vga output callbacks
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001146 dcl->ops = &dcl_ops;
Gerd Hoffmann52090892013-04-23 15:44:31 +02001147 register_displaychangelistener(dcl);
thsc304f7e2008-01-22 23:25:15 +00001148
1149 // register cleanup function
1150 atexit(cocoa_cleanup);
1151}