mirror of https://github.com/xqemu/xqemu.git
cocoa: use DisplayOptions
Switch cocoa ui to use qapi DisplayOptions for configuration. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20180202111022.19269-10-kraxel@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
14f130fad8
commit
767f9bf3b5
|
@ -450,9 +450,9 @@ static inline void sdl_display_init(DisplayState *ds, DisplayOptions *opts)
|
||||||
|
|
||||||
/* cocoa.m */
|
/* cocoa.m */
|
||||||
#ifdef CONFIG_COCOA
|
#ifdef CONFIG_COCOA
|
||||||
void cocoa_display_init(DisplayState *ds, int full_screen);
|
void cocoa_display_init(DisplayState *ds, DisplayOptions *opts);
|
||||||
#else
|
#else
|
||||||
static inline void cocoa_display_init(DisplayState *ds, int full_screen)
|
static inline void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
|
||||||
{
|
{
|
||||||
/* This must never be called if CONFIG_COCOA is disabled */
|
/* This must never be called if CONFIG_COCOA is disabled */
|
||||||
error_report("Cocoa support is disabled");
|
error_report("Cocoa support is disabled");
|
||||||
|
|
|
@ -1020,7 +1020,8 @@
|
||||||
#
|
#
|
||||||
##
|
##
|
||||||
{ 'enum' : 'DisplayType',
|
{ 'enum' : 'DisplayType',
|
||||||
'data' : [ 'none', 'gtk', 'sdl', 'egl-headless', 'curses' ] }
|
'data' : [ 'none', 'gtk', 'sdl',
|
||||||
|
'egl-headless', 'curses', 'cocoa' ] }
|
||||||
|
|
||||||
##
|
##
|
||||||
# @DisplayOptions:
|
# @DisplayOptions:
|
||||||
|
@ -1045,4 +1046,5 @@
|
||||||
'gtk' : 'DisplayGTK',
|
'gtk' : 'DisplayGTK',
|
||||||
'sdl' : 'DisplayNoOpts',
|
'sdl' : 'DisplayNoOpts',
|
||||||
'egl-headless' : 'DisplayNoOpts',
|
'egl-headless' : 'DisplayNoOpts',
|
||||||
'curses' : 'DisplayNoOpts' } }
|
'curses' : 'DisplayNoOpts',
|
||||||
|
'cocoa' : 'DisplayNoOpts' } }
|
||||||
|
|
|
@ -1683,12 +1683,12 @@ static void addRemovableDevicesMenuItems(void)
|
||||||
qapi_free_BlockInfoList(pointerToFree);
|
qapi_free_BlockInfoList(pointerToFree);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cocoa_display_init(DisplayState *ds, int full_screen)
|
void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
|
||||||
{
|
{
|
||||||
COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
|
COCOA_DEBUG("qemu_cocoa: cocoa_display_init\n");
|
||||||
|
|
||||||
/* if fullscreen mode is to be used */
|
/* if fullscreen mode is to be used */
|
||||||
if (full_screen == true) {
|
if (opts->has_full_screen && opts->full_screen) {
|
||||||
[NSApp activateIgnoringOtherApps: YES];
|
[NSApp activateIgnoringOtherApps: YES];
|
||||||
[(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
|
[(QemuCocoaAppController *)[[NSApplication sharedApplication] delegate] toggleFullScreen: nil];
|
||||||
}
|
}
|
||||||
|
|
3
vl.c
3
vl.c
|
@ -4344,6 +4344,7 @@ int main(int argc, char **argv, char **envp)
|
||||||
dpy.type = DISPLAY_TYPE_SDL;
|
dpy.type = DISPLAY_TYPE_SDL;
|
||||||
#elif defined(CONFIG_COCOA)
|
#elif defined(CONFIG_COCOA)
|
||||||
display_type = DT_COCOA;
|
display_type = DT_COCOA;
|
||||||
|
dpy.type = DISPLAY_TYPE_COCOA;
|
||||||
#elif defined(CONFIG_VNC)
|
#elif defined(CONFIG_VNC)
|
||||||
vnc_parse("localhost:0,to=99,id=default", &error_abort);
|
vnc_parse("localhost:0,to=99,id=default", &error_abort);
|
||||||
#else
|
#else
|
||||||
|
@ -4705,7 +4706,7 @@ int main(int argc, char **argv, char **envp)
|
||||||
sdl_display_init(ds, &dpy);
|
sdl_display_init(ds, &dpy);
|
||||||
break;
|
break;
|
||||||
case DT_COCOA:
|
case DT_COCOA:
|
||||||
cocoa_display_init(ds, full_screen);
|
cocoa_display_init(ds, &dpy);
|
||||||
break;
|
break;
|
||||||
case DT_GTK:
|
case DT_GTK:
|
||||||
gtk_display_init(ds, &dpy);
|
gtk_display_init(ds, &dpy);
|
||||||
|
|
Loading…
Reference in New Issue