2005-11-22 10:03:32 +00:00
|
|
|
/* gdkdisplay-quartz.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Imendio AB
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2005-11-22 10:03:32 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2010-12-23 11:59:26 +00:00
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include <gdk/gdkdisplayprivate.h>
|
2018-12-03 12:22:19 +00:00
|
|
|
#include <gdk/gdkmonitorprivate.h>
|
2010-12-23 11:59:26 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
#include "gdkprivate-quartz.h"
|
2010-12-23 11:59:26 +00:00
|
|
|
#include "gdkquartzscreen.h"
|
|
|
|
#include "gdkquartzwindow.h"
|
|
|
|
#include "gdkquartzdisplay.h"
|
|
|
|
#include "gdkquartzdevicemanager-core.h"
|
2017-03-10 13:48:36 +00:00
|
|
|
#include "gdkscreen.h"
|
|
|
|
#include "gdkmonitorprivate.h"
|
|
|
|
#include "gdkdisplay-quartz.h"
|
2010-12-23 11:59:26 +00:00
|
|
|
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static GdkWindow *
|
|
|
|
gdk_quartz_display_get_default_group (GdkDisplay *display)
|
2006-03-27 10:47:29 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), NULL);
|
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceManager *
|
|
|
|
_gdk_device_manager_new (GdkDisplay *display)
|
|
|
|
{
|
2010-12-22 16:30:29 +00:00
|
|
|
return g_object_new (GDK_TYPE_QUARTZ_DEVICE_MANAGER_CORE,
|
2010-05-25 22:38:44 +00:00
|
|
|
"display", display,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
GdkDisplay *
|
2010-12-17 16:38:02 +00:00
|
|
|
_gdk_quartz_display_open (const gchar *display_name)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
if (_gdk_display != NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2007-05-21 19:40:43 +00:00
|
|
|
/* Initialize application */
|
|
|
|
[NSApplication sharedApplication];
|
|
|
|
|
2010-12-23 12:39:07 +00:00
|
|
|
_gdk_display = g_object_new (gdk_quartz_display_get_type (), NULL);
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display->device_manager = _gdk_device_manager_new (_gdk_display);
|
2009-10-24 09:48:39 +00:00
|
|
|
|
2010-12-23 12:43:29 +00:00
|
|
|
_gdk_screen = g_object_new (gdk_quartz_screen_get_type (), NULL);
|
2010-12-22 13:45:35 +00:00
|
|
|
_gdk_quartz_screen_init_visuals (_gdk_screen);
|
2010-12-17 16:05:53 +00:00
|
|
|
|
2010-12-23 13:08:40 +00:00
|
|
|
_gdk_quartz_window_init_windowing (_gdk_display, _gdk_screen);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2010-12-17 16:38:02 +00:00
|
|
|
_gdk_quartz_events_init ();
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
#if 0
|
|
|
|
/* FIXME: Remove the #if 0 when we have these functions */
|
2010-12-17 15:53:00 +00:00
|
|
|
_gdk_quartz_dnd_init ();
|
2005-11-22 10:03:32 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-17 22:00:00 +00:00
|
|
|
g_signal_emit_by_name (_gdk_display, "opened");
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
return _gdk_display;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static const gchar *
|
|
|
|
gdk_quartz_display_get_name (GdkDisplay *display)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2006-08-24 19:41:40 +00:00
|
|
|
static gchar *display_name = NULL;
|
|
|
|
|
2007-03-10 21:04:05 +00:00
|
|
|
if (!display_name)
|
|
|
|
{
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
display_name = g_strdup ([[[NSHost currentHost] name] UTF8String]);
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
2006-08-24 19:41:40 +00:00
|
|
|
|
|
|
|
return display_name;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static GdkScreen *
|
|
|
|
gdk_quartz_display_get_default_screen (GdkDisplay *display)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
return _gdk_screen;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static void
|
|
|
|
gdk_quartz_display_beep (GdkDisplay *display)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DISPLAY (display));
|
|
|
|
|
|
|
|
NSBeep();
|
|
|
|
}
|
|
|
|
|
2010-12-23 13:08:40 +00:00
|
|
|
static void
|
|
|
|
gdk_quartz_display_sync (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
/* Not supported. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_quartz_display_flush (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
/* Not supported. */
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_supports_selection_notification (GdkDisplay *display)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DISPLAY (display), FALSE);
|
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_request_selection_notification (GdkDisplay *display,
|
|
|
|
GdkAtom selection)
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_supports_clipboard_persistence (GdkDisplay *display)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_supports_shapes (GdkDisplay *display)
|
2006-02-20 11:57:12 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_supports_input_shapes (GdkDisplay *display)
|
2006-02-20 11:57:12 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static void
|
|
|
|
gdk_quartz_display_store_clipboard (GdkDisplay *display,
|
|
|
|
GdkWindow *clipboard_window,
|
|
|
|
guint32 time_,
|
|
|
|
const GdkAtom *targets,
|
|
|
|
gint n_targets)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
2007-06-01 12:16:12 +00:00
|
|
|
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_quartz_display_supports_composite (GdkDisplay *display)
|
2007-06-01 12:16:12 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-01-24 09:03:25 +00:00
|
|
|
|
2010-12-23 12:39:07 +00:00
|
|
|
static gulong
|
|
|
|
gdk_quartz_display_get_next_serial (GdkDisplay *display)
|
2009-01-24 09:03:25 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2010-12-22 02:13:02 +00:00
|
|
|
|
2010-12-23 12:09:01 +00:00
|
|
|
static void
|
2010-12-23 12:39:07 +00:00
|
|
|
gdk_quartz_display_notify_startup_complete (GdkDisplay *display,
|
|
|
|
const gchar *startup_id)
|
2010-12-23 12:09:01 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement? */
|
|
|
|
}
|
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
/* The display monitor list comprises all of the CGDisplays connected
|
|
|
|
to the system, some of which may not be drawable either because
|
|
|
|
they're asleep or are mirroring another monitor. The NSScreens
|
|
|
|
array contains only the monitors that are currently drawable and we
|
|
|
|
use the index of the screens array placing GdkNSViews, so we'll use
|
|
|
|
the same for determining the number of monitors and indexing them.
|
|
|
|
*/
|
|
|
|
|
2017-03-10 13:48:36 +00:00
|
|
|
static int
|
|
|
|
gdk_quartz_display_get_n_monitors (GdkDisplay *display)
|
|
|
|
{
|
2018-12-03 12:22:19 +00:00
|
|
|
int n;
|
2017-03-10 13:48:36 +00:00
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
2017-03-10 13:48:36 +00:00
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
n = [[NSScreen screens] count];
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
2017-03-10 13:48:36 +00:00
|
|
|
|
|
|
|
static GdkMonitor *
|
|
|
|
gdk_quartz_display_get_monitor (GdkDisplay *display,
|
|
|
|
int monitor_num)
|
|
|
|
{
|
|
|
|
GdkQuartzDisplay *quartz_display = GDK_QUARTZ_DISPLAY (display);
|
2018-12-03 12:22:19 +00:00
|
|
|
NSArray* screens;
|
|
|
|
NSScreen *screen = NULL;
|
|
|
|
CGDirectDisplayID id = 0;
|
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
2017-03-10 13:48:36 +00:00
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
screens = [NSScreen screens];
|
|
|
|
if (monitor_num >= 0 && monitor_num < [screens count])
|
|
|
|
{
|
|
|
|
screen = [screens objectAtIndex:monitor_num];
|
|
|
|
id = [[[screen deviceDescription] valueForKey: @"NSScreenNumber"] unsignedIntValue];
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
|
|
|
|
if (id)
|
|
|
|
return g_hash_table_lookup (quartz_display->monitors, GINT_TO_POINTER (id));
|
2017-03-10 13:48:36 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkMonitor *
|
|
|
|
gdk_quartz_display_get_primary_monitor (GdkDisplay *display)
|
|
|
|
{
|
|
|
|
GdkQuartzDisplay *quartz_display = GDK_QUARTZ_DISPLAY (display);
|
2018-12-03 12:22:19 +00:00
|
|
|
CGDirectDisplayID primary_id = CGMainDisplayID ();
|
2017-03-10 13:48:36 +00:00
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
return g_hash_table_lookup (quartz_display->monitors,
|
|
|
|
GINT_TO_POINTER (primary_id));
|
2017-03-10 13:48:36 +00:00
|
|
|
}
|
2010-12-23 12:09:01 +00:00
|
|
|
|
2010-12-23 12:39:07 +00:00
|
|
|
G_DEFINE_TYPE (GdkQuartzDisplay, gdk_quartz_display, GDK_TYPE_DISPLAY)
|
2010-12-22 02:13:02 +00:00
|
|
|
|
|
|
|
static void
|
2010-12-23 12:39:07 +00:00
|
|
|
gdk_quartz_display_init (GdkQuartzDisplay *display)
|
2010-12-22 02:13:02 +00:00
|
|
|
{
|
2018-12-03 12:22:19 +00:00
|
|
|
uint32_t max_displays = 0, disp;
|
|
|
|
CGDirectDisplayID *displays;
|
|
|
|
CGGetActiveDisplayList (0, NULL, &max_displays);
|
|
|
|
display->monitors = g_hash_table_new_full (g_direct_hash, NULL,
|
|
|
|
NULL, g_object_unref);
|
|
|
|
displays = g_new0 (CGDirectDisplayID, max_displays);
|
|
|
|
CGGetActiveDisplayList (max_displays, displays, &max_displays);
|
|
|
|
for (disp = 0; disp < max_displays; ++disp)
|
|
|
|
{
|
|
|
|
CGSize disp_size = CGDisplayScreenSize (displays[disp]);
|
|
|
|
gint width = (int)trunc (disp_size.width);
|
|
|
|
gint height = (int)trunc (disp_size.height);
|
|
|
|
CGRect disp_bounds = CGDisplayBounds (displays[disp]);
|
|
|
|
GdkRectangle disp_geometry = {(int)trunc (disp_bounds.origin.x),
|
|
|
|
(int)trunc (disp_bounds.origin.y),
|
|
|
|
(int)trunc (disp_bounds.size.width),
|
|
|
|
(int)trunc (disp_bounds.size.height)};
|
|
|
|
CGDisplayModeRef mode = CGDisplayCopyDisplayMode (displays[disp]);
|
|
|
|
gint refresh_rate = (int)trunc (CGDisplayModeGetRefreshRate (mode));
|
|
|
|
GdkQuartzMonitor *quartz_monitor = g_object_new (GDK_TYPE_QUARTZ_MONITOR,
|
|
|
|
"display", display, NULL);
|
|
|
|
GdkMonitor *monitor = GDK_MONITOR (quartz_monitor);
|
|
|
|
|
|
|
|
monitor->width_mm = width;
|
|
|
|
monitor->height_mm = height;
|
|
|
|
monitor->geometry = disp_geometry;
|
|
|
|
monitor->scale_factor = 1;
|
|
|
|
monitor->refresh_rate = refresh_rate;
|
|
|
|
monitor->subpixel_layout = GDK_SUBPIXEL_LAYOUT_UNKNOWN;
|
|
|
|
|
|
|
|
g_hash_table_insert (display->monitors, GINT_TO_POINTER (displays[disp]),
|
|
|
|
monitor);
|
|
|
|
CGDisplayModeRelease (mode);
|
|
|
|
}
|
2010-12-17 16:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-23 12:39:07 +00:00
|
|
|
gdk_quartz_display_dispose (GObject *object)
|
2010-12-17 16:38:02 +00:00
|
|
|
{
|
2010-12-22 15:05:12 +00:00
|
|
|
GdkQuartzDisplay *display_quartz = GDK_QUARTZ_DISPLAY (object);
|
|
|
|
|
2018-12-03 12:22:19 +00:00
|
|
|
g_hash_table_destroy (display_quartz->monitors);
|
2017-03-10 13:48:36 +00:00
|
|
|
|
2010-12-23 12:39:07 +00:00
|
|
|
G_OBJECT_CLASS (gdk_quartz_display_parent_class)->dispose (object);
|
2010-12-22 02:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-23 12:39:07 +00:00
|
|
|
gdk_quartz_display_finalize (GObject *object)
|
2010-12-22 02:13:02 +00:00
|
|
|
{
|
2010-12-23 12:39:07 +00:00
|
|
|
G_OBJECT_CLASS (gdk_quartz_display_parent_class)->finalize (object);
|
2010-12-22 02:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-23 12:39:07 +00:00
|
|
|
gdk_quartz_display_class_init (GdkQuartzDisplayClass *class)
|
2010-12-22 02:13:02 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
GdkDisplayClass *display_class = GDK_DISPLAY_CLASS (class);
|
|
|
|
|
2010-12-23 12:39:07 +00:00
|
|
|
object_class->finalize = gdk_quartz_display_finalize;
|
2011-05-22 10:29:37 +00:00
|
|
|
object_class->dispose = gdk_quartz_display_dispose;
|
2010-12-22 02:13:02 +00:00
|
|
|
|
2010-12-22 15:56:58 +00:00
|
|
|
display_class->window_type = GDK_TYPE_QUARTZ_WINDOW;
|
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
display_class->get_name = gdk_quartz_display_get_name;
|
|
|
|
display_class->get_default_screen = gdk_quartz_display_get_default_screen;
|
|
|
|
display_class->beep = gdk_quartz_display_beep;
|
2010-12-23 13:08:40 +00:00
|
|
|
display_class->sync = gdk_quartz_display_sync;
|
|
|
|
display_class->flush = gdk_quartz_display_flush;
|
2010-12-17 16:46:22 +00:00
|
|
|
display_class->has_pending = _gdk_quartz_display_has_pending;
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->queue_events = _gdk_quartz_display_queue_events;
|
2010-12-22 02:13:02 +00:00
|
|
|
display_class->get_default_group = gdk_quartz_display_get_default_group;
|
|
|
|
display_class->supports_selection_notification = gdk_quartz_display_supports_selection_notification;
|
|
|
|
display_class->request_selection_notification = gdk_quartz_display_request_selection_notification;
|
2018-11-17 00:46:21 +00:00
|
|
|
|
2010-12-22 02:13:02 +00:00
|
|
|
display_class->supports_shapes = gdk_quartz_display_supports_shapes;
|
|
|
|
display_class->supports_input_shapes = gdk_quartz_display_supports_input_shapes;
|
|
|
|
display_class->supports_composite = gdk_quartz_display_supports_composite;
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->supports_cursor_alpha = _gdk_quartz_display_supports_cursor_alpha;
|
|
|
|
display_class->supports_cursor_color = _gdk_quartz_display_supports_cursor_color;
|
|
|
|
|
|
|
|
display_class->supports_clipboard_persistence = gdk_quartz_display_supports_clipboard_persistence;
|
|
|
|
display_class->store_clipboard = gdk_quartz_display_store_clipboard;
|
|
|
|
|
|
|
|
display_class->get_default_cursor_size = _gdk_quartz_display_get_default_cursor_size;
|
|
|
|
display_class->get_maximal_cursor_size = _gdk_quartz_display_get_maximal_cursor_size;
|
2010-12-17 17:01:54 +00:00
|
|
|
display_class->get_cursor_for_type = _gdk_quartz_display_get_cursor_for_type;
|
|
|
|
display_class->get_cursor_for_name = _gdk_quartz_display_get_cursor_for_name;
|
2013-08-11 17:43:35 +00:00
|
|
|
display_class->get_cursor_for_surface = _gdk_quartz_display_get_cursor_for_surface;
|
2010-12-22 16:06:13 +00:00
|
|
|
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->get_app_launch_context = NULL; /* FIXME */
|
2010-12-22 16:06:13 +00:00
|
|
|
display_class->before_process_all_updates = _gdk_quartz_display_before_process_all_updates;
|
|
|
|
display_class->after_process_all_updates = _gdk_quartz_display_after_process_all_updates;
|
2010-12-23 12:39:07 +00:00
|
|
|
display_class->get_next_serial = gdk_quartz_display_get_next_serial;
|
|
|
|
display_class->notify_startup_complete = gdk_quartz_display_notify_startup_complete;
|
2010-12-17 17:25:47 +00:00
|
|
|
display_class->event_data_copy = _gdk_quartz_display_event_data_copy;
|
|
|
|
display_class->event_data_free = _gdk_quartz_display_event_data_free;
|
2010-12-17 17:34:40 +00:00
|
|
|
display_class->create_window_impl = _gdk_quartz_display_create_window_impl;
|
2010-12-17 17:46:46 +00:00
|
|
|
display_class->get_keymap = _gdk_quartz_display_get_keymap;
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->push_error_trap = NULL; /* FIXME */
|
|
|
|
display_class->pop_error_trap = NULL; /* FIXME */
|
|
|
|
|
2010-12-17 18:25:04 +00:00
|
|
|
display_class->get_selection_owner = _gdk_quartz_display_get_selection_owner;
|
|
|
|
display_class->set_selection_owner = _gdk_quartz_display_set_selection_owner;
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->send_selection_notify = NULL; /* FIXME */
|
2010-12-17 18:29:54 +00:00
|
|
|
display_class->get_selection_property = _gdk_quartz_display_get_selection_property;
|
|
|
|
display_class->convert_selection = _gdk_quartz_display_convert_selection;
|
2010-12-17 18:34:04 +00:00
|
|
|
display_class->text_property_to_utf8_list = _gdk_quartz_display_text_property_to_utf8_list;
|
|
|
|
display_class->utf8_to_string_target = _gdk_quartz_display_utf8_to_string_target;
|
2018-11-17 00:46:21 +00:00
|
|
|
|
|
|
|
// display_class->get_default_seat = NULL; /* FIXME */
|
|
|
|
|
2017-03-10 13:48:36 +00:00
|
|
|
display_class->get_n_monitors = gdk_quartz_display_get_n_monitors;
|
|
|
|
display_class->get_monitor = gdk_quartz_display_get_monitor;
|
|
|
|
display_class->get_primary_monitor = gdk_quartz_display_get_primary_monitor;
|
2018-11-17 00:46:21 +00:00
|
|
|
display_class->get_monitor_at_window = NULL; /* FIXME */
|
2013-05-02 13:43:09 +00:00
|
|
|
|
|
|
|
ProcessSerialNumber psn = { 0, kCurrentProcess };
|
|
|
|
|
|
|
|
/* Make the current process a foreground application, i.e. an app
|
|
|
|
* with a user interface, in case we're not running from a .app bundle
|
|
|
|
*/
|
|
|
|
TransformProcessType (&psn, kProcessTransformToForegroundApplication);
|
2010-12-22 02:13:02 +00:00
|
|
|
}
|