summary refs log tree commit diff stats
path: root/ui/cocoa.m
diff options
context:
space:
mode:
authorProgrammingkid <programmingkidx@gmail.com>2015-05-19 09:11:17 +0100
committerPeter Maydell <peter.maydell@linaro.org>2015-05-19 09:11:17 +0100
commit43227af88a36faed50cedb0c7cef71a49c0be9d2 (patch)
treef623c02e93955192edb581c766c81712efa1e1c2 /ui/cocoa.m
parent5d1b2eef58632974494b4b94f8970846aa0bffb9 (diff)
downloadfocaccia-qemu-43227af88a36faed50cedb0c7cef71a49c0be9d2.tar.gz
focaccia-qemu-43227af88a36faed50cedb0c7cef71a49c0be9d2.zip
ui/cocoa: Make -full-screen option work on Mac OS X
This patch makes the -full-screen option actually instruct QEMU to
enter fullscreen at startup, on Mac OS X.

Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'ui/cocoa.m')
-rw-r--r--ui/cocoa.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/cocoa.m b/ui/cocoa.m
index 351b71ffad..d1d29bc304 100644
--- a/ui/cocoa.m
+++ b/ui/cocoa.m
@@ -1161,6 +1161,12 @@ void cocoa_display_init(DisplayState *ds, int full_screen)
 {
     COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
 
+    /* if fullscreen mode is to be used */
+    if (full_screen == true) {
+        [NSApp activateIgnoringOtherApps: YES];
+        [(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
+    }
+
     dcl = g_malloc0(sizeof(DisplayChangeListener));
 
     // register vga output callbacks