2008-07-01 22:57:50 +00:00
|
|
|
|
/* GDK - The GIMP Drawing Kit
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* 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
|
2010-12-15 22:32:29 +00:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* 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/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
|
#include "gdkversionmacros.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
#include "gdkinternals.h"
|
2004-09-05 21:15:58 +00:00
|
|
|
|
#include "gdkintl.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2016-04-22 11:34:33 +00:00
|
|
|
|
#include "gdkresources.h"
|
|
|
|
|
|
2014-11-07 13:40:22 +00:00
|
|
|
|
#include "gdk-private.h"
|
|
|
|
|
|
1999-12-29 23:08:52 +00:00
|
|
|
|
#ifndef HAVE_XCONVERTCASE
|
|
|
|
|
#include "gdkkeysyms.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-10-15 02:05:51 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2010-11-15 03:58:21 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SECTION:general
|
|
|
|
|
* @Short_description: Library initialization and miscellaneous functions
|
|
|
|
|
* @Title: General
|
|
|
|
|
*
|
|
|
|
|
* This section describes the GDK initialization functions and miscellaneous
|
2012-02-27 12:56:29 +00:00
|
|
|
|
* utility functions, as well as deprecation facilities.
|
|
|
|
|
*
|
|
|
|
|
* The GDK and GTK+ headers annotate deprecated APIs in a way that produces
|
|
|
|
|
* compiler warnings if these deprecated APIs are used. The warnings
|
|
|
|
|
* can be turned off by defining the macro %GDK_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
|
* before including the glib.h header.
|
|
|
|
|
*
|
|
|
|
|
* GDK and GTK+ also provide support for building applications against
|
|
|
|
|
* defined subsets of deprecated or new APIs. Define the macro
|
|
|
|
|
* %GDK_VERSION_MIN_REQUIRED to specify up to what version
|
|
|
|
|
* you want to receive warnings about deprecated APIs. Define the
|
|
|
|
|
* macro %GDK_VERSION_MAX_ALLOWED to specify the newest version
|
|
|
|
|
* whose API you want to use.
|
2010-11-15 03:58:21 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2010-12-22 06:43:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* GDK_WINDOWING_X11:
|
|
|
|
|
*
|
|
|
|
|
* The #GDK_WINDOWING_X11 macro is defined if the X11 backend
|
|
|
|
|
* is supported.
|
|
|
|
|
*
|
2011-02-09 06:32:24 +00:00
|
|
|
|
* Use this macro to guard code that is specific to the X11 backend.
|
2010-12-22 06:43:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GDK_WINDOWING_WIN32:
|
|
|
|
|
*
|
|
|
|
|
* The #GDK_WINDOWING_WIN32 macro is defined if the Win32 backend
|
|
|
|
|
* is supported.
|
2011-02-09 06:32:24 +00:00
|
|
|
|
*
|
|
|
|
|
* Use this macro to guard code that is specific to the Win32 backend.
|
2010-12-22 06:43:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GDK_WINDOWING_QUARTZ:
|
|
|
|
|
*
|
|
|
|
|
* The #GDK_WINDOWING_QUARTZ macro is defined if the Quartz backend
|
|
|
|
|
* is supported.
|
2011-02-09 06:32:24 +00:00
|
|
|
|
*
|
|
|
|
|
* Use this macro to guard code that is specific to the Quartz backend.
|
2010-12-22 06:43:57 +00:00
|
|
|
|
*/
|
2010-11-15 03:58:21 +00:00
|
|
|
|
|
2014-01-20 18:42:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* GDK_WINDOWING_WAYLAND:
|
|
|
|
|
*
|
|
|
|
|
* The #GDK_WINDOWING_WAYLAND macro is defined if the Wayland backend
|
|
|
|
|
* is supported.
|
|
|
|
|
*
|
|
|
|
|
* Use this macro to guard code that is specific to the Wayland backend.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-02-27 12:56:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GDK_DISABLE_DEPRECATION_WARNINGS:
|
|
|
|
|
*
|
|
|
|
|
* A macro that should be defined before including the gdk.h header.
|
|
|
|
|
* If it is defined, no compiler warnings will be produced for uses
|
|
|
|
|
* of deprecated GDK APIs.
|
|
|
|
|
*/
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
typedef struct _GdkPredicate GdkPredicate;
|
|
|
|
|
|
|
|
|
|
struct _GdkPredicate
|
|
|
|
|
{
|
|
|
|
|
GdkEventFunc func;
|
|
|
|
|
gpointer data;
|
|
|
|
|
};
|
|
|
|
|
|
2006-12-22 17:46:32 +00:00
|
|
|
|
typedef struct _GdkThreadsDispatch GdkThreadsDispatch;
|
|
|
|
|
|
|
|
|
|
struct _GdkThreadsDispatch
|
|
|
|
|
{
|
|
|
|
|
GSourceFunc func;
|
|
|
|
|
gpointer data;
|
|
|
|
|
GDestroyNotify destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
/* Private variable declarations
|
|
|
|
|
*/
|
2010-12-15 22:32:29 +00:00
|
|
|
|
static int gdk_initialized = 0; /* 1 if the library is initialized,
|
|
|
|
|
* 0 otherwise.
|
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2011-11-02 01:11:04 +00:00
|
|
|
|
static GMutex gdk_threads_mutex;
|
2010-09-08 12:55:45 +00:00
|
|
|
|
|
|
|
|
|
static GCallback gdk_threads_lock = NULL;
|
|
|
|
|
static GCallback gdk_threads_unlock = NULL;
|
|
|
|
|
|
2014-11-06 09:21:48 +00:00
|
|
|
|
static const GDebugKey gdk_gl_keys[] = {
|
2016-03-11 23:30:14 +00:00
|
|
|
|
{ "disable", GDK_GL_DISABLE },
|
|
|
|
|
{ "always", GDK_GL_ALWAYS },
|
2018-01-10 05:02:23 +00:00
|
|
|
|
{ "software-draw", GDK_GL_SOFTWARE_DRAW } ,
|
2016-03-11 23:30:14 +00:00
|
|
|
|
{ "texture-rectangle", GDK_GL_TEXTURE_RECTANGLE },
|
2016-04-22 11:40:57 +00:00
|
|
|
|
{ "legacy", GDK_GL_LEGACY },
|
|
|
|
|
{ "gles", GDK_GL_GLES },
|
2014-11-06 09:21:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
2016-11-29 14:35:04 +00:00
|
|
|
|
static const GDebugKey gdk_vulkan_keys[] = {
|
|
|
|
|
{ "disable", GDK_VULKAN_DISABLE },
|
|
|
|
|
{ "validate", GDK_VULKAN_VALIDATE },
|
|
|
|
|
};
|
|
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-11-30 19:07:15 +00:00
|
|
|
|
static const GDebugKey gdk_debug_keys[] = {
|
2016-03-11 23:30:14 +00:00
|
|
|
|
{ "events", GDK_DEBUG_EVENTS },
|
|
|
|
|
{ "misc", GDK_DEBUG_MISC },
|
|
|
|
|
{ "dnd", GDK_DEBUG_DND },
|
|
|
|
|
{ "nograbs", GDK_DEBUG_NOGRABS },
|
|
|
|
|
{ "input", GDK_DEBUG_INPUT },
|
|
|
|
|
{ "cursor", GDK_DEBUG_CURSOR },
|
|
|
|
|
{ "eventloop", GDK_DEBUG_EVENTLOOP },
|
|
|
|
|
{ "frames", GDK_DEBUG_FRAMES },
|
|
|
|
|
{ "settings", GDK_DEBUG_SETTINGS },
|
2016-11-21 13:18:43 +00:00
|
|
|
|
{ "opengl", GDK_DEBUG_OPENGL },
|
2017-11-19 17:06:13 +00:00
|
|
|
|
{ "vulkan", GDK_DEBUG_VULKAN },
|
|
|
|
|
{ "selection", GDK_DEBUG_SELECTION },
|
|
|
|
|
{ "clipboard", GDK_DEBUG_CLIPBOARD }
|
1998-02-19 06:21:27 +00:00
|
|
|
|
};
|
2016-06-29 13:05:08 +00:00
|
|
|
|
#endif
|
2014-11-07 13:40:22 +00:00
|
|
|
|
|
2016-04-26 08:10:03 +00:00
|
|
|
|
static gpointer
|
|
|
|
|
register_resources (gpointer dummy G_GNUC_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
_gdk_register_resource ();
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gdk_ensure_resources (void)
|
|
|
|
|
{
|
|
|
|
|
static GOnce register_resources_once = G_ONCE_INIT;
|
|
|
|
|
|
|
|
|
|
g_once (®ister_resources_once, register_resources, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
void
|
2014-11-07 13:40:22 +00:00
|
|
|
|
gdk_pre_parse (void)
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
{
|
2011-03-11 00:10:37 +00:00
|
|
|
|
const char *rendering_mode;
|
2016-11-29 14:35:04 +00:00
|
|
|
|
const gchar *gl_string, *vulkan_string;
|
2011-03-11 00:10:37 +00:00
|
|
|
|
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
gdk_initialized = TRUE;
|
|
|
|
|
|
2016-04-26 08:10:03 +00:00
|
|
|
|
gdk_ensure_resources ();
|
2016-04-22 11:34:33 +00:00
|
|
|
|
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
|
{
|
|
|
|
|
gchar *debug_string = getenv("GDK_DEBUG");
|
|
|
|
|
if (debug_string != NULL)
|
|
|
|
|
_gdk_debug_flags = g_parse_debug_string (debug_string,
|
2010-12-15 22:32:29 +00:00
|
|
|
|
(GDebugKey *) gdk_debug_keys,
|
|
|
|
|
G_N_ELEMENTS (gdk_debug_keys));
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
}
|
2010-12-15 22:32:29 +00:00
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
|
2014-11-06 09:21:48 +00:00
|
|
|
|
gl_string = getenv("GDK_GL");
|
|
|
|
|
if (gl_string != NULL)
|
|
|
|
|
_gdk_gl_flags = g_parse_debug_string (gl_string,
|
|
|
|
|
(GDebugKey *) gdk_gl_keys,
|
|
|
|
|
G_N_ELEMENTS (gdk_gl_keys));
|
|
|
|
|
|
2016-11-29 14:35:04 +00:00
|
|
|
|
vulkan_string = getenv("GDK_VULKAN");
|
|
|
|
|
if (vulkan_string != NULL)
|
|
|
|
|
_gdk_vulkan_flags = g_parse_debug_string (vulkan_string,
|
|
|
|
|
(GDebugKey *) gdk_vulkan_keys,
|
|
|
|
|
G_N_ELEMENTS (gdk_vulkan_keys));
|
|
|
|
|
|
2011-03-11 00:10:37 +00:00
|
|
|
|
rendering_mode = g_getenv ("GDK_RENDERING");
|
|
|
|
|
if (rendering_mode)
|
|
|
|
|
{
|
|
|
|
|
if (g_str_equal (rendering_mode, "similar"))
|
|
|
|
|
_gdk_rendering_mode = GDK_RENDERING_MODE_SIMILAR;
|
|
|
|
|
else if (g_str_equal (rendering_mode, "image"))
|
|
|
|
|
_gdk_rendering_mode = GDK_RENDERING_MODE_IMAGE;
|
|
|
|
|
else if (g_str_equal (rendering_mode, "recording"))
|
|
|
|
|
_gdk_rendering_mode = GDK_RENDERING_MODE_RECORDING;
|
|
|
|
|
}
|
2002-04-25 22:29:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-07 13:40:22 +00:00
|
|
|
|
/*< private >
|
|
|
|
|
* gdk_display_open_default:
|
2010-12-11 00:42:09 +00:00
|
|
|
|
*
|
2002-10-31 21:12:23 +00:00
|
|
|
|
* Opens the default display specified by command line arguments or
|
|
|
|
|
* environment variables, sets it as the default display, and returns
|
2013-03-23 23:40:16 +00:00
|
|
|
|
* it. gdk_parse_args() must have been called first. If the default
|
2002-10-31 21:12:23 +00:00
|
|
|
|
* display has previously been set, simply returns that. An internal
|
|
|
|
|
* function that should not be used by applications.
|
2010-12-11 00:42:09 +00:00
|
|
|
|
*
|
2014-05-08 19:55:50 +00:00
|
|
|
|
* Returns: (nullable) (transfer none): the default display, if it
|
|
|
|
|
* could be opened, otherwise %NULL.
|
2014-11-07 13:40:22 +00:00
|
|
|
|
*/
|
2002-10-31 21:12:23 +00:00
|
|
|
|
GdkDisplay *
|
2014-11-07 13:40:22 +00:00
|
|
|
|
gdk_display_open_default (void)
|
2002-10-31 21:12:23 +00:00
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
|
2002-11-07 21:05:52 +00:00
|
|
|
|
g_return_val_if_fail (gdk_initialized, NULL);
|
2010-12-11 00:42:09 +00:00
|
|
|
|
|
2002-10-31 21:12:23 +00:00
|
|
|
|
display = gdk_display_get_default ();
|
|
|
|
|
if (display)
|
|
|
|
|
return display;
|
|
|
|
|
|
2017-11-01 17:26:34 +00:00
|
|
|
|
display = gdk_display_open (NULL);
|
2002-10-31 21:12:23 +00:00
|
|
|
|
|
|
|
|
|
return display;
|
2002-04-25 22:29:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 18:37:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:threads
|
|
|
|
|
* @Short_description: Functions for using GDK in multi-threaded programs
|
|
|
|
|
* @Title: Threads
|
|
|
|
|
*
|
|
|
|
|
* For thread safety, GDK relies on the thread primitives in GLib,
|
|
|
|
|
* and on the thread-safe GLib main loop.
|
|
|
|
|
*
|
|
|
|
|
* GLib is completely thread safe (all global data is automatically
|
|
|
|
|
* locked), but individual data structure instances are not automatically
|
|
|
|
|
* locked for performance reasons. So e.g. you must coordinate
|
|
|
|
|
* accesses to the same #GHashTable from multiple threads.
|
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* GTK+, however, is not thread safe. You should only use GTK+ and GDK
|
|
|
|
|
* from the thread gtk_init() and gtk_main() were called on.
|
|
|
|
|
* This is usually referred to as the “main thread”.
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* Signals on GTK+ and GDK types, as well as non-signal callbacks, are
|
|
|
|
|
* emitted in the main thread.
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* You can schedule work in the main thread safely from other threads
|
|
|
|
|
* by using gdk_threads_add_idle() and gdk_threads_add_timeout():
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* static void
|
|
|
|
|
* worker_thread (void)
|
2010-11-15 18:37:28 +00:00
|
|
|
|
* {
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* ExpensiveData *expensive_data = do_expensive_computation ();
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* gdk_threads_add_idle (got_value, expensive_data);
|
2010-11-15 18:37:28 +00:00
|
|
|
|
* }
|
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* static gboolean
|
|
|
|
|
* got_value (gpointer user_data)
|
2010-11-15 18:37:28 +00:00
|
|
|
|
* {
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* ExpensiveData *expensive_data = user_data;
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* my_app->expensive_data = expensive_data;
|
|
|
|
|
* gtk_button_set_sensitive (my_app->button, TRUE);
|
|
|
|
|
* gtk_button_set_label (my_app->button, expensive_data->result_label);
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* return G_SOURCE_REMOVE;
|
2010-11-15 18:37:28 +00:00
|
|
|
|
* }
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2012-07-30 08:44:22 +00:00
|
|
|
|
*
|
2014-02-06 16:44:30 +00:00
|
|
|
|
* You should use gdk_threads_add_idle() and gdk_threads_add_timeout()
|
|
|
|
|
* instead of g_idle_add() and g_timeout_add() since libraries not under
|
|
|
|
|
* your control might be using the deprecated GDK locking mechanism.
|
|
|
|
|
* If you are sure that none of the code in your application and libraries
|
|
|
|
|
* use the deprecated gdk_threads_enter() or gdk_threads_leave() methods,
|
|
|
|
|
* then you can safely use g_idle_add() and g_timeout_add().
|
|
|
|
|
*
|
|
|
|
|
* For more information on this "worker thread" pattern, you should
|
|
|
|
|
* also look at #GTask, which gives you high-level tools to perform
|
|
|
|
|
* expensive tasks from worker threads, and will handle thread
|
|
|
|
|
* management for you.
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_threads_enter:
|
|
|
|
|
*
|
2011-11-09 23:32:21 +00:00
|
|
|
|
* This function marks the beginning of a critical section in which
|
|
|
|
|
* GDK and GTK+ functions can be called safely and without causing race
|
|
|
|
|
* conditions. Only one thread at a time can be in such a critial
|
2010-11-15 18:37:28 +00:00
|
|
|
|
* section.
|
2012-07-28 15:23:17 +00:00
|
|
|
|
*
|
|
|
|
|
* Deprecated:3.6: All GDK and GTK+ calls should be made from the main
|
|
|
|
|
* thread
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*/
|
1998-12-16 20:09:30 +00:00
|
|
|
|
void
|
2004-10-28 15:00:05 +00:00
|
|
|
|
gdk_threads_enter (void)
|
1998-12-16 20:09:30 +00:00
|
|
|
|
{
|
2010-09-08 12:55:45 +00:00
|
|
|
|
if (gdk_threads_lock)
|
|
|
|
|
(*gdk_threads_lock) ();
|
1998-12-16 20:09:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 18:37:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_threads_leave:
|
|
|
|
|
*
|
|
|
|
|
* Leaves a critical region begun with gdk_threads_enter().
|
2012-07-28 15:23:17 +00:00
|
|
|
|
*
|
|
|
|
|
* Deprecated:3.6: All GDK and GTK+ calls should be made from the main
|
|
|
|
|
* thread
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*/
|
1998-12-16 20:09:30 +00:00
|
|
|
|
void
|
2004-10-28 15:00:05 +00:00
|
|
|
|
gdk_threads_leave (void)
|
1998-12-16 20:09:30 +00:00
|
|
|
|
{
|
2010-09-08 12:55:45 +00:00
|
|
|
|
if (gdk_threads_unlock)
|
|
|
|
|
(*gdk_threads_unlock) ();
|
1998-12-16 20:09:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-12-08 17:13:13 +00:00
|
|
|
|
static void
|
|
|
|
|
gdk_threads_impl_lock (void)
|
|
|
|
|
{
|
2011-11-02 01:11:04 +00:00
|
|
|
|
g_mutex_lock (&gdk_threads_mutex);
|
2003-12-08 17:13:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gdk_threads_impl_unlock (void)
|
|
|
|
|
{
|
2014-08-26 11:15:06 +00:00
|
|
|
|
/* we need a trylock() here because trying to unlock a mutex
|
|
|
|
|
* that hasn't been locked yet is:
|
|
|
|
|
*
|
|
|
|
|
* a) not portable
|
|
|
|
|
* b) fail on GLib ≥ 2.41
|
|
|
|
|
*
|
|
|
|
|
* trylock() will either succeed because nothing is holding the
|
|
|
|
|
* GDK mutex, and will be unlocked right afterwards; or it's
|
|
|
|
|
* going to fail because the mutex is locked already, in which
|
|
|
|
|
* case we unlock it as expected.
|
|
|
|
|
*
|
|
|
|
|
* this is needed in the case somebody called gdk_threads_init()
|
|
|
|
|
* without calling gdk_threads_enter() before calling gtk_main().
|
|
|
|
|
* in theory, we could just say that this is undefined behaviour,
|
|
|
|
|
* but our documentation has always been *less* than explicit as
|
|
|
|
|
* to what the behaviour should actually be.
|
|
|
|
|
*
|
|
|
|
|
* see bug: https://bugzilla.gnome.org/show_bug.cgi?id=735428
|
|
|
|
|
*/
|
|
|
|
|
g_mutex_trylock (&gdk_threads_mutex);
|
2011-11-02 01:11:04 +00:00
|
|
|
|
g_mutex_unlock (&gdk_threads_mutex);
|
2003-12-08 17:13:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-22 12:59:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_threads_init:
|
2010-11-15 18:37:28 +00:00
|
|
|
|
*
|
2001-10-22 12:59:21 +00:00
|
|
|
|
* Initializes GDK so that it can be used from multiple threads
|
|
|
|
|
* in conjunction with gdk_threads_enter() and gdk_threads_leave().
|
|
|
|
|
*
|
|
|
|
|
* This call must be made before any use of the main loop from
|
|
|
|
|
* GTK+; to be safe, call it before gtk_init().
|
2012-07-28 15:23:17 +00:00
|
|
|
|
*
|
|
|
|
|
* Deprecated:3.6: All GDK and GTK+ calls should be made from the main
|
|
|
|
|
* thread
|
2011-11-09 23:32:21 +00:00
|
|
|
|
*/
|
2001-10-22 12:59:21 +00:00
|
|
|
|
void
|
2004-10-28 15:00:05 +00:00
|
|
|
|
gdk_threads_init (void)
|
2001-10-22 12:59:21 +00:00
|
|
|
|
{
|
2003-12-08 17:13:13 +00:00
|
|
|
|
if (!gdk_threads_lock)
|
|
|
|
|
gdk_threads_lock = gdk_threads_impl_lock;
|
|
|
|
|
if (!gdk_threads_unlock)
|
|
|
|
|
gdk_threads_unlock = gdk_threads_impl_unlock;
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-22 17:46:32 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gdk_threads_dispatch (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GdkThreadsDispatch *dispatch = data;
|
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
2012-07-28 12:40:04 +00:00
|
|
|
|
gdk_threads_enter ();
|
2006-12-22 17:46:32 +00:00
|
|
|
|
|
|
|
|
|
if (!g_source_is_destroyed (g_main_current_source ()))
|
|
|
|
|
ret = dispatch->func (dispatch->data);
|
|
|
|
|
|
2012-07-28 12:40:04 +00:00
|
|
|
|
gdk_threads_leave ();
|
2006-12-22 17:46:32 +00:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gdk_threads_dispatch_free (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GdkThreadsDispatch *dispatch = data;
|
|
|
|
|
|
|
|
|
|
if (dispatch->destroy && dispatch->data)
|
|
|
|
|
dispatch->destroy (dispatch->data);
|
|
|
|
|
|
|
|
|
|
g_slice_free (GdkThreadsDispatch, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-09 18:09:35 +00:00
|
|
|
|
* gdk_threads_add_idle_full: (rename-to gdk_threads_add_idle)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* @priority: the priority of the idle source. Typically this will be in the
|
2011-01-18 09:12:38 +00:00
|
|
|
|
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @notify: (allow-none): function to call when the idle is removed, or %NULL
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Adds a function to be called whenever there are no higher priority
|
|
|
|
|
* events pending. If the function returns %FALSE it is automatically
|
|
|
|
|
* removed from the list of event sources and will not be called again.
|
|
|
|
|
*
|
|
|
|
|
* This variant of g_idle_add_full() calls @function with the GDK lock
|
2011-11-09 23:32:21 +00:00
|
|
|
|
* held. It can be thought of a MT-safe version for GTK+ widgets for the
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* following use case, where you have to worry about idle_callback()
|
|
|
|
|
* running in thread A and accessing @self after it has been finalized
|
|
|
|
|
* in thread B:
|
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2007-07-12 16:13:36 +00:00
|
|
|
|
* static gboolean
|
|
|
|
|
* idle_callback (gpointer data)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* {
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // gdk_threads_enter(); would be needed for g_idle_add()
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* SomeWidget *self = data;
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // do stuff with self
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* self->idle_id = 0;
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // gdk_threads_leave(); would be needed for g_idle_add()
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* return FALSE;
|
|
|
|
|
* }
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
|
|
|
|
* static void
|
|
|
|
|
* some_widget_do_stuff_later (SomeWidget *self)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* {
|
2007-07-12 16:13:36 +00:00
|
|
|
|
* self->idle_id = gdk_threads_add_idle (idle_callback, self)
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // using g_idle_add() here would require thread protection in the callback
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* }
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
|
|
|
|
* static void
|
|
|
|
|
* some_widget_finalize (GObject *object)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* {
|
2007-07-12 16:13:36 +00:00
|
|
|
|
* SomeWidget *self = SOME_WIDGET (object);
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* if (self->idle_id)
|
|
|
|
|
* g_source_remove (self->idle_id);
|
|
|
|
|
* G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
|
* }
|
2007-11-25 06:51:19 +00:00
|
|
|
|
* ]|
|
2007-07-12 16:13:36 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.12
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_idle_full (gint priority,
|
2010-12-15 22:32:29 +00:00
|
|
|
|
GSourceFunc function,
|
|
|
|
|
gpointer data,
|
|
|
|
|
GDestroyNotify notify)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
{
|
|
|
|
|
GdkThreadsDispatch *dispatch;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (function != NULL, 0);
|
|
|
|
|
|
|
|
|
|
dispatch = g_slice_new (GdkThreadsDispatch);
|
|
|
|
|
dispatch->func = function;
|
|
|
|
|
dispatch->data = data;
|
|
|
|
|
dispatch->destroy = notify;
|
|
|
|
|
|
|
|
|
|
return g_idle_add_full (priority,
|
2007-07-12 16:13:36 +00:00
|
|
|
|
gdk_threads_dispatch,
|
|
|
|
|
dispatch,
|
2006-12-22 17:46:32 +00:00
|
|
|
|
gdk_threads_dispatch_free);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
|
* gdk_threads_add_idle: (skip)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
|
|
|
|
*
|
|
|
|
|
* A wrapper for the common usage of gdk_threads_add_idle_full()
|
|
|
|
|
* assigning the default priority, #G_PRIORITY_DEFAULT_IDLE.
|
|
|
|
|
*
|
|
|
|
|
* See gdk_threads_add_idle_full().
|
2007-05-26 20:49:08 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.12
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_idle (GSourceFunc function,
|
2010-12-15 22:32:29 +00:00
|
|
|
|
gpointer data)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
{
|
|
|
|
|
return gdk_threads_add_idle_full (G_PRIORITY_DEFAULT_IDLE,
|
|
|
|
|
function, data, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-10-09 18:09:35 +00:00
|
|
|
|
* gdk_threads_add_timeout_full: (rename-to gdk_threads_add_timeout)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* @priority: the priority of the timeout source. Typically this will be in the
|
|
|
|
|
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
|
|
|
|
|
* @interval: the time between calls to the function, in milliseconds
|
|
|
|
|
* (1/1000ths of a second)
|
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @notify: (allow-none): function to call when the timeout is removed, or %NULL
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets a function to be called at regular intervals holding the GDK lock,
|
|
|
|
|
* with the given priority. The function is called repeatedly until it
|
|
|
|
|
* returns %FALSE, at which point the timeout is automatically destroyed
|
|
|
|
|
* and the function will not be called again. The @notify function is
|
|
|
|
|
* called when the timeout is destroyed. The first call to the
|
|
|
|
|
* function will be at the end of the first @interval.
|
|
|
|
|
*
|
|
|
|
|
* Note that timeout functions may be delayed, due to the processing of other
|
|
|
|
|
* event sources. Thus they should not be relied on for precise timing.
|
|
|
|
|
* After each call to the timeout function, the time of the next
|
|
|
|
|
* timeout is recalculated based on the current time and the given interval
|
2014-02-07 19:03:49 +00:00
|
|
|
|
* (it does not try to “catch up” time lost in delays).
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* This variant of g_timeout_add_full() can be thought of a MT-safe version
|
|
|
|
|
* for GTK+ widgets for the following use case:
|
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* static gboolean timeout_callback (gpointer data)
|
|
|
|
|
* {
|
|
|
|
|
* SomeWidget *self = data;
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // do stuff with self
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* self->timeout_id = 0;
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2012-01-31 00:12:27 +00:00
|
|
|
|
* return G_SOURCE_REMOVE;
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* }
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* static void some_widget_do_stuff_later (SomeWidget *self)
|
|
|
|
|
* {
|
|
|
|
|
* self->timeout_id = g_timeout_add (timeout_callback, self)
|
|
|
|
|
* }
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* static void some_widget_finalize (GObject *object)
|
|
|
|
|
* {
|
2007-11-25 06:51:19 +00:00
|
|
|
|
* SomeWidget *self = SOME_WIDGET (object);
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* if (self->timeout_id)
|
|
|
|
|
* g_source_remove (self->timeout_id);
|
2006-12-28 21:22:23 +00:00
|
|
|
|
*
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
|
* }
|
2007-11-25 06:51:19 +00:00
|
|
|
|
* ]|
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.12
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_timeout_full (gint priority,
|
|
|
|
|
guint interval,
|
|
|
|
|
GSourceFunc function,
|
|
|
|
|
gpointer data,
|
|
|
|
|
GDestroyNotify notify)
|
|
|
|
|
{
|
|
|
|
|
GdkThreadsDispatch *dispatch;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (function != NULL, 0);
|
|
|
|
|
|
|
|
|
|
dispatch = g_slice_new (GdkThreadsDispatch);
|
|
|
|
|
dispatch->func = function;
|
|
|
|
|
dispatch->data = data;
|
|
|
|
|
dispatch->destroy = notify;
|
|
|
|
|
|
|
|
|
|
return g_timeout_add_full (priority,
|
|
|
|
|
interval,
|
|
|
|
|
gdk_threads_dispatch,
|
|
|
|
|
dispatch,
|
|
|
|
|
gdk_threads_dispatch_free);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
|
* gdk_threads_add_timeout: (skip)
|
2006-12-22 17:46:32 +00:00
|
|
|
|
* @interval: the time between calls to the function, in milliseconds
|
|
|
|
|
* (1/1000ths of a second)
|
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
|
|
|
|
*
|
|
|
|
|
* A wrapper for the common usage of gdk_threads_add_timeout_full()
|
|
|
|
|
* assigning the default priority, #G_PRIORITY_DEFAULT.
|
|
|
|
|
*
|
|
|
|
|
* See gdk_threads_add_timeout_full().
|
2007-05-26 20:49:08 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2006-12-22 17:46:32 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.12
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_timeout (guint interval,
|
|
|
|
|
GSourceFunc function,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
return gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT,
|
|
|
|
|
interval, function, data, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-07-31 22:11:44 +00:00
|
|
|
|
/**
|
2013-10-09 18:09:35 +00:00
|
|
|
|
* gdk_threads_add_timeout_seconds_full: (rename-to gdk_threads_add_timeout_seconds)
|
2008-07-31 22:11:44 +00:00
|
|
|
|
* @priority: the priority of the timeout source. Typically this will be in the
|
|
|
|
|
* range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
|
|
|
|
|
* @interval: the time between calls to the function, in seconds
|
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
2010-12-25 05:29:23 +00:00
|
|
|
|
* @notify: (allow-none): function to call when the timeout is removed, or %NULL
|
2008-07-31 22:11:44 +00:00
|
|
|
|
*
|
2010-12-25 05:29:23 +00:00
|
|
|
|
* A variant of gdk_threads_add_timeout_full() with second-granularity.
|
2008-07-31 22:11:44 +00:00
|
|
|
|
* See g_timeout_add_seconds_full() for a discussion of why it is
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* a good idea to use this function if you don’t need finer granularity.
|
2008-07-31 22:11:44 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2008-07-31 22:11:44 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_timeout_seconds_full (gint priority,
|
|
|
|
|
guint interval,
|
|
|
|
|
GSourceFunc function,
|
|
|
|
|
gpointer data,
|
|
|
|
|
GDestroyNotify notify)
|
|
|
|
|
{
|
|
|
|
|
GdkThreadsDispatch *dispatch;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (function != NULL, 0);
|
|
|
|
|
|
|
|
|
|
dispatch = g_slice_new (GdkThreadsDispatch);
|
|
|
|
|
dispatch->func = function;
|
|
|
|
|
dispatch->data = data;
|
|
|
|
|
dispatch->destroy = notify;
|
|
|
|
|
|
|
|
|
|
return g_timeout_add_seconds_full (priority,
|
|
|
|
|
interval,
|
|
|
|
|
gdk_threads_dispatch,
|
|
|
|
|
dispatch,
|
|
|
|
|
gdk_threads_dispatch_free);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-18 05:37:11 +00:00
|
|
|
|
* gdk_threads_add_timeout_seconds: (skip)
|
2008-07-31 22:11:44 +00:00
|
|
|
|
* @interval: the time between calls to the function, in seconds
|
|
|
|
|
* @function: function to call
|
|
|
|
|
* @data: data to pass to @function
|
|
|
|
|
*
|
|
|
|
|
* A wrapper for the common usage of gdk_threads_add_timeout_seconds_full()
|
|
|
|
|
* assigning the default priority, #G_PRIORITY_DEFAULT.
|
|
|
|
|
*
|
|
|
|
|
* For details, see gdk_threads_add_timeout_full().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the ID (greater than 0) of the event source.
|
2008-07-31 22:11:44 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gdk_threads_add_timeout_seconds (guint interval,
|
|
|
|
|
GSourceFunc function,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
return gdk_threads_add_timeout_seconds_full (G_PRIORITY_DEFAULT,
|
|
|
|
|
interval, function, data, NULL);
|
|
|
|
|
}
|