blob: 929523319bd33e06fefe3a1a9e686243b98fa819 [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
Peter Maydelle4a096b2016-01-29 16:23:34 +000025#include "qemu/osdep.h"
26
bellard5b0753e2005-03-01 21:37:28 +000027#import <Cocoa/Cocoa.h>
Andreas Färber3bbbee12011-05-29 19:42:51 +020028#include <crt_externs.h>
bellard5b0753e2005-03-01 21:37:28 +000029
pbrook87ecb682007-11-17 17:14:51 +000030#include "qemu-common.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010031#include "ui/console.h"
Gerd Hoffmann21bae112013-12-04 14:08:04 +010032#include "ui/input.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010033#include "sysemu/sysemu.h"
John Arbuckle8524f1c2015-06-19 10:53:27 +010034#include "qmp-commands.h"
John Arbuckle693a3e02015-06-19 10:53:27 +010035#include "sysemu/blockdev.h"
bellardda4dbf72005-03-02 22:22:43 +000036
Andreas Färber44e4c0b2009-12-13 00:45:40 +010037#ifndef MAC_OS_X_VERSION_10_5
38#define MAC_OS_X_VERSION_10_5 1050
39#endif
Peter Maydell2ba9de62013-04-22 10:29:49 +000040#ifndef MAC_OS_X_VERSION_10_6
41#define MAC_OS_X_VERSION_10_6 1060
42#endif
Peter Maydell81801ae2015-05-19 09:11:18 +010043#ifndef MAC_OS_X_VERSION_10_10
44#define MAC_OS_X_VERSION_10_10 101000
45#endif
Andreas Färber44e4c0b2009-12-13 00:45:40 +010046
bellard5b0753e2005-03-01 21:37:28 +000047
thsc304f7e2008-01-22 23:25:15 +000048//#define DEBUG
49
50#ifdef DEBUG
51#define COCOA_DEBUG(...) { (void) fprintf (stdout, __VA_ARGS__); }
52#else
53#define COCOA_DEBUG(...) ((void) 0)
54#endif
55
56#define cgrect(nsrect) (*(CGRect *)&(nsrect))
thsc304f7e2008-01-22 23:25:15 +000057
58typedef struct {
59 int width;
60 int height;
61 int bitsPerComponent;
62 int bitsPerPixel;
63} QEMUScreen;
64
thsc304f7e2008-01-22 23:25:15 +000065NSWindow *normalWindow;
aliguori9794f742009-03-04 19:25:22 +000066static DisplayChangeListener *dcl;
Gerd Hoffmann21bae112013-12-04 14:08:04 +010067static int last_buttons;
bellard5b0753e2005-03-01 21:37:28 +000068
69int gArgc;
70char **gArgv;
Programmingkid5d1b2ee2015-05-19 09:11:17 +010071bool stretch_video;
John Arbuckle8524f1c2015-06-19 10:53:27 +010072NSTextField *pauseLabel;
John Arbuckle693a3e02015-06-19 10:53:27 +010073NSArray * supportedImageFileTypes;
bellard5b0753e2005-03-01 21:37:28 +000074
thsc304f7e2008-01-22 23:25:15 +000075// keymap conversion
bellard87f48e62005-10-30 18:24:49 +000076int keymap[] =
bellard5b0753e2005-03-01 21:37:28 +000077{
bellard87f48e62005-10-30 18:24:49 +000078// SdlI macI macH SdlH 104xtH 104xtC sdl
79 30, // 0 0x00 0x1e A QZ_a
80 31, // 1 0x01 0x1f S QZ_s
81 32, // 2 0x02 0x20 D QZ_d
82 33, // 3 0x03 0x21 F QZ_f
83 35, // 4 0x04 0x23 H QZ_h
84 34, // 5 0x05 0x22 G QZ_g
85 44, // 6 0x06 0x2c Z QZ_z
86 45, // 7 0x07 0x2d X QZ_x
87 46, // 8 0x08 0x2e C QZ_c
88 47, // 9 0x09 0x2f V QZ_v
89 0, // 10 0x0A Undefined
90 48, // 11 0x0B 0x30 B QZ_b
91 16, // 12 0x0C 0x10 Q QZ_q
92 17, // 13 0x0D 0x11 W QZ_w
93 18, // 14 0x0E 0x12 E QZ_e
94 19, // 15 0x0F 0x13 R QZ_r
95 21, // 16 0x10 0x15 Y QZ_y
96 20, // 17 0x11 0x14 T QZ_t
97 2, // 18 0x12 0x02 1 QZ_1
98 3, // 19 0x13 0x03 2 QZ_2
99 4, // 20 0x14 0x04 3 QZ_3
100 5, // 21 0x15 0x05 4 QZ_4
101 7, // 22 0x16 0x07 6 QZ_6
102 6, // 23 0x17 0x06 5 QZ_5
103 13, // 24 0x18 0x0d = QZ_EQUALS
104 10, // 25 0x19 0x0a 9 QZ_9
105 8, // 26 0x1A 0x08 7 QZ_7
106 12, // 27 0x1B 0x0c - QZ_MINUS
107 9, // 28 0x1C 0x09 8 QZ_8
108 11, // 29 0x1D 0x0b 0 QZ_0
109 27, // 30 0x1E 0x1b ] QZ_RIGHTBRACKET
110 24, // 31 0x1F 0x18 O QZ_o
111 22, // 32 0x20 0x16 U QZ_u
112 26, // 33 0x21 0x1a [ QZ_LEFTBRACKET
113 23, // 34 0x22 0x17 I QZ_i
114 25, // 35 0x23 0x19 P QZ_p
115 28, // 36 0x24 0x1c ENTER QZ_RETURN
116 38, // 37 0x25 0x26 L QZ_l
117 36, // 38 0x26 0x24 J QZ_j
118 40, // 39 0x27 0x28 ' QZ_QUOTE
119 37, // 40 0x28 0x25 K QZ_k
120 39, // 41 0x29 0x27 ; QZ_SEMICOLON
121 43, // 42 0x2A 0x2b \ QZ_BACKSLASH
122 51, // 43 0x2B 0x33 , QZ_COMMA
123 53, // 44 0x2C 0x35 / QZ_SLASH
124 49, // 45 0x2D 0x31 N QZ_n
125 50, // 46 0x2E 0x32 M QZ_m
126 52, // 47 0x2F 0x34 . QZ_PERIOD
127 15, // 48 0x30 0x0f TAB QZ_TAB
128 57, // 49 0x31 0x39 SPACE QZ_SPACE
129 41, // 50 0x32 0x29 ` QZ_BACKQUOTE
130 14, // 51 0x33 0x0e BKSP QZ_BACKSPACE
131 0, // 52 0x34 Undefined
132 1, // 53 0x35 0x01 ESC QZ_ESCAPE
Peter Maydell88959192013-12-08 22:59:02 +0000133 220, // 54 0x36 0xdc E0,5C R GUI QZ_RMETA
134 219, // 55 0x37 0xdb E0,5B L GUI QZ_LMETA
bellard87f48e62005-10-30 18:24:49 +0000135 42, // 56 0x38 0x2a L SHFT QZ_LSHIFT
136 58, // 57 0x39 0x3a CAPS QZ_CAPSLOCK
137 56, // 58 0x3A 0x38 L ALT QZ_LALT
138 29, // 59 0x3B 0x1d L CTRL QZ_LCTRL
139 54, // 60 0x3C 0x36 R SHFT QZ_RSHIFT
140 184,// 61 0x3D 0xb8 E0,38 R ALT QZ_RALT
141 157,// 62 0x3E 0x9d E0,1D R CTRL QZ_RCTRL
142 0, // 63 0x3F Undefined
143 0, // 64 0x40 Undefined
144 0, // 65 0x41 Undefined
145 0, // 66 0x42 Undefined
146 55, // 67 0x43 0x37 KP * QZ_KP_MULTIPLY
147 0, // 68 0x44 Undefined
148 78, // 69 0x45 0x4e KP + QZ_KP_PLUS
149 0, // 70 0x46 Undefined
150 69, // 71 0x47 0x45 NUM QZ_NUMLOCK
151 0, // 72 0x48 Undefined
152 0, // 73 0x49 Undefined
153 0, // 74 0x4A Undefined
154 181,// 75 0x4B 0xb5 E0,35 KP / QZ_KP_DIVIDE
155 152,// 76 0x4C 0x9c E0,1C KP EN QZ_KP_ENTER
156 0, // 77 0x4D undefined
157 74, // 78 0x4E 0x4a KP - QZ_KP_MINUS
158 0, // 79 0x4F Undefined
159 0, // 80 0x50 Undefined
160 0, // 81 0x51 QZ_KP_EQUALS
161 82, // 82 0x52 0x52 KP 0 QZ_KP0
162 79, // 83 0x53 0x4f KP 1 QZ_KP1
163 80, // 84 0x54 0x50 KP 2 QZ_KP2
164 81, // 85 0x55 0x51 KP 3 QZ_KP3
165 75, // 86 0x56 0x4b KP 4 QZ_KP4
166 76, // 87 0x57 0x4c KP 5 QZ_KP5
167 77, // 88 0x58 0x4d KP 6 QZ_KP6
168 71, // 89 0x59 0x47 KP 7 QZ_KP7
169 0, // 90 0x5A Undefined
170 72, // 91 0x5B 0x48 KP 8 QZ_KP8
171 73, // 92 0x5C 0x49 KP 9 QZ_KP9
172 0, // 93 0x5D Undefined
173 0, // 94 0x5E Undefined
174 0, // 95 0x5F Undefined
175 63, // 96 0x60 0x3f F5 QZ_F5
176 64, // 97 0x61 0x40 F6 QZ_F6
177 65, // 98 0x62 0x41 F7 QZ_F7
178 61, // 99 0x63 0x3d F3 QZ_F3
179 66, // 100 0x64 0x42 F8 QZ_F8
180 67, // 101 0x65 0x43 F9 QZ_F9
181 0, // 102 0x66 Undefined
182 87, // 103 0x67 0x57 F11 QZ_F11
183 0, // 104 0x68 Undefined
thsc304f7e2008-01-22 23:25:15 +0000184 183,// 105 0x69 0xb7 QZ_PRINT
bellard87f48e62005-10-30 18:24:49 +0000185 0, // 106 0x6A Undefined
186 70, // 107 0x6B 0x46 SCROLL QZ_SCROLLOCK
187 0, // 108 0x6C Undefined
188 68, // 109 0x6D 0x44 F10 QZ_F10
189 0, // 110 0x6E Undefined
190 88, // 111 0x6F 0x58 F12 QZ_F12
191 0, // 112 0x70 Undefined
192 110,// 113 0x71 0x0 QZ_PAUSE
193 210,// 114 0x72 0xd2 E0,52 INSERT QZ_INSERT
194 199,// 115 0x73 0xc7 E0,47 HOME QZ_HOME
195 201,// 116 0x74 0xc9 E0,49 PG UP QZ_PAGEUP
196 211,// 117 0x75 0xd3 E0,53 DELETE QZ_DELETE
197 62, // 118 0x76 0x3e F4 QZ_F4
198 207,// 119 0x77 0xcf E0,4f END QZ_END
199 60, // 120 0x78 0x3c F2 QZ_F2
200 209,// 121 0x79 0xd1 E0,51 PG DN QZ_PAGEDOWN
201 59, // 122 0x7A 0x3b F1 QZ_F1
202 203,// 123 0x7B 0xcb e0,4B L ARROW QZ_LEFT
203 205,// 124 0x7C 0xcd e0,4D R ARROW QZ_RIGHT
204 208,// 125 0x7D 0xd0 E0,50 D ARROW QZ_DOWN
205 200,// 126 0x7E 0xc8 E0,48 U ARROW QZ_UP
206/* 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 +0000207
Peter Maydell49b9bd42013-12-08 22:59:03 +0000208/* Additional 104 Key XP-Keyboard Scancodes from http://www.computer-engineering.org/ps2keyboard/scancodes1.html */
bellard87f48e62005-10-30 18:24:49 +0000209/*
ths3b46e622007-09-17 08:09:54 +0000210 221 // 0xdd e0,5d APPS
211 // E0,2A,E0,37 PRNT SCRN
212 // E1,1D,45,E1,9D,C5 PAUSE
213 83 // 0x53 0x53 KP .
214// ACPI Scan Codes
215 222 // 0xde E0, 5E Power
216 223 // 0xdf E0, 5F Sleep
217 227 // 0xe3 E0, 63 Wake
218// Windows Multimedia Scan Codes
219 153 // 0x99 E0, 19 Next Track
220 144 // 0x90 E0, 10 Previous Track
221 164 // 0xa4 E0, 24 Stop
222 162 // 0xa2 E0, 22 Play/Pause
223 160 // 0xa0 E0, 20 Mute
224 176 // 0xb0 E0, 30 Volume Up
ths5fafdf22007-09-16 21:08:06 +0000225 174 // 0xae E0, 2E Volume Down
ths3b46e622007-09-17 08:09:54 +0000226 237 // 0xed E0, 6D Media Select
227 236 // 0xec E0, 6C E-Mail
228 161 // 0xa1 E0, 21 Calculator
ths5fafdf22007-09-16 21:08:06 +0000229 235 // 0xeb E0, 6B My Computer
ths3b46e622007-09-17 08:09:54 +0000230 229 // 0xe5 E0, 65 WWW Search
231 178 // 0xb2 E0, 32 WWW Home
232 234 // 0xea E0, 6A WWW Back
ths5fafdf22007-09-16 21:08:06 +0000233 233 // 0xe9 E0, 69 WWW Forward
ths3b46e622007-09-17 08:09:54 +0000234 232 // 0xe8 E0, 68 WWW Stop
ths5fafdf22007-09-16 21:08:06 +0000235 231 // 0xe7 E0, 67 WWW Refresh
ths3b46e622007-09-17 08:09:54 +0000236 230 // 0xe6 E0, 66 WWW Favorites
bellard87f48e62005-10-30 18:24:49 +0000237*/
bellard5b0753e2005-03-01 21:37:28 +0000238};
239
Andreas Färber77047bb2009-12-13 00:55:53 +0100240static int cocoa_keycode_to_qemu(int keycode)
bellard5b0753e2005-03-01 21:37:28 +0000241{
Stefan Weil5d701922013-12-07 14:48:05 +0100242 if (ARRAY_SIZE(keymap) <= keycode) {
Peter Maydell01cc4e62013-12-08 22:59:04 +0000243 fprintf(stderr, "(cocoa) warning unknown keycode 0x%x\n", keycode);
bellard5b0753e2005-03-01 21:37:28 +0000244 return 0;
245 }
246 return keymap[keycode];
247}
248
John Arbuckle693a3e02015-06-19 10:53:27 +0100249/* Displays an alert dialog box with the specified message */
250static void QEMU_Alert(NSString *message)
251{
252 NSAlert *alert;
253 alert = [NSAlert new];
254 [alert setMessageText: message];
255 [alert runModal];
256}
thsc304f7e2008-01-22 23:25:15 +0000257
John Arbuckle693a3e02015-06-19 10:53:27 +0100258/* Handles any errors that happen with a device transaction */
259static void handleAnyDeviceErrors(Error * err)
260{
261 if (err) {
262 QEMU_Alert([NSString stringWithCString: error_get_pretty(err)
263 encoding: NSASCIIStringEncoding]);
264 error_free(err);
265 }
266}
thsc304f7e2008-01-22 23:25:15 +0000267
bellard5b0753e2005-03-01 21:37:28 +0000268/*
269 ------------------------------------------------------
thsc304f7e2008-01-22 23:25:15 +0000270 QemuCocoaView
bellard5b0753e2005-03-01 21:37:28 +0000271 ------------------------------------------------------
272*/
thsc304f7e2008-01-22 23:25:15 +0000273@interface QemuCocoaView : NSView
bellard5b0753e2005-03-01 21:37:28 +0000274{
thsc304f7e2008-01-22 23:25:15 +0000275 QEMUScreen screen;
276 NSWindow *fullScreenWindow;
277 float cx,cy,cw,ch,cdx,cdy;
278 CGDataProviderRef dataProviderRef;
279 int modifiers_state[256];
Peter Maydell49b9bd42013-12-08 22:59:03 +0000280 BOOL isMouseGrabbed;
thsc304f7e2008-01-22 23:25:15 +0000281 BOOL isFullscreen;
282 BOOL isAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100283 BOOL isMouseDeassociated;
thsc304f7e2008-01-22 23:25:15 +0000284}
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100285- (void) switchSurface:(DisplaySurface *)surface;
thsc304f7e2008-01-22 23:25:15 +0000286- (void) grabMouse;
287- (void) ungrabMouse;
288- (void) toggleFullScreen:(id)sender;
289- (void) handleEvent:(NSEvent *)event;
290- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100291/* The state surrounding mouse grabbing is potentially confusing.
292 * isAbsoluteEnabled tracks qemu_input_is_absolute() [ie "is the emulated
293 * pointing device an absolute-position one?"], but is only updated on
294 * next refresh.
295 * isMouseGrabbed tracks whether GUI events are directed to the guest;
296 * it controls whether special keys like Cmd get sent to the guest,
297 * and whether we capture the mouse when in non-absolute mode.
298 * isMouseDeassociated tracks whether we've told MacOSX to disassociate
299 * the mouse and mouse cursor position by calling
300 * CGAssociateMouseAndMouseCursorPosition(FALSE)
301 * (which basically happens if we grab in non-absolute mode).
302 */
Peter Maydell49b9bd42013-12-08 22:59:03 +0000303- (BOOL) isMouseGrabbed;
thsc304f7e2008-01-22 23:25:15 +0000304- (BOOL) isAbsoluteEnabled;
Peter Maydellf61c3872014-06-23 10:35:24 +0100305- (BOOL) isMouseDeassociated;
thsc304f7e2008-01-22 23:25:15 +0000306- (float) cdx;
307- (float) cdy;
308- (QEMUScreen) gscreen;
John Arbuckle3b178b72015-09-25 23:14:00 +0100309- (void) raiseAllKeys;
thsc304f7e2008-01-22 23:25:15 +0000310@end
ths3b46e622007-09-17 08:09:54 +0000311
Andreas Färber7fee1992011-06-09 20:53:32 +0200312QemuCocoaView *cocoaView;
313
thsc304f7e2008-01-22 23:25:15 +0000314@implementation QemuCocoaView
315- (id)initWithFrame:(NSRect)frameRect
316{
317 COCOA_DEBUG("QemuCocoaView: initWithFrame\n");
ths3b46e622007-09-17 08:09:54 +0000318
thsc304f7e2008-01-22 23:25:15 +0000319 self = [super initWithFrame:frameRect];
320 if (self) {
pbrook95219892006-04-09 01:06:34 +0000321
thsc304f7e2008-01-22 23:25:15 +0000322 screen.bitsPerComponent = 8;
323 screen.bitsPerPixel = 32;
324 screen.width = frameRect.size.width;
325 screen.height = frameRect.size.height;
bellard7c206a72005-12-18 19:18:45 +0000326
thsc304f7e2008-01-22 23:25:15 +0000327 }
328 return self;
329}
bellard7c206a72005-12-18 19:18:45 +0000330
thsc304f7e2008-01-22 23:25:15 +0000331- (void) dealloc
332{
333 COCOA_DEBUG("QemuCocoaView: dealloc\n");
bellard7c206a72005-12-18 19:18:45 +0000334
thsc304f7e2008-01-22 23:25:15 +0000335 if (dataProviderRef)
336 CGDataProviderRelease(dataProviderRef);
ths3b46e622007-09-17 08:09:54 +0000337
thsc304f7e2008-01-22 23:25:15 +0000338 [super dealloc];
339}
bellard5cbfcd02006-06-14 15:53:24 +0000340
Andreas Färberd50f71d2009-12-13 02:03:33 +0100341- (BOOL) isOpaque
342{
343 return YES;
344}
345
Peter Maydell5dd45be2014-06-23 10:35:23 +0100346- (BOOL) screenContainsPoint:(NSPoint) p
347{
348 return (p.x > -1 && p.x < screen.width && p.y > -1 && p.y < screen.height);
349}
350
Peter Maydell13aefd32014-06-23 10:35:25 +0100351- (void) hideCursor
352{
353 if (!cursor_hide) {
354 return;
355 }
356 [NSCursor hide];
357}
358
359- (void) unhideCursor
360{
361 if (!cursor_hide) {
362 return;
363 }
364 [NSCursor unhide];
365}
366
thsc304f7e2008-01-22 23:25:15 +0000367- (void) drawRect:(NSRect) rect
368{
369 COCOA_DEBUG("QemuCocoaView: drawRect\n");
bellard5cbfcd02006-06-14 15:53:24 +0000370
thsc304f7e2008-01-22 23:25:15 +0000371 // get CoreGraphic context
372 CGContextRef viewContextRef = [[NSGraphicsContext currentContext] graphicsPort];
373 CGContextSetInterpolationQuality (viewContextRef, kCGInterpolationNone);
374 CGContextSetShouldAntialias (viewContextRef, NO);
ths3b46e622007-09-17 08:09:54 +0000375
thsc304f7e2008-01-22 23:25:15 +0000376 // draw screen bitmap directly to Core Graphics context
Peter Maydell7d270b12013-12-24 02:51:47 +0000377 if (!dataProviderRef) {
378 // Draw request before any guest device has set up a framebuffer:
379 // just draw an opaque black rectangle
380 CGContextSetRGBFillColor(viewContextRef, 0, 0, 0, 1.0);
381 CGContextFillRect(viewContextRef, NSRectToCGRect(rect));
382 } else {
thsc304f7e2008-01-22 23:25:15 +0000383 CGImageRef imageRef = CGImageCreate(
384 screen.width, //width
385 screen.height, //height
386 screen.bitsPerComponent, //bitsPerComponent
387 screen.bitsPerPixel, //bitsPerPixel
aliguori9794f742009-03-04 19:25:22 +0000388 (screen.width * (screen.bitsPerComponent/2)), //bytesPerRow
Andreas Färber04afa4a2009-12-13 00:58:21 +0100389#ifdef __LITTLE_ENDIAN__
thsc304f7e2008-01-22 23:25:15 +0000390 CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4
aliguori9794f742009-03-04 19:25:22 +0000391 kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
thsc304f7e2008-01-22 23:25:15 +0000392#else
393 CGColorSpaceCreateDeviceRGB(), //colorspace for OS X < 10.4 (actually ppc)
394 kCGImageAlphaNoneSkipFirst, //bitmapInfo
395#endif
396 dataProviderRef, //provider
397 NULL, //decode
398 0, //interpolate
399 kCGRenderingIntentDefault //intent
400 );
Peter Maydellb63901d2015-05-19 09:11:17 +0100401 // selective drawing code (draws only dirty rectangles) (OS X >= 10.4)
402 const NSRect *rectList;
Peter Maydellb63901d2015-05-19 09:11:17 +0100403 NSInteger rectCount;
Peter Maydellb63901d2015-05-19 09:11:17 +0100404 int i;
405 CGImageRef clipImageRef;
406 CGRect clipRect;
ths3b46e622007-09-17 08:09:54 +0000407
Peter Maydellb63901d2015-05-19 09:11:17 +0100408 [self getRectsBeingDrawn:&rectList count:&rectCount];
409 for (i = 0; i < rectCount; i++) {
410 clipRect.origin.x = rectList[i].origin.x / cdx;
411 clipRect.origin.y = (float)screen.height - (rectList[i].origin.y + rectList[i].size.height) / cdy;
412 clipRect.size.width = rectList[i].size.width / cdx;
413 clipRect.size.height = rectList[i].size.height / cdy;
414 clipImageRef = CGImageCreateWithImageInRect(
415 imageRef,
416 clipRect
417 );
418 CGContextDrawImage (viewContextRef, cgrect(rectList[i]), clipImageRef);
419 CGImageRelease (clipImageRef);
bellard5b0753e2005-03-01 21:37:28 +0000420 }
thsc304f7e2008-01-22 23:25:15 +0000421 CGImageRelease (imageRef);
bellard5b0753e2005-03-01 21:37:28 +0000422 }
423}
424
thsc304f7e2008-01-22 23:25:15 +0000425- (void) setContentDimensions
bellard5b0753e2005-03-01 21:37:28 +0000426{
thsc304f7e2008-01-22 23:25:15 +0000427 COCOA_DEBUG("QemuCocoaView: setContentDimensions\n");
ths3b46e622007-09-17 08:09:54 +0000428
thsc304f7e2008-01-22 23:25:15 +0000429 if (isFullscreen) {
430 cdx = [[NSScreen mainScreen] frame].size.width / (float)screen.width;
431 cdy = [[NSScreen mainScreen] frame].size.height / (float)screen.height;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100432
433 /* stretches video, but keeps same aspect ratio */
434 if (stretch_video == true) {
435 /* use smallest stretch value - prevents clipping on sides */
436 if (MIN(cdx, cdy) == cdx) {
437 cdy = cdx;
438 } else {
439 cdx = cdy;
440 }
441 } else { /* No stretching */
442 cdx = cdy = 1;
443 }
thsc304f7e2008-01-22 23:25:15 +0000444 cw = screen.width * cdx;
445 ch = screen.height * cdy;
446 cx = ([[NSScreen mainScreen] frame].size.width - cw) / 2.0;
447 cy = ([[NSScreen mainScreen] frame].size.height - ch) / 2.0;
448 } else {
449 cx = 0;
450 cy = 0;
451 cw = screen.width;
452 ch = screen.height;
453 cdx = 1.0;
454 cdy = 1.0;
455 }
bellard5b0753e2005-03-01 21:37:28 +0000456}
457
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100458- (void) switchSurface:(DisplaySurface *)surface
thsc304f7e2008-01-22 23:25:15 +0000459{
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100460 COCOA_DEBUG("QemuCocoaView: switchSurface\n");
thsc304f7e2008-01-22 23:25:15 +0000461
Peter Maydell8510d912013-03-18 20:28:21 +0000462 int w = surface_width(surface);
463 int h = surface_height(surface);
Peter Maydell381600d2014-06-23 10:35:22 +0100464 /* cdx == 0 means this is our very first surface, in which case we need
465 * to recalculate the content dimensions even if it happens to be the size
466 * of the initial empty window.
467 */
468 bool isResize = (w != screen.width || h != screen.height || cdx == 0.0);
Peter Maydelld3345a02013-12-24 02:51:46 +0000469
470 int oldh = screen.height;
471 if (isResize) {
472 // Resize before we trigger the redraw, or we'll redraw at the wrong size
473 COCOA_DEBUG("switchSurface: new size %d x %d\n", w, h);
474 screen.width = w;
475 screen.height = h;
476 [self setContentDimensions];
477 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
478 }
Peter Maydell8510d912013-03-18 20:28:21 +0000479
thsc304f7e2008-01-22 23:25:15 +0000480 // update screenBuffer
481 if (dataProviderRef)
482 CGDataProviderRelease(dataProviderRef);
thsc304f7e2008-01-22 23:25:15 +0000483
aliguori9794f742009-03-04 19:25:22 +0000484 //sync host window color space with guests
Peter Maydell49060c22013-12-24 11:54:12 +0000485 screen.bitsPerPixel = surface_bits_per_pixel(surface);
486 screen.bitsPerComponent = surface_bytes_per_pixel(surface) * 2;
thsc304f7e2008-01-22 23:25:15 +0000487
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +0100488 dataProviderRef = CGDataProviderCreateWithData(NULL, surface_data(surface), w * 4 * h, NULL);
thsc304f7e2008-01-22 23:25:15 +0000489
490 // update windows
491 if (isFullscreen) {
492 [[fullScreenWindow contentView] setFrame:[[NSScreen mainScreen] frame]];
Peter Maydelld3345a02013-12-24 02:51:46 +0000493 [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 +0000494 } else {
495 if (qemu_name)
496 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
Peter Maydelld3345a02013-12-24 02:51:46 +0000497 [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 +0000498 }
Peter Maydelld3345a02013-12-24 02:51:46 +0000499
500 if (isResize) {
501 [normalWindow center];
502 }
thsc304f7e2008-01-22 23:25:15 +0000503}
504
505- (void) toggleFullScreen:(id)sender
506{
507 COCOA_DEBUG("QemuCocoaView: toggleFullScreen\n");
508
509 if (isFullscreen) { // switch from fullscreen to desktop
510 isFullscreen = FALSE;
511 [self ungrabMouse];
512 [self setContentDimensions];
thsc304f7e2008-01-22 23:25:15 +0000513 if ([NSView respondsToSelector:@selector(exitFullScreenModeWithOptions:)]) { // test if "exitFullScreenModeWithOptions" is supported on host at runtime
514 [self exitFullScreenModeWithOptions:nil];
515 } else {
thsc304f7e2008-01-22 23:25:15 +0000516 [fullScreenWindow close];
517 [normalWindow setContentView: self];
518 [normalWindow makeKeyAndOrderFront: self];
519 [NSMenu setMenuBarVisible:YES];
thsc304f7e2008-01-22 23:25:15 +0000520 }
thsc304f7e2008-01-22 23:25:15 +0000521 } else { // switch from desktop to fullscreen
522 isFullscreen = TRUE;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100523 [normalWindow orderOut: nil]; /* Hide the window */
thsc304f7e2008-01-22 23:25:15 +0000524 [self grabMouse];
525 [self setContentDimensions];
thsc304f7e2008-01-22 23:25:15 +0000526 if ([NSView respondsToSelector:@selector(enterFullScreenMode:withOptions:)]) { // test if "enterFullScreenMode:withOptions" is supported on host at runtime
527 [self enterFullScreenMode:[NSScreen mainScreen] withOptions:[NSDictionary dictionaryWithObjectsAndKeys:
528 [NSNumber numberWithBool:NO], NSFullScreenModeAllScreens,
529 [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], kCGDisplayModeIsStretched, nil], NSFullScreenModeSetting,
530 nil]];
531 } else {
thsc304f7e2008-01-22 23:25:15 +0000532 [NSMenu setMenuBarVisible:NO];
533 fullScreenWindow = [[NSWindow alloc] initWithContentRect:[[NSScreen mainScreen] frame]
534 styleMask:NSBorderlessWindowMask
535 backing:NSBackingStoreBuffered
536 defer:NO];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100537 [fullScreenWindow setAcceptsMouseMovedEvents: YES];
thsc304f7e2008-01-22 23:25:15 +0000538 [fullScreenWindow setHasShadow:NO];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100539 [fullScreenWindow setBackgroundColor: [NSColor blackColor]];
540 [self setFrame:NSMakeRect(cx, cy, cw, ch)];
541 [[fullScreenWindow contentView] addSubview: self];
thsc304f7e2008-01-22 23:25:15 +0000542 [fullScreenWindow makeKeyAndOrderFront:self];
thsc304f7e2008-01-22 23:25:15 +0000543 }
thsc304f7e2008-01-22 23:25:15 +0000544 }
545}
546
547- (void) handleEvent:(NSEvent *)event
548{
549 COCOA_DEBUG("QemuCocoaView: handleEvent\n");
550
551 int buttons = 0;
552 int keycode;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100553 bool mouse_event = false;
thsc304f7e2008-01-22 23:25:15 +0000554 NSPoint p = [event locationInWindow];
555
556 switch ([event type]) {
557 case NSFlagsChanged:
558 keycode = cocoa_keycode_to_qemu([event keyCode]);
Peter Maydell88959192013-12-08 22:59:02 +0000559
Peter Maydell49b9bd42013-12-08 22:59:03 +0000560 if ((keycode == 219 || keycode == 220) && !isMouseGrabbed) {
Peter Maydell88959192013-12-08 22:59:02 +0000561 /* Don't pass command key changes to guest unless mouse is grabbed */
562 keycode = 0;
563 }
564
thsc304f7e2008-01-22 23:25:15 +0000565 if (keycode) {
566 if (keycode == 58 || keycode == 69) { // emulate caps lock and num lock keydown and keyup
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100567 qemu_input_event_send_key_number(dcl->con, keycode, true);
568 qemu_input_event_send_key_number(dcl->con, keycode, false);
Peter Maydell68c0aa62013-04-17 09:16:35 +0000569 } else if (qemu_console_is_graphic(NULL)) {
thsc304f7e2008-01-22 23:25:15 +0000570 if (modifiers_state[keycode] == 0) { // keydown
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100571 qemu_input_event_send_key_number(dcl->con, keycode, true);
thsc304f7e2008-01-22 23:25:15 +0000572 modifiers_state[keycode] = 1;
573 } else { // keyup
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100574 qemu_input_event_send_key_number(dcl->con, keycode, false);
thsc304f7e2008-01-22 23:25:15 +0000575 modifiers_state[keycode] = 0;
576 }
577 }
578 }
579
580 // release Mouse grab when pressing ctrl+alt
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100581 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
thsc304f7e2008-01-22 23:25:15 +0000582 [self ungrabMouse];
583 }
584 break;
585 case NSKeyDown:
Peter Maydell88959192013-12-08 22:59:02 +0000586 keycode = cocoa_keycode_to_qemu([event keyCode]);
thsc304f7e2008-01-22 23:25:15 +0000587
Peter Maydell88959192013-12-08 22:59:02 +0000588 // forward command key combos to the host UI unless the mouse is grabbed
Peter Maydell49b9bd42013-12-08 22:59:03 +0000589 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
thsc304f7e2008-01-22 23:25:15 +0000590 [NSApp sendEvent:event];
591 return;
592 }
593
594 // default
thsc304f7e2008-01-22 23:25:15 +0000595
596 // handle control + alt Key Combos (ctrl+alt is reserved for QEMU)
597 if (([event modifierFlags] & NSControlKeyMask) && ([event modifierFlags] & NSAlternateKeyMask)) {
598 switch (keycode) {
599
600 // enable graphic console
601 case 0x02 ... 0x0a: // '1' to '9' keys
602 console_select(keycode - 0x02);
603 break;
604 }
605
606 // handle keys for graphic console
Peter Maydell68c0aa62013-04-17 09:16:35 +0000607 } else if (qemu_console_is_graphic(NULL)) {
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100608 qemu_input_event_send_key_number(dcl->con, keycode, true);
thsc304f7e2008-01-22 23:25:15 +0000609
610 // handlekeys for Monitor
611 } else {
612 int keysym = 0;
613 switch([event keyCode]) {
614 case 115:
615 keysym = QEMU_KEY_HOME;
616 break;
617 case 117:
618 keysym = QEMU_KEY_DELETE;
619 break;
620 case 119:
621 keysym = QEMU_KEY_END;
622 break;
623 case 123:
624 keysym = QEMU_KEY_LEFT;
625 break;
626 case 124:
627 keysym = QEMU_KEY_RIGHT;
628 break;
629 case 125:
630 keysym = QEMU_KEY_DOWN;
631 break;
632 case 126:
633 keysym = QEMU_KEY_UP;
634 break;
635 default:
636 {
637 NSString *ks = [event characters];
638 if ([ks length] > 0)
639 keysym = [ks characterAtIndex:0];
640 }
641 }
642 if (keysym)
643 kbd_put_keysym(keysym);
644 }
645 break;
646 case NSKeyUp:
647 keycode = cocoa_keycode_to_qemu([event keyCode]);
Peter Maydell88959192013-12-08 22:59:02 +0000648
649 // don't pass the guest a spurious key-up if we treated this
650 // command-key combo as a host UI action
Peter Maydell49b9bd42013-12-08 22:59:03 +0000651 if (!isMouseGrabbed && ([event modifierFlags] & NSCommandKeyMask)) {
Peter Maydell88959192013-12-08 22:59:02 +0000652 return;
653 }
654
Peter Maydell68c0aa62013-04-17 09:16:35 +0000655 if (qemu_console_is_graphic(NULL)) {
Gerd Hoffmann2e08c662013-12-04 12:53:44 +0100656 qemu_input_event_send_key_number(dcl->con, keycode, false);
thsc304f7e2008-01-22 23:25:15 +0000657 }
658 break;
659 case NSMouseMoved:
660 if (isAbsoluteEnabled) {
Peter Maydell5dd45be2014-06-23 10:35:23 +0100661 if (![self screenContainsPoint:p] || ![[self window] isKeyWindow]) {
Peter Maydellf61c3872014-06-23 10:35:24 +0100662 if (isMouseGrabbed) {
663 [self ungrabMouse];
thsc304f7e2008-01-22 23:25:15 +0000664 }
665 } else {
Peter Maydellf61c3872014-06-23 10:35:24 +0100666 if (!isMouseGrabbed) {
667 [self grabMouse];
thsc304f7e2008-01-22 23:25:15 +0000668 }
669 }
670 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100671 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000672 break;
673 case NSLeftMouseDown:
674 if ([event modifierFlags] & NSCommandKeyMask) {
675 buttons |= MOUSE_EVENT_RBUTTON;
676 } else {
677 buttons |= MOUSE_EVENT_LBUTTON;
678 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100679 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000680 break;
681 case NSRightMouseDown:
682 buttons |= MOUSE_EVENT_RBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100683 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000684 break;
685 case NSOtherMouseDown:
686 buttons |= MOUSE_EVENT_MBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100687 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000688 break;
689 case NSLeftMouseDragged:
690 if ([event modifierFlags] & NSCommandKeyMask) {
691 buttons |= MOUSE_EVENT_RBUTTON;
692 } else {
693 buttons |= MOUSE_EVENT_LBUTTON;
694 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100695 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000696 break;
697 case NSRightMouseDragged:
698 buttons |= MOUSE_EVENT_RBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100699 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000700 break;
701 case NSOtherMouseDragged:
702 buttons |= MOUSE_EVENT_MBUTTON;
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100703 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000704 break;
705 case NSLeftMouseUp:
Peter Maydellf61c3872014-06-23 10:35:24 +0100706 mouse_event = true;
707 if (!isMouseGrabbed && [self screenContainsPoint:p]) {
708 [self grabMouse];
thsc304f7e2008-01-22 23:25:15 +0000709 }
710 break;
711 case NSRightMouseUp:
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100712 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000713 break;
714 case NSOtherMouseUp:
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100715 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000716 break;
717 case NSScrollWheel:
Peter Maydellf61c3872014-06-23 10:35:24 +0100718 if (isMouseGrabbed) {
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100719 buttons |= ([event deltaY] < 0) ?
720 MOUSE_EVENT_WHEELUP : MOUSE_EVENT_WHEELDN;
thsc304f7e2008-01-22 23:25:15 +0000721 }
Peter Maydellf61c3872014-06-23 10:35:24 +0100722 mouse_event = true;
thsc304f7e2008-01-22 23:25:15 +0000723 break;
724 default:
725 [NSApp sendEvent:event];
726 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100727
728 if (mouse_event) {
Peter Maydell8d3a5d92015-11-26 15:19:28 +0000729 /* Don't send button events to the guest unless we've got a
730 * mouse grab or window focus. If we have neither then this event
731 * is the user clicking on the background window to activate and
732 * bring us to the front, which will be done by the sendEvent
733 * call below. We definitely don't want to pass that click through
734 * to the guest.
735 */
736 if ((isMouseGrabbed || [[self window] isKeyWindow]) &&
737 (last_buttons != buttons)) {
Eric Blake7fb1cf12015-11-18 01:52:57 -0700738 static uint32_t bmap[INPUT_BUTTON__MAX] = {
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100739 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
740 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
741 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
Gerd Hoffmannf22d0af2016-01-12 12:14:12 +0100742 [INPUT_BUTTON_WHEEL_UP] = MOUSE_EVENT_WHEELUP,
743 [INPUT_BUTTON_WHEEL_DOWN] = MOUSE_EVENT_WHEELDN,
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100744 };
745 qemu_input_update_buttons(dcl->con, bmap, last_buttons, buttons);
746 last_buttons = buttons;
747 }
Peter Maydellf61c3872014-06-23 10:35:24 +0100748 if (isMouseGrabbed) {
749 if (isAbsoluteEnabled) {
750 /* Note that the origin for Cocoa mouse coords is bottom left, not top left.
751 * The check on screenContainsPoint is to avoid sending out of range values for
752 * clicks in the titlebar.
753 */
754 if ([self screenContainsPoint:p]) {
755 qemu_input_queue_abs(dcl->con, INPUT_AXIS_X, p.x, screen.width);
756 qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, screen.height - p.y, screen.height);
757 }
758 } else {
759 qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, (int)[event deltaX]);
760 qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, (int)[event deltaY]);
761 }
Gerd Hoffmann21bae112013-12-04 14:08:04 +0100762 } else {
763 [NSApp sendEvent:event];
764 }
765 qemu_input_event_sync();
766 }
thsc304f7e2008-01-22 23:25:15 +0000767}
768
769- (void) grabMouse
770{
771 COCOA_DEBUG("QemuCocoaView: grabMouse\n");
772
773 if (!isFullscreen) {
774 if (qemu_name)
775 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt to release Mouse)", qemu_name]];
776 else
777 [normalWindow setTitle:@"QEMU - (Press ctrl + alt to release Mouse)"];
778 }
Peter Maydell13aefd32014-06-23 10:35:25 +0100779 [self hideCursor];
Peter Maydellf61c3872014-06-23 10:35:24 +0100780 if (!isAbsoluteEnabled) {
781 isMouseDeassociated = TRUE;
782 CGAssociateMouseAndMouseCursorPosition(FALSE);
783 }
Peter Maydell49b9bd42013-12-08 22:59:03 +0000784 isMouseGrabbed = TRUE; // while isMouseGrabbed = TRUE, QemuCocoaApp sends all events to [cocoaView handleEvent:]
thsc304f7e2008-01-22 23:25:15 +0000785}
786
787- (void) ungrabMouse
788{
789 COCOA_DEBUG("QemuCocoaView: ungrabMouse\n");
790
791 if (!isFullscreen) {
792 if (qemu_name)
793 [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s", qemu_name]];
794 else
795 [normalWindow setTitle:@"QEMU"];
796 }
Peter Maydell13aefd32014-06-23 10:35:25 +0100797 [self unhideCursor];
Peter Maydellf61c3872014-06-23 10:35:24 +0100798 if (isMouseDeassociated) {
799 CGAssociateMouseAndMouseCursorPosition(TRUE);
800 isMouseDeassociated = FALSE;
801 }
Peter Maydell49b9bd42013-12-08 22:59:03 +0000802 isMouseGrabbed = FALSE;
thsc304f7e2008-01-22 23:25:15 +0000803}
804
805- (void) setAbsoluteEnabled:(BOOL)tIsAbsoluteEnabled {isAbsoluteEnabled = tIsAbsoluteEnabled;}
Peter Maydell49b9bd42013-12-08 22:59:03 +0000806- (BOOL) isMouseGrabbed {return isMouseGrabbed;}
thsc304f7e2008-01-22 23:25:15 +0000807- (BOOL) isAbsoluteEnabled {return isAbsoluteEnabled;}
Peter Maydellf61c3872014-06-23 10:35:24 +0100808- (BOOL) isMouseDeassociated {return isMouseDeassociated;}
thsc304f7e2008-01-22 23:25:15 +0000809- (float) cdx {return cdx;}
810- (float) cdy {return cdy;}
811- (QEMUScreen) gscreen {return screen;}
John Arbuckle3b178b72015-09-25 23:14:00 +0100812
813/*
814 * Makes the target think all down keys are being released.
815 * This prevents a stuck key problem, since we will not see
816 * key up events for those keys after we have lost focus.
817 */
818- (void) raiseAllKeys
819{
820 int index;
821 const int max_index = ARRAY_SIZE(modifiers_state);
822
823 for (index = 0; index < max_index; index++) {
824 if (modifiers_state[index]) {
825 modifiers_state[index] = 0;
826 qemu_input_event_send_key_number(dcl->con, index, false);
827 }
828 }
829}
bellard5b0753e2005-03-01 21:37:28 +0000830@end
831
832
thsc304f7e2008-01-22 23:25:15 +0000833
bellard5b0753e2005-03-01 21:37:28 +0000834/*
835 ------------------------------------------------------
thsc304f7e2008-01-22 23:25:15 +0000836 QemuCocoaAppController
bellard5b0753e2005-03-01 21:37:28 +0000837 ------------------------------------------------------
838*/
thsc304f7e2008-01-22 23:25:15 +0000839@interface QemuCocoaAppController : NSObject
Peter Maydell2a4c8c52015-05-19 09:11:18 +0100840#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
John Arbuckled9bc14f2015-09-25 23:13:59 +0100841 <NSWindowDelegate, NSApplicationDelegate>
Peter Maydell2a4c8c52015-05-19 09:11:18 +0100842#endif
bellard5b0753e2005-03-01 21:37:28 +0000843{
844}
bellard5b0753e2005-03-01 21:37:28 +0000845- (void)startEmulationWithArgc:(int)argc argv:(char**)argv;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100846- (void)doToggleFullScreen:(id)sender;
thsc304f7e2008-01-22 23:25:15 +0000847- (void)toggleFullScreen:(id)sender;
848- (void)showQEMUDoc:(id)sender;
849- (void)showQEMUTec:(id)sender;
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100850- (void)zoomToFit:(id) sender;
Programmingkidb4c6a112015-05-19 09:11:18 +0100851- (void)displayConsole:(id)sender;
John Arbuckle8524f1c2015-06-19 10:53:27 +0100852- (void)pauseQEMU:(id)sender;
853- (void)resumeQEMU:(id)sender;
854- (void)displayPause;
855- (void)removePause;
John Arbuckle27074612015-06-19 10:53:27 +0100856- (void)restartQEMU:(id)sender;
857- (void)powerDownQEMU:(id)sender;
John Arbuckle693a3e02015-06-19 10:53:27 +0100858- (void)ejectDeviceMedia:(id)sender;
859- (void)changeDeviceMedia:(id)sender;
John Arbuckled9bc14f2015-09-25 23:13:59 +0100860- (BOOL)verifyQuit;
John Arbucklef4747902016-03-23 14:26:17 +0000861- (void)openDocumentation:(NSString *)filename;
bellard5b0753e2005-03-01 21:37:28 +0000862@end
863
thsc304f7e2008-01-22 23:25:15 +0000864@implementation QemuCocoaAppController
865- (id) init
866{
867 COCOA_DEBUG("QemuCocoaAppController: init\n");
868
869 self = [super init];
870 if (self) {
871
872 // create a view and add it to the window
873 cocoaView = [[QemuCocoaView alloc] initWithFrame:NSMakeRect(0.0, 0.0, 640.0, 480.0)];
874 if(!cocoaView) {
875 fprintf(stderr, "(cocoa) can't create a view\n");
876 exit(1);
877 }
878
879 // create a window
880 normalWindow = [[NSWindow alloc] initWithContentRect:[cocoaView frame]
881 styleMask:NSTitledWindowMask|NSMiniaturizableWindowMask|NSClosableWindowMask
882 backing:NSBackingStoreBuffered defer:NO];
883 if(!normalWindow) {
884 fprintf(stderr, "(cocoa) can't create window\n");
885 exit(1);
886 }
887 [normalWindow setAcceptsMouseMovedEvents:YES];
John Arbucklea1dbc052015-10-13 21:51:18 +0100888 [normalWindow setTitle:@"QEMU"];
thsc304f7e2008-01-22 23:25:15 +0000889 [normalWindow setContentView:cocoaView];
Peter Maydell81801ae2015-05-19 09:11:18 +0100890#if (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10)
Andreas Färber561ef252009-12-13 03:06:20 +0100891 [normalWindow useOptimizedDrawing:YES];
Peter Maydell81801ae2015-05-19 09:11:18 +0100892#endif
thsc304f7e2008-01-22 23:25:15 +0000893 [normalWindow makeKeyAndOrderFront:self];
Peter Maydell49060c22013-12-24 11:54:12 +0000894 [normalWindow center];
John Arbuckled9bc14f2015-09-25 23:13:59 +0100895 [normalWindow setDelegate: self];
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100896 stretch_video = false;
John Arbuckle8524f1c2015-06-19 10:53:27 +0100897
898 /* Used for displaying pause on the screen */
899 pauseLabel = [NSTextField new];
900 [pauseLabel setBezeled:YES];
901 [pauseLabel setDrawsBackground:YES];
902 [pauseLabel setBackgroundColor: [NSColor whiteColor]];
903 [pauseLabel setEditable:NO];
904 [pauseLabel setSelectable:NO];
905 [pauseLabel setStringValue: @"Paused"];
906 [pauseLabel setFont: [NSFont fontWithName: @"Helvetica" size: 90]];
907 [pauseLabel setTextColor: [NSColor blackColor]];
908 [pauseLabel sizeToFit];
John Arbuckle693a3e02015-06-19 10:53:27 +0100909
910 // set the supported image file types that can be opened
911 supportedImageFileTypes = [NSArray arrayWithObjects: @"img", @"iso", @"dmg",
912 @"qcow", @"qcow2", @"cloop", @"vmdk", nil];
thsc304f7e2008-01-22 23:25:15 +0000913 }
914 return self;
915}
916
917- (void) dealloc
918{
919 COCOA_DEBUG("QemuCocoaAppController: dealloc\n");
920
921 if (cocoaView)
922 [cocoaView release];
923 [super dealloc];
924}
925
bellard5b0753e2005-03-01 21:37:28 +0000926- (void)applicationDidFinishLaunching: (NSNotification *) note
927{
thsc304f7e2008-01-22 23:25:15 +0000928 COCOA_DEBUG("QemuCocoaAppController: applicationDidFinishLaunching\n");
John Arbuckle365d7f32015-09-25 23:14:00 +0100929 // launch QEMU, with the global args
930 [self startEmulationWithArgc:gArgc argv:(char **)gArgv];
bellard5b0753e2005-03-01 21:37:28 +0000931}
932
933- (void)applicationWillTerminate:(NSNotification *)aNotification
934{
thsc304f7e2008-01-22 23:25:15 +0000935 COCOA_DEBUG("QemuCocoaAppController: applicationWillTerminate\n");
936
bellard5b0753e2005-03-01 21:37:28 +0000937 qemu_system_shutdown_request();
bellard5b0753e2005-03-01 21:37:28 +0000938 exit(0);
939}
940
Andreas Färber41ea49b2009-12-14 22:13:27 +0100941- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
942{
943 return YES;
944}
945
John Arbuckled9bc14f2015-09-25 23:13:59 +0100946- (NSApplicationTerminateReply)applicationShouldTerminate:
947 (NSApplication *)sender
948{
949 COCOA_DEBUG("QemuCocoaAppController: applicationShouldTerminate\n");
950 return [self verifyQuit];
951}
952
953/* Called when the user clicks on a window's close button */
954- (BOOL)windowShouldClose:(id)sender
955{
956 COCOA_DEBUG("QemuCocoaAppController: windowShouldClose\n");
957 [NSApp terminate: sender];
958 /* If the user allows the application to quit then the call to
959 * NSApp terminate will never return. If we get here then the user
960 * cancelled the quit, so we should return NO to not permit the
961 * closing of this window.
962 */
963 return NO;
964}
965
John Arbuckle3b178b72015-09-25 23:14:00 +0100966/* Called when QEMU goes into the background */
967- (void) applicationWillResignActive: (NSNotification *)aNotification
968{
969 COCOA_DEBUG("QemuCocoaAppController: applicationWillResignActive\n");
970 [cocoaView raiseAllKeys];
971}
972
thsc304f7e2008-01-22 23:25:15 +0000973- (void)startEmulationWithArgc:(int)argc argv:(char**)argv
974{
975 COCOA_DEBUG("QemuCocoaAppController: startEmulationWithArgc\n");
976
977 int status;
Andreas Färber3bbbee12011-05-29 19:42:51 +0200978 status = qemu_main(argc, argv, *_NSGetEnviron());
thsc304f7e2008-01-22 23:25:15 +0000979 exit(status);
980}
981
Programmingkid5d1b2ee2015-05-19 09:11:17 +0100982/* We abstract the method called by the Enter Fullscreen menu item
983 * because Mac OS 10.7 and higher disables it. This is because of the
984 * menu item's old selector's name toggleFullScreen:
985 */
986- (void) doToggleFullScreen:(id)sender
987{
988 [self toggleFullScreen:(id)sender];
989}
990
thsc304f7e2008-01-22 23:25:15 +0000991- (void)toggleFullScreen:(id)sender
bellard5b0753e2005-03-01 21:37:28 +0000992{
thsc304f7e2008-01-22 23:25:15 +0000993 COCOA_DEBUG("QemuCocoaAppController: toggleFullScreen\n");
994
995 [cocoaView toggleFullScreen:sender];
996}
997
John Arbucklef4747902016-03-23 14:26:17 +0000998/* Tries to find then open the specified filename */
999- (void) openDocumentation: (NSString *) filename
1000{
1001 /* Where to look for local files */
1002 NSString *path_array[] = {@"../share/doc/qemu/", @"../doc/qemu/", @"../"};
1003 NSString *full_file_path;
1004
1005 /* iterate thru the possible paths until the file is found */
1006 int index;
1007 for (index = 0; index < ARRAY_SIZE(path_array); index++) {
1008 full_file_path = [[NSBundle mainBundle] executablePath];
1009 full_file_path = [full_file_path stringByDeletingLastPathComponent];
1010 full_file_path = [NSString stringWithFormat: @"%@/%@%@", full_file_path,
1011 path_array[index], filename];
1012 if ([[NSWorkspace sharedWorkspace] openFile: full_file_path] == YES) {
1013 return;
1014 }
1015 }
1016
1017 /* If none of the paths opened a file */
1018 NSBeep();
1019 QEMU_Alert(@"Failed to open file");
1020}
1021
thsc304f7e2008-01-22 23:25:15 +00001022- (void)showQEMUDoc:(id)sender
1023{
1024 COCOA_DEBUG("QemuCocoaAppController: showQEMUDoc\n");
1025
John Arbucklef4747902016-03-23 14:26:17 +00001026 [self openDocumentation: @"qemu-doc.html"];
thsc304f7e2008-01-22 23:25:15 +00001027}
1028
1029- (void)showQEMUTec:(id)sender
1030{
1031 COCOA_DEBUG("QemuCocoaAppController: showQEMUTec\n");
1032
John Arbucklef4747902016-03-23 14:26:17 +00001033 [self openDocumentation: @"qemu-tech.html"];
bellard5b0753e2005-03-01 21:37:28 +00001034}
Programmingkid5d1b2ee2015-05-19 09:11:17 +01001035
1036/* Stretches video to fit host monitor size */
1037- (void)zoomToFit:(id) sender
1038{
1039 stretch_video = !stretch_video;
1040 if (stretch_video == true) {
1041 [sender setState: NSOnState];
1042 } else {
1043 [sender setState: NSOffState];
1044 }
1045}
bellard5b0753e2005-03-01 21:37:28 +00001046
Programmingkidb4c6a112015-05-19 09:11:18 +01001047/* Displays the console on the screen */
1048- (void)displayConsole:(id)sender
1049{
1050 console_select([sender tag]);
1051}
John Arbuckle8524f1c2015-06-19 10:53:27 +01001052
1053/* Pause the guest */
1054- (void)pauseQEMU:(id)sender
1055{
1056 qmp_stop(NULL);
1057 [sender setEnabled: NO];
1058 [[[sender menu] itemWithTitle: @"Resume"] setEnabled: YES];
1059 [self displayPause];
1060}
1061
1062/* Resume running the guest operating system */
1063- (void)resumeQEMU:(id) sender
1064{
1065 qmp_cont(NULL);
1066 [sender setEnabled: NO];
1067 [[[sender menu] itemWithTitle: @"Pause"] setEnabled: YES];
1068 [self removePause];
1069}
1070
1071/* Displays the word pause on the screen */
1072- (void)displayPause
1073{
1074 /* Coordinates have to be calculated each time because the window can change its size */
1075 int xCoord, yCoord, width, height;
1076 xCoord = ([normalWindow frame].size.width - [pauseLabel frame].size.width)/2;
1077 yCoord = [normalWindow frame].size.height - [pauseLabel frame].size.height - ([pauseLabel frame].size.height * .5);
1078 width = [pauseLabel frame].size.width;
1079 height = [pauseLabel frame].size.height;
1080 [pauseLabel setFrame: NSMakeRect(xCoord, yCoord, width, height)];
1081 [cocoaView addSubview: pauseLabel];
1082}
1083
1084/* Removes the word pause from the screen */
1085- (void)removePause
1086{
1087 [pauseLabel removeFromSuperview];
1088}
1089
John Arbuckle27074612015-06-19 10:53:27 +01001090/* Restarts QEMU */
1091- (void)restartQEMU:(id)sender
1092{
1093 qmp_system_reset(NULL);
1094}
1095
1096/* Powers down QEMU */
1097- (void)powerDownQEMU:(id)sender
1098{
1099 qmp_system_powerdown(NULL);
1100}
1101
John Arbuckle693a3e02015-06-19 10:53:27 +01001102/* Ejects the media.
1103 * Uses sender's tag to figure out the device to eject.
1104 */
1105- (void)ejectDeviceMedia:(id)sender
1106{
1107 NSString * drive;
1108 drive = [sender representedObject];
1109 if(drive == nil) {
1110 NSBeep();
1111 QEMU_Alert(@"Failed to find drive to eject!");
1112 return;
1113 }
1114
1115 Error *err = NULL;
1116 qmp_eject([drive cStringUsingEncoding: NSASCIIStringEncoding], false, false, &err);
1117 handleAnyDeviceErrors(err);
1118}
1119
1120/* Displays a dialog box asking the user to select an image file to load.
1121 * Uses sender's represented object value to figure out which drive to use.
1122 */
1123- (void)changeDeviceMedia:(id)sender
1124{
1125 /* Find the drive name */
1126 NSString * drive;
1127 drive = [sender representedObject];
1128 if(drive == nil) {
1129 NSBeep();
1130 QEMU_Alert(@"Could not find drive!");
1131 return;
1132 }
1133
1134 /* Display the file open dialog */
1135 NSOpenPanel * openPanel;
1136 openPanel = [NSOpenPanel openPanel];
1137 [openPanel setCanChooseFiles: YES];
1138 [openPanel setAllowsMultipleSelection: NO];
1139 [openPanel setAllowedFileTypes: supportedImageFileTypes];
1140 if([openPanel runModal] == NSFileHandlingPanelOKButton) {
1141 NSString * file = [[[openPanel URLs] objectAtIndex: 0] path];
1142 if(file == nil) {
1143 NSBeep();
1144 QEMU_Alert(@"Failed to convert URL to file path!");
1145 return;
1146 }
1147
1148 Error *err = NULL;
Max Reitz24fb4132015-11-06 16:27:06 +01001149 qmp_blockdev_change_medium([drive cStringUsingEncoding:
1150 NSASCIIStringEncoding],
1151 [file cStringUsingEncoding:
1152 NSASCIIStringEncoding],
1153 true, "raw",
Max Reitz39ff43d2015-11-11 04:49:44 +01001154 false, 0,
Max Reitz24fb4132015-11-06 16:27:06 +01001155 &err);
John Arbuckle693a3e02015-06-19 10:53:27 +01001156 handleAnyDeviceErrors(err);
1157 }
1158}
1159
John Arbuckled9bc14f2015-09-25 23:13:59 +01001160/* Verifies if the user really wants to quit */
1161- (BOOL)verifyQuit
1162{
1163 NSAlert *alert = [NSAlert new];
1164 [alert autorelease];
1165 [alert setMessageText: @"Are you sure you want to quit QEMU?"];
1166 [alert addButtonWithTitle: @"Cancel"];
1167 [alert addButtonWithTitle: @"Quit"];
1168 if([alert runModal] == NSAlertSecondButtonReturn) {
1169 return YES;
1170 } else {
1171 return NO;
1172 }
1173}
1174
Programmingkidb4c6a112015-05-19 09:11:18 +01001175@end
bellard5b0753e2005-03-01 21:37:28 +00001176
thsc304f7e2008-01-22 23:25:15 +00001177
thsc304f7e2008-01-22 23:25:15 +00001178int main (int argc, const char * argv[]) {
ths3b46e622007-09-17 08:09:54 +00001179
thsc304f7e2008-01-22 23:25:15 +00001180 gArgc = argc;
1181 gArgv = (char **)argv;
Andreas Färberf4918802009-12-13 02:11:44 +01001182 int i;
1183
1184 /* In case we don't need to display a window, let's not do that */
1185 for (i = 1; i < argc; i++) {
Tristan Gingolde4ebcc12011-03-15 14:18:22 +01001186 const char *opt = argv[i];
1187
1188 if (opt[0] == '-') {
1189 /* Treat --foo the same as -foo. */
1190 if (opt[1] == '-') {
1191 opt++;
1192 }
Alexandre Raymond98514842011-05-29 18:22:49 -04001193 if (!strcmp(opt, "-h") || !strcmp(opt, "-help") ||
1194 !strcmp(opt, "-vnc") ||
Tristan Gingolde4ebcc12011-03-15 14:18:22 +01001195 !strcmp(opt, "-nographic") ||
1196 !strcmp(opt, "-version") ||
Andreas Färber60b46aa2012-05-28 03:18:31 +02001197 !strcmp(opt, "-curses") ||
Rainer Müllerb12a84c2015-09-09 16:08:30 +02001198 !strcmp(opt, "-display") ||
Andreas Färber60b46aa2012-05-28 03:18:31 +02001199 !strcmp(opt, "-qtest")) {
Andreas Färber3bbbee12011-05-29 19:42:51 +02001200 return qemu_main(gArgc, gArgv, *_NSGetEnviron());
Tristan Gingolde4ebcc12011-03-15 14:18:22 +01001201 }
Andreas Färberf4918802009-12-13 02:11:44 +01001202 }
1203 }
ths3b46e622007-09-17 08:09:54 +00001204
thsc304f7e2008-01-22 23:25:15 +00001205 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
ths3b46e622007-09-17 08:09:54 +00001206
Peter Maydell42a5dfe2013-04-22 10:29:47 +00001207 // Pull this console process up to being a fully-fledged graphical
1208 // app with a menubar and Dock icon
1209 ProcessSerialNumber psn = { 0, kCurrentProcess };
1210 TransformProcessType(&psn, kProcessTransformToForegroundApplication);
1211
1212 [NSApplication sharedApplication];
ths3b46e622007-09-17 08:09:54 +00001213
thsc304f7e2008-01-22 23:25:15 +00001214 // Add menus
1215 NSMenu *menu;
1216 NSMenuItem *menuItem;
1217
bellard5b0753e2005-03-01 21:37:28 +00001218 [NSApp setMainMenu:[[NSMenu alloc] init]];
bellard5b0753e2005-03-01 21:37:28 +00001219
thsc304f7e2008-01-22 23:25:15 +00001220 // Application menu
1221 menu = [[NSMenu alloc] initWithTitle:@""];
1222 [menu addItemWithTitle:@"About QEMU" action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; // About QEMU
1223 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1224 [menu addItemWithTitle:@"Hide QEMU" action:@selector(hide:) keyEquivalent:@"h"]; //Hide QEMU
1225 menuItem = (NSMenuItem *)[menu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; // Hide Others
1226 [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)];
1227 [menu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; // Show All
1228 [menu addItem:[NSMenuItem separatorItem]]; //Separator
1229 [menu addItemWithTitle:@"Quit QEMU" action:@selector(terminate:) keyEquivalent:@"q"];
1230 menuItem = [[NSMenuItem alloc] initWithTitle:@"Apple" action:nil keyEquivalent:@""];
1231 [menuItem setSubmenu:menu];
1232 [[NSApp mainMenu] addItem:menuItem];
1233 [NSApp performSelector:@selector(setAppleMenu:) withObject:menu]; // Workaround (this method is private since 10.4+)
ths3b46e622007-09-17 08:09:54 +00001234
John Arbuckle8524f1c2015-06-19 10:53:27 +01001235 // Machine menu
1236 menu = [[NSMenu alloc] initWithTitle: @"Machine"];
1237 [menu setAutoenablesItems: NO];
1238 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Pause" action: @selector(pauseQEMU:) keyEquivalent: @""] autorelease]];
1239 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Resume" action: @selector(resumeQEMU:) keyEquivalent: @""] autorelease];
1240 [menu addItem: menuItem];
1241 [menuItem setEnabled: NO];
John Arbuckle27074612015-06-19 10:53:27 +01001242 [menu addItem: [NSMenuItem separatorItem]];
1243 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Reset" action: @selector(restartQEMU:) keyEquivalent: @""] autorelease]];
1244 [menu addItem: [[[NSMenuItem alloc] initWithTitle: @"Power Down" action: @selector(powerDownQEMU:) keyEquivalent: @""] autorelease]];
John Arbuckle8524f1c2015-06-19 10:53:27 +01001245 menuItem = [[[NSMenuItem alloc] initWithTitle: @"Machine" action:nil keyEquivalent:@""] autorelease];
1246 [menuItem setSubmenu:menu];
1247 [[NSApp mainMenu] addItem:menuItem];
1248
thsc304f7e2008-01-22 23:25:15 +00001249 // View menu
1250 menu = [[NSMenu alloc] initWithTitle:@"View"];
Programmingkid5d1b2ee2015-05-19 09:11:17 +01001251 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
1252 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease]];
thsc304f7e2008-01-22 23:25:15 +00001253 menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
1254 [menuItem setSubmenu:menu];
1255 [[NSApp mainMenu] addItem:menuItem];
1256
1257 // Window menu
1258 menu = [[NSMenu alloc] initWithTitle:@"Window"];
1259 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"] autorelease]]; // Miniaturize
1260 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1261 [menuItem setSubmenu:menu];
1262 [[NSApp mainMenu] addItem:menuItem];
1263 [NSApp setWindowsMenu:menu];
1264
1265 // Help menu
1266 menu = [[NSMenu alloc] initWithTitle:@"Help"];
1267 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Documentation" action:@selector(showQEMUDoc:) keyEquivalent:@"?"] autorelease]]; // QEMU Help
1268 [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"QEMU Technology" action:@selector(showQEMUTec:) keyEquivalent:@""] autorelease]]; // QEMU Help
1269 menuItem = [[[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""] autorelease];
1270 [menuItem setSubmenu:menu];
1271 [[NSApp mainMenu] addItem:menuItem];
1272
1273 // Create an Application controller
1274 QemuCocoaAppController *appController = [[QemuCocoaAppController alloc] init];
1275 [NSApp setDelegate:appController];
1276
1277 // Start the main event loop
bellard5b0753e2005-03-01 21:37:28 +00001278 [NSApp run];
ths3b46e622007-09-17 08:09:54 +00001279
thsc304f7e2008-01-22 23:25:15 +00001280 [appController release];
bellard5b0753e2005-03-01 21:37:28 +00001281 [pool release];
bellardcae41b12006-05-22 21:25:04 +00001282
bellard5b0753e2005-03-01 21:37:28 +00001283 return 0;
1284}
thsc304f7e2008-01-22 23:25:15 +00001285
1286
1287
1288#pragma mark qemu
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001289static void cocoa_update(DisplayChangeListener *dcl,
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001290 int x, int y, int w, int h)
thsc304f7e2008-01-22 23:25:15 +00001291{
Peter Maydell6e657e62013-04-22 10:29:46 +00001292 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1293
thsc304f7e2008-01-22 23:25:15 +00001294 COCOA_DEBUG("qemu_cocoa: cocoa_update\n");
1295
1296 NSRect rect;
1297 if ([cocoaView cdx] == 1.0) {
1298 rect = NSMakeRect(x, [cocoaView gscreen].height - y - h, w, h);
1299 } else {
1300 rect = NSMakeRect(
1301 x * [cocoaView cdx],
1302 ([cocoaView gscreen].height - y - h) * [cocoaView cdy],
1303 w * [cocoaView cdx],
1304 h * [cocoaView cdy]);
1305 }
Andreas Färber17ccbc22009-12-13 02:08:58 +01001306 [cocoaView setNeedsDisplayInRect:rect];
Peter Maydell6e657e62013-04-22 10:29:46 +00001307
1308 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001309}
1310
Gerd Hoffmannc12aeb82013-02-28 15:03:04 +01001311static void cocoa_switch(DisplayChangeListener *dcl,
Gerd Hoffmannc12aeb82013-02-28 15:03:04 +01001312 DisplaySurface *surface)
thsc304f7e2008-01-22 23:25:15 +00001313{
Peter Maydell6e657e62013-04-22 10:29:46 +00001314 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
thsc304f7e2008-01-22 23:25:15 +00001315
Peter Maydell6e657e62013-04-22 10:29:46 +00001316 COCOA_DEBUG("qemu_cocoa: cocoa_switch\n");
Gerd Hoffmann5e00d3a2013-03-01 12:52:06 +01001317 [cocoaView switchSurface:surface];
Peter Maydell6e657e62013-04-22 10:29:46 +00001318 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001319}
1320
Gerd Hoffmannbc2ed972013-03-01 13:03:04 +01001321static void cocoa_refresh(DisplayChangeListener *dcl)
thsc304f7e2008-01-22 23:25:15 +00001322{
Peter Maydell6e657e62013-04-22 10:29:46 +00001323 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
1324
thsc304f7e2008-01-22 23:25:15 +00001325 COCOA_DEBUG("qemu_cocoa: cocoa_refresh\n");
John Arbuckle468a8952015-10-13 21:51:18 +01001326 graphic_hw_update(NULL);
thsc304f7e2008-01-22 23:25:15 +00001327
Gerd Hoffmann21bae112013-12-04 14:08:04 +01001328 if (qemu_input_is_absolute()) {
thsc304f7e2008-01-22 23:25:15 +00001329 if (![cocoaView isAbsoluteEnabled]) {
Peter Maydell49b9bd42013-12-08 22:59:03 +00001330 if ([cocoaView isMouseGrabbed]) {
thsc304f7e2008-01-22 23:25:15 +00001331 [cocoaView ungrabMouse];
1332 }
1333 }
1334 [cocoaView setAbsoluteEnabled:YES];
1335 }
1336
1337 NSDate *distantPast;
1338 NSEvent *event;
1339 distantPast = [NSDate distantPast];
1340 do {
1341 event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:distantPast
1342 inMode: NSDefaultRunLoopMode dequeue:YES];
1343 if (event != nil) {
1344 [cocoaView handleEvent:event];
1345 }
1346 } while(event != nil);
Peter Maydell6e657e62013-04-22 10:29:46 +00001347 [pool release];
thsc304f7e2008-01-22 23:25:15 +00001348}
1349
1350static void cocoa_cleanup(void)
1351{
1352 COCOA_DEBUG("qemu_cocoa: cocoa_cleanup\n");
Blue Swirl58a06672011-08-21 18:42:08 +00001353 g_free(dcl);
thsc304f7e2008-01-22 23:25:15 +00001354}
1355
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001356static const DisplayChangeListenerOps dcl_ops = {
1357 .dpy_name = "cocoa",
Peter Maydell8510d912013-03-18 20:28:21 +00001358 .dpy_gfx_update = cocoa_update,
1359 .dpy_gfx_switch = cocoa_switch,
1360 .dpy_refresh = cocoa_refresh,
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001361};
1362
Programmingkidb4c6a112015-05-19 09:11:18 +01001363/* Returns a name for a given console */
1364static NSString * getConsoleName(QemuConsole * console)
1365{
1366 return [NSString stringWithFormat: @"%s", qemu_console_get_label(console)];
1367}
1368
1369/* Add an entry to the View menu for each console */
1370static void add_console_menu_entries(void)
1371{
1372 NSMenu *menu;
1373 NSMenuItem *menuItem;
1374 int index = 0;
1375
1376 menu = [[[NSApp mainMenu] itemWithTitle:@"View"] submenu];
1377
1378 [menu addItem:[NSMenuItem separatorItem]];
1379
1380 while (qemu_console_lookup_by_index(index) != NULL) {
1381 menuItem = [[[NSMenuItem alloc] initWithTitle: getConsoleName(qemu_console_lookup_by_index(index))
1382 action: @selector(displayConsole:) keyEquivalent: @""] autorelease];
1383 [menuItem setTag: index];
1384 [menu addItem: menuItem];
1385 index++;
1386 }
1387}
1388
John Arbuckle693a3e02015-06-19 10:53:27 +01001389/* Make menu items for all removable devices.
1390 * Each device is given an 'Eject' and 'Change' menu item.
1391 */
John Arbucklea7940ec2015-10-13 21:51:18 +01001392static void addRemovableDevicesMenuItems(void)
John Arbuckle693a3e02015-06-19 10:53:27 +01001393{
1394 NSMenu *menu;
1395 NSMenuItem *menuItem;
1396 BlockInfoList *currentDevice, *pointerToFree;
1397 NSString *deviceName;
1398
1399 currentDevice = qmp_query_block(NULL);
1400 pointerToFree = currentDevice;
1401 if(currentDevice == NULL) {
1402 NSBeep();
1403 QEMU_Alert(@"Failed to query for block devices!");
1404 return;
1405 }
1406
1407 menu = [[[NSApp mainMenu] itemWithTitle:@"Machine"] submenu];
1408
1409 // Add a separator between related groups of menu items
1410 [menu addItem:[NSMenuItem separatorItem]];
1411
1412 // Set the attributes to the "Removable Media" menu item
1413 NSString *titleString = @"Removable Media";
1414 NSMutableAttributedString *attString=[[NSMutableAttributedString alloc] initWithString:titleString];
1415 NSColor *newColor = [NSColor blackColor];
1416 NSFontManager *fontManager = [NSFontManager sharedFontManager];
1417 NSFont *font = [fontManager fontWithFamily:@"Helvetica"
1418 traits:NSBoldFontMask|NSItalicFontMask
1419 weight:0
1420 size:14];
1421 [attString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, [titleString length])];
1422 [attString addAttribute:NSForegroundColorAttributeName value:newColor range:NSMakeRange(0, [titleString length])];
1423 [attString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInt: 1] range:NSMakeRange(0, [titleString length])];
1424
1425 // Add the "Removable Media" menu item
1426 menuItem = [NSMenuItem new];
1427 [menuItem setAttributedTitle: attString];
1428 [menuItem setEnabled: NO];
1429 [menu addItem: menuItem];
1430
1431 /* Loop thru all the block devices in the emulator */
1432 while (currentDevice) {
1433 deviceName = [[NSString stringWithFormat: @"%s", currentDevice->value->device] retain];
1434
1435 if(currentDevice->value->removable) {
1436 menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Change %s...", currentDevice->value->device]
1437 action: @selector(changeDeviceMedia:)
1438 keyEquivalent: @""];
1439 [menu addItem: menuItem];
1440 [menuItem setRepresentedObject: deviceName];
1441 [menuItem autorelease];
1442
1443 menuItem = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"Eject %s", currentDevice->value->device]
1444 action: @selector(ejectDeviceMedia:)
1445 keyEquivalent: @""];
1446 [menu addItem: menuItem];
1447 [menuItem setRepresentedObject: deviceName];
1448 [menuItem autorelease];
1449 }
1450 currentDevice = currentDevice->next;
1451 }
1452 qapi_free_BlockInfoList(pointerToFree);
1453}
1454
thsc304f7e2008-01-22 23:25:15 +00001455void cocoa_display_init(DisplayState *ds, int full_screen)
1456{
1457 COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
1458
Programmingkid43227af2015-05-19 09:11:17 +01001459 /* if fullscreen mode is to be used */
1460 if (full_screen == true) {
1461 [NSApp activateIgnoringOtherApps: YES];
1462 [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
1463 }
1464
Blue Swirl58a06672011-08-21 18:42:08 +00001465 dcl = g_malloc0(sizeof(DisplayChangeListener));
1466
aliguori9794f742009-03-04 19:25:22 +00001467 // register vga output callbacks
Gerd Hoffmann7c20b4a2012-11-13 14:51:41 +01001468 dcl->ops = &dcl_ops;
Gerd Hoffmann52090892013-04-23 15:44:31 +02001469 register_displaychangelistener(dcl);
thsc304f7e2008-01-22 23:25:15 +00001470
1471 // register cleanup function
1472 atexit(cocoa_cleanup);
Programmingkidb4c6a112015-05-19 09:11:18 +01001473
1474 /* At this point QEMU has created all the consoles, so we can add View
1475 * menu entries for them.
1476 */
1477 add_console_menu_entries();
John Arbuckle693a3e02015-06-19 10:53:27 +01001478
1479 /* Give all removable devices a menu item.
1480 * Has to be called after QEMU has started to
1481 * find out what removable devices it has.
1482 */
1483 addRemovableDevicesMenuItems();
thsc304f7e2008-01-22 23:25:15 +00001484}