2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2002-06-20 23:59:27 +00:00
|
|
|
* Copyright (C) 2000 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2010-12-11 00:42:09 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
2002-06-20 23:59:27 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2002-06-20 23:59:27 +00:00
|
|
|
|
2010-12-11 00:42:09 +00:00
|
|
|
#include "gdkconfig.h"
|
2010-12-11 05:14:53 +00:00
|
|
|
#include "gdkdisplaymanagerprivate.h"
|
2002-06-20 23:59:27 +00:00
|
|
|
#include "gdkinternals.h"
|
2011-10-07 14:10:19 +00:00
|
|
|
#include "gdkkeysprivate.h"
|
2002-06-20 23:59:27 +00:00
|
|
|
#include "gdkmarshalers.h"
|
|
|
|
#include "gdkintl.h"
|
|
|
|
|
2010-12-21 04:14:47 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
#include "x11/gdkx.h"
|
|
|
|
#endif
|
|
|
|
|
2010-12-22 15:14:09 +00:00
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
2010-12-23 11:59:26 +00:00
|
|
|
/* We immediately include gdkquartzdisplaymanager.h here instead of
|
|
|
|
* gdkquartz.h so that we do not have to enable -xobjective-c for the
|
|
|
|
* "generic" GDK source code.
|
|
|
|
*/
|
|
|
|
#include "quartz/gdkquartzdisplaymanager.h"
|
2010-12-22 15:14:09 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-06 22:36:44 +00:00
|
|
|
#ifdef GDK_WINDOWING_BROADWAY
|
|
|
|
#include "broadway/gdkbroadwaydisplaymanager.h"
|
|
|
|
#endif
|
|
|
|
|
2011-01-02 10:51:25 +00:00
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
#include "win32/gdkwin32.h"
|
|
|
|
#endif
|
2005-03-16 03:17:27 +00:00
|
|
|
|
2010-12-18 20:38:49 +00:00
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
|
|
#include "wayland/gdkwayland.h"
|
|
|
|
#endif
|
|
|
|
|
2010-11-15 02:43:54 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gdkdisplaymanager
|
|
|
|
* @Short_description: Maintains a list of all open GdkDisplays
|
|
|
|
* @Title: GdkDisplayManager
|
|
|
|
*
|
|
|
|
* The purpose of the #GdkDisplayManager singleton object is to offer
|
|
|
|
* notification when displays appear or disappear or the default display
|
|
|
|
* changes.
|
2011-02-09 06:32:24 +00:00
|
|
|
*
|
|
|
|
* You can use gdk_display_manager_get() to obtain the GdkDisplayManager
|
|
|
|
* singleton, but that should be rarely necessary. Typically, initializing
|
|
|
|
* GTK+ opens a display that you can work with without ever accessing the
|
|
|
|
* GdkDisplayManager.
|
|
|
|
*
|
|
|
|
* The GDK library can be built with support for multiple backends.
|
|
|
|
* The GdkDisplayManager object determines which backend is used
|
|
|
|
* at runtime.
|
|
|
|
*
|
|
|
|
* When writing backend-specific code that is supposed to work with
|
|
|
|
* multiple GDK backends, you have to consider both compile time and
|
|
|
|
* runtime. At compile time, use the #GDK_WINDOWING_X11, #GDK_WINDOWING_WIN32
|
|
|
|
* macros, etc. to find out which backends are present in the GDK library
|
|
|
|
* you are building your application against. At runtime, use type-check
|
|
|
|
* macros like GDK_IS_X11_DISPLAY() to find out which backend is in use:
|
|
|
|
*
|
|
|
|
* <example id="backend-specific">
|
|
|
|
* <title>Backend-specific code</title>
|
|
|
|
* <programlisting>
|
|
|
|
* #ifdef GDK_WINDOWING_X11
|
|
|
|
* if (GDK_IS_X11_DISPLAY (display))
|
|
|
|
* {
|
|
|
|
* /* make X11-specific calls here */
|
|
|
|
* }
|
|
|
|
* else
|
|
|
|
* #endif
|
|
|
|
* #ifdef GDK_WINDOWING_QUARTZ
|
|
|
|
* if (GDK_IS_QUARTZ_DISPLAY (display))
|
|
|
|
* {
|
|
|
|
* /* make Quartz-specific calls here */
|
|
|
|
* }
|
|
|
|
* else
|
|
|
|
* #endif
|
|
|
|
* g_error ("Unsupported GDK backend");
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
2010-11-15 02:43:54 +00:00
|
|
|
*/
|
|
|
|
|
2002-06-20 23:59:27 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_DEFAULT_DISPLAY
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DISPLAY_OPENED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static void gdk_display_manager_class_init (GdkDisplayManagerClass *klass);
|
|
|
|
static void gdk_display_manager_set_property (GObject *object,
|
2010-12-11 00:42:09 +00:00
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2002-06-20 23:59:27 +00:00
|
|
|
static void gdk_display_manager_get_property (GObject *object,
|
2010-12-11 00:42:09 +00:00
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2002-06-20 23:59:27 +00:00
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2006-05-14 03:58:06 +00:00
|
|
|
G_DEFINE_TYPE (GdkDisplayManager, gdk_display_manager, G_TYPE_OBJECT)
|
2002-06-20 23:59:27 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_display_manager_class_init (GdkDisplayManagerClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->set_property = gdk_display_manager_set_property;
|
|
|
|
object_class->get_property = gdk_display_manager_get_property;
|
|
|
|
|
2011-10-07 14:10:19 +00:00
|
|
|
klass->keyval_convert_case = _gdk_display_manager_real_keyval_convert_case;
|
|
|
|
|
2003-09-30 00:36:29 +00:00
|
|
|
/**
|
|
|
|
* GdkDisplayManager::display-opened:
|
2010-12-11 00:42:09 +00:00
|
|
|
* @manager: the object on which the signal is emitted
|
2003-09-30 00:36:29 +00:00
|
|
|
* @display: the opened display
|
|
|
|
*
|
2010-12-11 00:42:09 +00:00
|
|
|
* The ::display-opened signal is emitted when a display is opened.
|
2003-09-30 00:36:29 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
*/
|
2002-06-20 23:59:27 +00:00
|
|
|
signals[DISPLAY_OPENED] =
|
2008-08-11 09:15:37 +00:00
|
|
|
g_signal_new (g_intern_static_string ("display-opened"),
|
2010-12-11 00:42:09 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GdkDisplayManagerClass, display_opened),
|
|
|
|
NULL, NULL,
|
|
|
|
_gdk_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
1,
|
|
|
|
GDK_TYPE_DISPLAY);
|
2002-06-20 23:59:27 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
2010-12-11 00:42:09 +00:00
|
|
|
PROP_DEFAULT_DISPLAY,
|
|
|
|
g_param_spec_object ("default-display",
|
|
|
|
P_("Default Display"),
|
|
|
|
P_("The default display for GDK"),
|
|
|
|
GDK_TYPE_DISPLAY,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
|
|
|
|
G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
2006-04-04 14:02:03 +00:00
|
|
|
static void
|
|
|
|
gdk_display_manager_init (GdkDisplayManager *manager)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-06-20 23:59:27 +00:00
|
|
|
static void
|
|
|
|
gdk_display_manager_set_property (GObject *object,
|
2010-12-11 00:42:09 +00:00
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2002-06-20 23:59:27 +00:00
|
|
|
{
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_DEFAULT_DISPLAY:
|
2005-12-30 06:32:30 +00:00
|
|
|
gdk_display_manager_set_default_display (GDK_DISPLAY_MANAGER (object),
|
2010-12-11 00:42:09 +00:00
|
|
|
g_value_get_object (value));
|
2002-06-20 23:59:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_display_manager_get_property (GObject *object,
|
2010-12-11 00:42:09 +00:00
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2002-06-20 23:59:27 +00:00
|
|
|
{
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_DEFAULT_DISPLAY:
|
2010-12-11 00:42:09 +00:00
|
|
|
g_value_set_object (value,
|
|
|
|
gdk_display_manager_get_default_display (GDK_DISPLAY_MANAGER (object)));
|
2002-06-20 23:59:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-18 18:35:10 +00:00
|
|
|
/**
|
2002-06-20 23:59:27 +00:00
|
|
|
* gdk_display_manager_get:
|
|
|
|
*
|
2009-08-18 18:35:10 +00:00
|
|
|
* Gets the singleton #GdkDisplayManager object.
|
|
|
|
*
|
2010-12-22 06:32:18 +00:00
|
|
|
* When called for the first time, this function consults the
|
2011-02-09 06:32:24 +00:00
|
|
|
* <envar>GDK_BACKEND</envar> environment variable to find out which
|
|
|
|
* of the supported GDK backends to use (in case GDK has been compiled
|
|
|
|
* with multiple backends).
|
2010-12-22 06:32:18 +00:00
|
|
|
*
|
2010-12-11 00:42:09 +00:00
|
|
|
* Returns: (transfer none): The global #GdkDisplayManager singleton;
|
2010-12-25 05:29:23 +00:00
|
|
|
* gdk_parse_args(), gdk_init(), or gdk_init_check() must have
|
2010-12-11 00:42:09 +00:00
|
|
|
* been called first.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
**/
|
|
|
|
GdkDisplayManager*
|
|
|
|
gdk_display_manager_get (void)
|
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
static GdkDisplayManager *manager = NULL;
|
|
|
|
|
|
|
|
if (!manager)
|
|
|
|
{
|
|
|
|
const gchar *backend;
|
2002-06-20 23:59:27 +00:00
|
|
|
|
2010-12-11 00:42:09 +00:00
|
|
|
backend = g_getenv ("GDK_BACKEND");
|
2010-12-22 15:14:09 +00:00
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
|
|
if (backend == NULL || strcmp (backend, "quartz") == 0)
|
|
|
|
manager = g_object_new (gdk_quartz_display_manager_get_type (), NULL);
|
|
|
|
else
|
2011-01-02 10:51:25 +00:00
|
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
|
|
if (backend == NULL || strcmp (backend, "win32") == 0)
|
|
|
|
manager = g_object_new (gdk_win32_display_manager_get_type (), NULL);
|
|
|
|
else
|
2011-01-06 22:36:44 +00:00
|
|
|
#endif
|
2010-12-18 20:38:49 +00:00
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
|
|
if (backend == NULL || strcmp (backend, "wayland") == 0)
|
|
|
|
manager = g_object_new (gdk_wayland_display_manager_get_type (), NULL);
|
|
|
|
else
|
2011-02-26 19:44:29 +00:00
|
|
|
#endif
|
2011-02-12 21:07:37 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
if (backend == NULL || strcmp (backend, "x11") == 0)
|
|
|
|
manager = g_object_new (gdk_x11_display_manager_get_type (), NULL);
|
|
|
|
else
|
2011-03-10 09:51:04 +00:00
|
|
|
#endif
|
2011-01-06 22:36:44 +00:00
|
|
|
#ifdef GDK_WINDOWING_BROADWAY
|
|
|
|
if (backend == NULL || strcmp (backend, "broadway") == 0)
|
|
|
|
manager = g_object_new (gdk_broadway_display_manager_get_type (), NULL);
|
|
|
|
else
|
2010-12-11 00:42:09 +00:00
|
|
|
#endif
|
|
|
|
if (backend != NULL)
|
|
|
|
g_error ("Unsupported GDK backend: %s", backend);
|
|
|
|
else
|
|
|
|
g_error ("No GDK backend found");
|
|
|
|
}
|
2002-06-20 23:59:27 +00:00
|
|
|
|
2010-12-11 00:42:09 +00:00
|
|
|
return manager;
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_display_manager_get_default_display:
|
2010-12-11 00:42:09 +00:00
|
|
|
* @manager: a #GdkDisplayManager
|
2002-06-20 23:59:27 +00:00
|
|
|
*
|
2009-08-18 18:35:10 +00:00
|
|
|
* Gets the default #GdkDisplay.
|
|
|
|
*
|
2010-12-11 00:42:09 +00:00
|
|
|
* Returns: (transfer none): a #GdkDisplay, or %NULL
|
|
|
|
* if there is no default display.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
*/
|
|
|
|
GdkDisplay *
|
2010-12-11 00:42:09 +00:00
|
|
|
gdk_display_manager_get_default_display (GdkDisplayManager *manager)
|
2002-06-20 23:59:27 +00:00
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->get_default_display (manager);
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_display_get_default:
|
|
|
|
*
|
|
|
|
* Gets the default #GdkDisplay. This is a convenience
|
2007-11-25 06:51:19 +00:00
|
|
|
* function for
|
|
|
|
* <literal>gdk_display_manager_get_default_display (gdk_display_manager_get ())</literal>.
|
2009-08-18 18:35:10 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): a #GdkDisplay, or %NULL if there is no default
|
2002-06-20 23:59:27 +00:00
|
|
|
* display.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
*/
|
|
|
|
GdkDisplay *
|
|
|
|
gdk_display_get_default (void)
|
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
return gdk_display_manager_get_default_display (gdk_display_manager_get ());
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_default:
|
|
|
|
*
|
|
|
|
* Gets the default screen for the default display. (See
|
|
|
|
* gdk_display_get_default ()).
|
2009-08-18 18:35:10 +00:00
|
|
|
*
|
|
|
|
* Returns: (transfer none): a #GdkScreen, or %NULL if there is no default display.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
*/
|
|
|
|
GdkScreen *
|
|
|
|
gdk_screen_get_default (void)
|
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
GdkDisplay *default_display;
|
|
|
|
|
|
|
|
default_display = gdk_display_get_default ();
|
|
|
|
|
2002-08-01 23:43:13 +00:00
|
|
|
if (default_display)
|
|
|
|
return gdk_display_get_default_screen (default_display);
|
|
|
|
else
|
|
|
|
return NULL;
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_display_manager_set_default_display:
|
2010-12-11 00:42:09 +00:00
|
|
|
* @manager: a #GdkDisplayManager
|
2002-06-20 23:59:27 +00:00
|
|
|
* @display: a #GdkDisplay
|
|
|
|
*
|
|
|
|
* Sets @display as the default display.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
**/
|
|
|
|
void
|
2010-12-11 00:42:09 +00:00
|
|
|
gdk_display_manager_set_default_display (GdkDisplayManager *manager,
|
|
|
|
GdkDisplay *display)
|
2002-06-20 23:59:27 +00:00
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
GDK_DISPLAY_MANAGER_GET_CLASS (manager)->set_default_display (manager, display);
|
2002-06-20 23:59:27 +00:00
|
|
|
|
2010-12-11 00:42:09 +00:00
|
|
|
g_object_notify (G_OBJECT (manager), "default-display");
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_display_manager_list_displays:
|
2010-12-11 00:42:09 +00:00
|
|
|
* @manager: a #GdkDisplayManager
|
2002-06-20 23:59:27 +00:00
|
|
|
*
|
|
|
|
* List all currently open displays.
|
2010-12-11 00:42:09 +00:00
|
|
|
*
|
|
|
|
* Return value: (transfer container) (element-type GdkDisplay): a newly
|
|
|
|
* allocated #GSList of #GdkDisplay objects. Free with g_slist_free()
|
|
|
|
* when you are done with it.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-06-20 23:59:27 +00:00
|
|
|
**/
|
|
|
|
GSList *
|
2010-12-11 00:42:09 +00:00
|
|
|
gdk_display_manager_list_displays (GdkDisplayManager *manager)
|
|
|
|
{
|
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->list_displays (manager);
|
|
|
|
}
|
|
|
|
|
2010-12-25 05:02:39 +00:00
|
|
|
/**
|
|
|
|
* gdk_display_manager_open_display:
|
|
|
|
* @manager: a #GdkDisplayManager
|
|
|
|
* @name: the name of the display to open
|
|
|
|
*
|
|
|
|
* Opens a display.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): a #GdkDisplay, or %NULL
|
|
|
|
* if the display could not be opened
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
2010-12-11 00:42:09 +00:00
|
|
|
GdkDisplay *
|
|
|
|
gdk_display_manager_open_display (GdkDisplayManager *manager,
|
|
|
|
const gchar *name)
|
2002-06-20 23:59:27 +00:00
|
|
|
{
|
2010-12-11 00:42:09 +00:00
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->open_display (manager, name);
|
2002-06-20 23:59:27 +00:00
|
|
|
}
|
2010-12-16 05:37:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_atom_intern:
|
|
|
|
* @atom_name: a string.
|
|
|
|
* @only_if_exists: if %TRUE, GDK is allowed to not create a new atom, but
|
|
|
|
* just return %GDK_NONE if the requested atom doesn't already
|
|
|
|
* exists. Currently, the flag is ignored, since checking the
|
|
|
|
* existance of an atom is as expensive as creating it.
|
|
|
|
*
|
|
|
|
* Finds or creates an atom corresponding to a given string.
|
|
|
|
*
|
2011-01-18 09:01:17 +00:00
|
|
|
* Returns: (transfer none): the atom corresponding to @atom_name.
|
2010-12-16 05:37:39 +00:00
|
|
|
*/
|
|
|
|
GdkAtom
|
|
|
|
gdk_atom_intern (const gchar *atom_name,
|
|
|
|
gboolean only_if_exists)
|
|
|
|
{
|
|
|
|
GdkDisplayManager *manager = gdk_display_manager_get ();
|
|
|
|
|
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->atom_intern (manager, atom_name, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_atom_intern_static_string:
|
|
|
|
* @atom_name: a static string
|
|
|
|
*
|
|
|
|
* Finds or creates an atom corresponding to a given string.
|
|
|
|
*
|
|
|
|
* Note that this function is identical to gdk_atom_intern() except
|
|
|
|
* that if a new #GdkAtom is created the string itself is used rather
|
|
|
|
* than a copy. This saves memory, but can only be used if the string
|
|
|
|
* will <emphasis>always</emphasis> exist. It can be used with statically
|
|
|
|
* allocated strings in the main program, but not with statically
|
|
|
|
* allocated memory in dynamically loaded modules, if you expect to
|
|
|
|
* ever unload the module again (e.g. do not use this function in
|
|
|
|
* GTK+ theme engines).
|
|
|
|
*
|
2011-01-18 09:01:17 +00:00
|
|
|
* Returns: (transfer none): the atom corresponding to @atom_name
|
2010-12-16 05:37:39 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
GdkAtom
|
|
|
|
gdk_atom_intern_static_string (const gchar *atom_name)
|
|
|
|
{
|
|
|
|
GdkDisplayManager *manager = gdk_display_manager_get ();
|
|
|
|
|
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->atom_intern (manager, atom_name, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_atom_name:
|
|
|
|
* @atom: a #GdkAtom.
|
|
|
|
*
|
|
|
|
* Determines the string corresponding to an atom.
|
|
|
|
*
|
|
|
|
* Returns: a newly-allocated string containing the string
|
|
|
|
* corresponding to @atom. When you are done with the
|
|
|
|
* return value, you should free it using g_free().
|
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gdk_atom_name (GdkAtom atom)
|
|
|
|
{
|
|
|
|
GdkDisplayManager *manager = gdk_display_manager_get ();
|
|
|
|
|
|
|
|
return GDK_DISPLAY_MANAGER_GET_CLASS (manager)->get_atom_name (manager, atom);
|
|
|
|
}
|