]> Pileus Git - ~andy/gtk/blob - gdk/gdk.c
Merge in Gdk-custom.c introspection annotations
[~andy/gtk] / gdk / gdk.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28
29 #include <string.h>
30 #include <stdlib.h>
31
32 #include "gdk.h"
33 #include "gdkinternals.h"
34 #include "gdkintl.h"
35
36 #ifndef HAVE_XCONVERTCASE
37 #include "gdkkeysyms.h"
38 #endif
39 #include "gdkalias.h"
40
41 typedef struct _GdkPredicate  GdkPredicate;
42
43 struct _GdkPredicate
44 {
45   GdkEventFunc func;
46   gpointer data;
47 };
48
49 typedef struct _GdkThreadsDispatch GdkThreadsDispatch;
50
51 struct _GdkThreadsDispatch
52 {
53   GSourceFunc func;
54   gpointer data;
55   GDestroyNotify destroy;
56 };
57
58
59 /* Private variable declarations
60  */
61 static int gdk_initialized = 0;                     /* 1 if the library is initialized,
62                                                      * 0 otherwise.
63                                                      */
64
65 static gchar  *gdk_progclass = NULL;
66
67 #ifdef G_ENABLE_DEBUG
68 static const GDebugKey gdk_debug_keys[] = {
69   {"events",        GDK_DEBUG_EVENTS},
70   {"misc",          GDK_DEBUG_MISC},
71   {"dnd",           GDK_DEBUG_DND},
72   {"xim",           GDK_DEBUG_XIM},
73   {"nograbs",       GDK_DEBUG_NOGRABS},
74   {"colormap",      GDK_DEBUG_COLORMAP},
75   {"gdkrgb",        GDK_DEBUG_GDKRGB},
76   {"gc",            GDK_DEBUG_GC},
77   {"pixmap",        GDK_DEBUG_PIXMAP},
78   {"image",         GDK_DEBUG_IMAGE},
79   {"input",         GDK_DEBUG_INPUT},
80   {"cursor",        GDK_DEBUG_CURSOR},
81   {"multihead",     GDK_DEBUG_MULTIHEAD},
82   {"xinerama",      GDK_DEBUG_XINERAMA},
83   {"draw",          GDK_DEBUG_DRAW},
84   {"eventloop",     GDK_DEBUG_EVENTLOOP}
85 };
86
87 static const int gdk_ndebug_keys = G_N_ELEMENTS (gdk_debug_keys);
88
89 #endif /* G_ENABLE_DEBUG */
90
91 #ifdef G_ENABLE_DEBUG
92 static gboolean
93 gdk_arg_debug_cb (const char *key, const char *value, gpointer user_data, GError **error)
94 {
95   guint debug_value = g_parse_debug_string (value,
96                                             (GDebugKey *) gdk_debug_keys,
97                                             gdk_ndebug_keys);
98
99   if (debug_value == 0 && value != NULL && strcmp (value, "") != 0)
100     {
101       g_set_error (error, 
102                    G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
103                    _("Error parsing option --gdk-debug"));
104       return FALSE;
105     }
106
107   _gdk_debug_flags |= debug_value;
108
109   return TRUE;
110 }
111
112 static gboolean
113 gdk_arg_no_debug_cb (const char *key, const char *value, gpointer user_data, GError **error)
114 {
115   guint debug_value = g_parse_debug_string (value,
116                                             (GDebugKey *) gdk_debug_keys,
117                                             gdk_ndebug_keys);
118
119   if (debug_value == 0 && value != NULL && strcmp (value, "") != 0)
120     {
121       g_set_error (error, 
122                    G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
123                    _("Error parsing option --gdk-no-debug"));
124       return FALSE;
125     }
126
127   _gdk_debug_flags &= ~debug_value;
128
129   return TRUE;
130 }
131 #endif /* G_ENABLE_DEBUG */
132
133 static gboolean
134 gdk_arg_class_cb (const char *key, const char *value, gpointer user_data, GError **error)
135 {
136   gdk_set_program_class (value);
137
138   return TRUE;
139 }
140
141 static gboolean
142 gdk_arg_name_cb (const char *key, const char *value, gpointer user_data, GError **error)
143 {
144   g_set_prgname (value);
145
146   return TRUE;
147 }
148
149 static const GOptionEntry gdk_args[] = {
150   { "class",        0, 0,                     G_OPTION_ARG_CALLBACK, gdk_arg_class_cb,
151     /* Description of --class=CLASS in --help output */        N_("Program class as used by the window manager"),
152     /* Placeholder in --class=CLASS in --help output */        N_("CLASS") },
153   { "name",         0, 0,                     G_OPTION_ARG_CALLBACK, gdk_arg_name_cb,
154     /* Description of --name=NAME in --help output */          N_("Program name as used by the window manager"),
155     /* Placeholder in --name=NAME in --help output */          N_("NAME") },
156   { "display",      0, G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING,   &_gdk_display_name,
157     /* Description of --display=DISPLAY in --help output */    N_("X display to use"),
158     /* Placeholder in --display=DISPLAY in --help output */    N_("DISPLAY") },
159   { "screen",       0, 0, G_OPTION_ARG_INT,      &_gdk_screen_number,
160     /* Description of --screen=SCREEN in --help output */      N_("X screen to use"),
161     /* Placeholder in --screen=SCREEN in --help output */      N_("SCREEN") },
162 #ifdef G_ENABLE_DEBUG
163   { "gdk-debug",    0, 0, G_OPTION_ARG_CALLBACK, gdk_arg_debug_cb,  
164     /* Description of --gdk-debug=FLAGS in --help output */    N_("Gdk debugging flags to set"),
165     /* Placeholder in --gdk-debug=FLAGS in --help output */    N_("FLAGS") },
166   { "gdk-no-debug", 0, 0, G_OPTION_ARG_CALLBACK, gdk_arg_no_debug_cb, 
167     /* Description of --gdk-no-debug=FLAGS in --help output */ N_("Gdk debugging flags to unset"), 
168     /* Placeholder in --gdk-no-debug=FLAGS in --help output */ N_("FLAGS") },
169 #endif 
170   { NULL }
171 };
172
173 /**
174  * gdk_add_option_entries_libgtk_only:
175  * @group: An option group.
176  * 
177  * Appends gdk option entries to the passed in option group. This is
178  * not public API and must not be used by applications.
179  **/
180 void
181 gdk_add_option_entries_libgtk_only (GOptionGroup *group)
182 {
183   g_option_group_add_entries (group, gdk_args);
184   g_option_group_add_entries (group, _gdk_windowing_args);
185 }
186
187 void
188 gdk_pre_parse_libgtk_only (void)
189 {
190   gdk_initialized = TRUE;
191
192   /* We set the fallback program class here, rather than lazily in
193    * gdk_get_program_class, since we don't want -name to override it.
194    */
195   gdk_progclass = g_strdup (g_get_prgname ());
196   if (gdk_progclass && gdk_progclass[0])
197     gdk_progclass[0] = g_ascii_toupper (gdk_progclass[0]);
198   
199 #ifdef G_ENABLE_DEBUG
200   {
201     gchar *debug_string = getenv("GDK_DEBUG");
202     if (debug_string != NULL)
203       _gdk_debug_flags = g_parse_debug_string (debug_string,
204                                               (GDebugKey *) gdk_debug_keys,
205                                               gdk_ndebug_keys);
206   }
207 #endif  /* G_ENABLE_DEBUG */
208
209   if (getenv ("GDK_NATIVE_WINDOWS"))
210     {
211       _gdk_native_windows = TRUE;
212       /* Ensure that this is not propagated
213          to spawned applications */
214       g_unsetenv ("GDK_NATIVE_WINDOWS");
215     }
216
217   g_type_init ();
218
219   /* Do any setup particular to the windowing system
220    */
221   _gdk_windowing_init ();  
222 }
223
224   
225 /**
226  * gdk_parse_args:
227  * @argc: the number of command line arguments.
228  * @argv: the array of command line arguments.
229  * 
230  * Parse command line arguments, and store for future
231  * use by calls to gdk_display_open().
232  *
233  * Any arguments used by GDK are removed from the array and @argc and @argv are
234  * updated accordingly.
235  *
236  * You shouldn't call this function explicitely if you are using
237  * gtk_init(), gtk_init_check(), gdk_init(), or gdk_init_check().
238  *
239  * Since: 2.2
240  **/
241 void
242 gdk_parse_args (int    *argc,
243                 char ***argv)
244 {
245   GOptionContext *option_context;
246   GOptionGroup *option_group;
247   GError *error = NULL;
248
249   if (gdk_initialized)
250     return;
251
252   gdk_pre_parse_libgtk_only ();
253   
254   option_context = g_option_context_new (NULL);
255   g_option_context_set_ignore_unknown_options (option_context, TRUE);
256   g_option_context_set_help_enabled (option_context, FALSE);
257   option_group = g_option_group_new (NULL, NULL, NULL, NULL, NULL);
258   g_option_context_set_main_group (option_context, option_group);
259   
260   g_option_group_add_entries (option_group, gdk_args);
261   g_option_group_add_entries (option_group, _gdk_windowing_args);
262
263   if (!g_option_context_parse (option_context, argc, argv, &error))
264     {
265       g_warning ("%s", error->message);
266       g_error_free (error);
267     }
268   g_option_context_free (option_context);
269
270   if (_gdk_debug_flags && GDK_DEBUG_GDKRGB)
271     gdk_rgb_set_verbose (TRUE);
272
273   GDK_NOTE (MISC, g_message ("progname: \"%s\"", g_get_prgname ()));
274 }
275
276 /** 
277  * gdk_get_display_arg_name:
278  *
279  * Gets the display name specified in the command line arguments passed
280  * to gdk_init() or gdk_parse_args(), if any.
281  *
282  * Returns: the display name, if specified explicitely, otherwise %NULL
283  *   this string is owned by GTK+ and must not be modified or freed.
284  *
285  * Since: 2.2
286  */
287 G_CONST_RETURN gchar *
288 gdk_get_display_arg_name (void)
289 {
290   if (!_gdk_display_arg_name)
291     {
292       if (_gdk_screen_number >= 0)
293         _gdk_display_arg_name = _gdk_windowing_substitute_screen_number (_gdk_display_name, _gdk_screen_number);
294       else
295         _gdk_display_arg_name = g_strdup (_gdk_display_name);
296    }
297
298    return _gdk_display_arg_name;
299 }
300
301 /**
302  * gdk_display_open_default_libgtk_only:
303  * 
304  * Opens the default display specified by command line arguments or
305  * environment variables, sets it as the default display, and returns
306  * it.  gdk_parse_args must have been called first. If the default
307  * display has previously been set, simply returns that. An internal
308  * function that should not be used by applications.
309  * 
310  * Return value: the default display, if it could be opened,
311  *   otherwise %NULL.
312  **/
313 GdkDisplay *
314 gdk_display_open_default_libgtk_only (void)
315 {
316   GdkDisplay *display;
317
318   g_return_val_if_fail (gdk_initialized, NULL);
319   
320   display = gdk_display_get_default ();
321   if (display)
322     return display;
323
324   display = gdk_display_open (gdk_get_display_arg_name ());
325
326   if (!display && _gdk_screen_number >= 0)
327     {
328       g_free (_gdk_display_arg_name);
329       _gdk_display_arg_name = g_strdup (_gdk_display_name);
330       
331       display = gdk_display_open (_gdk_display_name);
332     }
333   
334   if (display)
335     gdk_display_manager_set_default_display (gdk_display_manager_get (),
336                                              display);
337   
338   return display;
339 }
340
341 /**
342  * gdk_init_check:
343  * @argc: (inout):
344  * @argv: (array length=argc) (inout):
345  *
346  *   Initialize the library for use.
347  *
348  * Arguments:
349  *   "argc" is the number of arguments.
350  *   "argv" is an array of strings.
351  *
352  * Results:
353  *   "argc" and "argv" are modified to reflect any arguments
354  *   which were not handled. (Such arguments should either
355  *   be handled by the application or dismissed). If initialization
356  *   fails, returns FALSE, otherwise TRUE.
357  *
358  * Side effects:
359  *   The library is initialized.
360  *
361  *--------------------------------------------------------------
362  */
363 gboolean
364 gdk_init_check (int    *argc,
365                 char ***argv)
366 {
367   gdk_parse_args (argc, argv);
368
369   return gdk_display_open_default_libgtk_only () != NULL;
370 }
371
372
373 /**
374  * gdk_init:
375  * @argc: (inout):
376  * @argv: (array length=argc) (inout):
377  */
378 void
379 gdk_init (int *argc, char ***argv)
380 {
381   if (!gdk_init_check (argc, argv))
382     {
383       const char *display_name = gdk_get_display_arg_name ();
384       g_warning ("cannot open display: %s", display_name ? display_name : "");
385       exit(1);
386     }
387 }
388
389 /*
390  *--------------------------------------------------------------
391  * gdk_exit
392  *
393  *   Restores the library to an un-itialized state and exits
394  *   the program using the "exit" system call.
395  *
396  * Arguments:
397  *   "errorcode" is the error value to pass to "exit".
398  *
399  * Results:
400  *   Allocated structures are freed and the program exits
401  *   cleanly.
402  *
403  * Side effects:
404  *
405  *--------------------------------------------------------------
406  */
407
408 void
409 gdk_exit (gint errorcode)
410 {
411   exit (errorcode);
412 }
413
414 void
415 gdk_threads_enter (void)
416 {
417   GDK_THREADS_ENTER ();
418 }
419
420 void
421 gdk_threads_leave (void)
422 {
423   GDK_THREADS_LEAVE ();
424 }
425
426 static void
427 gdk_threads_impl_lock (void)
428 {
429   if (gdk_threads_mutex)
430     g_mutex_lock (gdk_threads_mutex);
431 }
432
433 static void
434 gdk_threads_impl_unlock (void)
435 {
436   if (gdk_threads_mutex)
437     g_mutex_unlock (gdk_threads_mutex);
438 }
439
440 /**
441  * gdk_threads_init:
442  * 
443  * Initializes GDK so that it can be used from multiple threads
444  * in conjunction with gdk_threads_enter() and gdk_threads_leave().
445  * g_thread_init() must be called previous to this function.
446  *
447  * This call must be made before any use of the main loop from
448  * GTK+; to be safe, call it before gtk_init().
449  **/
450 void
451 gdk_threads_init (void)
452 {
453   if (!g_thread_supported ())
454     g_error ("g_thread_init() must be called before gdk_threads_init()");
455
456   gdk_threads_mutex = g_mutex_new ();
457   if (!gdk_threads_lock)
458     gdk_threads_lock = gdk_threads_impl_lock;
459   if (!gdk_threads_unlock)
460     gdk_threads_unlock = gdk_threads_impl_unlock;
461 }
462
463 /**
464  * gdk_threads_set_lock_functions:
465  * @enter_fn:   function called to guard GDK
466  * @leave_fn: function called to release the guard
467  *
468  * Allows the application to replace the standard method that
469  * GDK uses to protect its data structures. Normally, GDK
470  * creates a single #GMutex that is locked by gdk_threads_enter(),
471  * and released by gdk_threads_leave(); using this function an
472  * application provides, instead, a function @enter_fn that is
473  * called by gdk_threads_enter() and a function @leave_fn that is
474  * called by gdk_threads_leave().
475  *
476  * The functions must provide at least same locking functionality
477  * as the default implementation, but can also do extra application
478  * specific processing.
479  *
480  * As an example, consider an application that has its own recursive
481  * lock that when held, holds the GTK+ lock as well. When GTK+ unlocks
482  * the GTK+ lock when entering a recursive main loop, the application
483  * must temporarily release its lock as well.
484  *
485  * Most threaded GTK+ apps won't need to use this method.
486  *
487  * This method must be called before gdk_threads_init(), and cannot
488  * be called multiple times.
489  *
490  * Since: 2.4
491  **/
492 void
493 gdk_threads_set_lock_functions (GCallback enter_fn,
494                                 GCallback leave_fn)
495 {
496   g_return_if_fail (gdk_threads_lock == NULL &&
497                     gdk_threads_unlock == NULL);
498
499   gdk_threads_lock = enter_fn;
500   gdk_threads_unlock = leave_fn;
501 }
502
503 static gboolean
504 gdk_threads_dispatch (gpointer data)
505 {
506   GdkThreadsDispatch *dispatch = data;
507   gboolean ret = FALSE;
508
509   GDK_THREADS_ENTER ();
510
511   if (!g_source_is_destroyed (g_main_current_source ()))
512     ret = dispatch->func (dispatch->data);
513
514   GDK_THREADS_LEAVE ();
515
516   return ret;
517 }
518
519 static void
520 gdk_threads_dispatch_free (gpointer data)
521 {
522   GdkThreadsDispatch *dispatch = data;
523
524   if (dispatch->destroy && dispatch->data)
525     dispatch->destroy (dispatch->data);
526
527   g_slice_free (GdkThreadsDispatch, data);
528 }
529
530
531 /**
532  * gdk_threads_add_idle_full:
533  * @priority: the priority of the idle source. Typically this will be in the
534  *            range btweeen #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE
535  * @function: function to call
536  * @data:     data to pass to @function
537  * @notify:   function to call when the idle is removed, or %NULL
538  *
539  * Adds a function to be called whenever there are no higher priority
540  * events pending.  If the function returns %FALSE it is automatically
541  * removed from the list of event sources and will not be called again.
542  *
543  * This variant of g_idle_add_full() calls @function with the GDK lock
544  * held. It can be thought of a MT-safe version for GTK+ widgets for the 
545  * following use case, where you have to worry about idle_callback()
546  * running in thread A and accessing @self after it has been finalized
547  * in thread B:
548  *
549  * |[
550  * static gboolean
551  * idle_callback (gpointer data)
552  * {
553  *    /&ast; gdk_threads_enter(); would be needed for g_idle_add() &ast;/
554  *
555  *    SomeWidget *self = data;
556  *    /&ast; do stuff with self &ast;/
557  *
558  *    self->idle_id = 0;
559  *
560  *    /&ast; gdk_threads_leave(); would be needed for g_idle_add() &ast;/
561  *    return FALSE;
562  * }
563  *
564  * static void
565  * some_widget_do_stuff_later (SomeWidget *self)
566  * {
567  *    self->idle_id = gdk_threads_add_idle (idle_callback, self)
568  *    /&ast; using g_idle_add() here would require thread protection in the callback &ast;/
569  * }
570  *
571  * static void
572  * some_widget_finalize (GObject *object)
573  * {
574  *    SomeWidget *self = SOME_WIDGET (object);
575  *    if (self->idle_id)
576  *      g_source_remove (self->idle_id);
577  *    G_OBJECT_CLASS (parent_class)->finalize (object);
578  * }
579  * ]|
580  *
581  * Return value: the ID (greater than 0) of the event source.
582  *
583  * Since: 2.12
584  */
585 guint
586 gdk_threads_add_idle_full (gint           priority,
587                            GSourceFunc    function,
588                            gpointer       data,
589                            GDestroyNotify notify)
590 {
591   GdkThreadsDispatch *dispatch;
592
593   g_return_val_if_fail (function != NULL, 0);
594
595   dispatch = g_slice_new (GdkThreadsDispatch);
596   dispatch->func = function;
597   dispatch->data = data;
598   dispatch->destroy = notify;
599
600   return g_idle_add_full (priority,
601                           gdk_threads_dispatch,
602                           dispatch,
603                           gdk_threads_dispatch_free);
604 }
605
606 /**
607  * gdk_threads_add_idle:
608  * @function: function to call
609  * @data:     data to pass to @function
610  *
611  * A wrapper for the common usage of gdk_threads_add_idle_full() 
612  * assigning the default priority, #G_PRIORITY_DEFAULT_IDLE.
613  *
614  * See gdk_threads_add_idle_full().
615  *
616  * Return value: the ID (greater than 0) of the event source.
617  * 
618  * Since: 2.12
619  */
620 guint
621 gdk_threads_add_idle (GSourceFunc    function,
622                       gpointer       data)
623 {
624   return gdk_threads_add_idle_full (G_PRIORITY_DEFAULT_IDLE,
625                                     function, data, NULL);
626 }
627
628
629 /**
630  * gdk_threads_add_timeout_full:
631  * @priority: the priority of the timeout source. Typically this will be in the
632  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
633  * @interval: the time between calls to the function, in milliseconds
634  *             (1/1000ths of a second)
635  * @function: function to call
636  * @data:     data to pass to @function
637  * @notify:   function to call when the timeout is removed, or %NULL
638  *
639  * Sets a function to be called at regular intervals holding the GDK lock,
640  * with the given priority.  The function is called repeatedly until it 
641  * returns %FALSE, at which point the timeout is automatically destroyed 
642  * and the function will not be called again.  The @notify function is
643  * called when the timeout is destroyed.  The first call to the
644  * function will be at the end of the first @interval.
645  *
646  * Note that timeout functions may be delayed, due to the processing of other
647  * event sources. Thus they should not be relied on for precise timing.
648  * After each call to the timeout function, the time of the next
649  * timeout is recalculated based on the current time and the given interval
650  * (it does not try to 'catch up' time lost in delays).
651  *
652  * This variant of g_timeout_add_full() can be thought of a MT-safe version 
653  * for GTK+ widgets for the following use case:
654  *
655  * |[
656  * static gboolean timeout_callback (gpointer data)
657  * {
658  *    SomeWidget *self = data;
659  *    
660  *    /&ast; do stuff with self &ast;/
661  *    
662  *    self->timeout_id = 0;
663  *    
664  *    return FALSE;
665  * }
666  *  
667  * static void some_widget_do_stuff_later (SomeWidget *self)
668  * {
669  *    self->timeout_id = g_timeout_add (timeout_callback, self)
670  * }
671  *  
672  * static void some_widget_finalize (GObject *object)
673  * {
674  *    SomeWidget *self = SOME_WIDGET (object);
675  *    
676  *    if (self->timeout_id)
677  *      g_source_remove (self->timeout_id);
678  *    
679  *    G_OBJECT_CLASS (parent_class)->finalize (object);
680  * }
681  * ]|
682  *
683  * Return value: the ID (greater than 0) of the event source.
684  * 
685  * Since: 2.12
686  */
687 guint
688 gdk_threads_add_timeout_full (gint           priority,
689                               guint          interval,
690                               GSourceFunc    function,
691                               gpointer       data,
692                               GDestroyNotify notify)
693 {
694   GdkThreadsDispatch *dispatch;
695
696   g_return_val_if_fail (function != NULL, 0);
697
698   dispatch = g_slice_new (GdkThreadsDispatch);
699   dispatch->func = function;
700   dispatch->data = data;
701   dispatch->destroy = notify;
702
703   return g_timeout_add_full (priority, 
704                              interval,
705                              gdk_threads_dispatch, 
706                              dispatch, 
707                              gdk_threads_dispatch_free);
708 }
709
710 /**
711  * gdk_threads_add_timeout:
712  * @interval: the time between calls to the function, in milliseconds
713  *             (1/1000ths of a second)
714  * @function: function to call
715  * @data:     data to pass to @function
716  *
717  * A wrapper for the common usage of gdk_threads_add_timeout_full() 
718  * assigning the default priority, #G_PRIORITY_DEFAULT.
719  *
720  * See gdk_threads_add_timeout_full().
721  * 
722  * Return value: the ID (greater than 0) of the event source.
723  *
724  * Since: 2.12
725  */
726 guint
727 gdk_threads_add_timeout (guint       interval,
728                          GSourceFunc function,
729                          gpointer    data)
730 {
731   return gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT,
732                                        interval, function, data, NULL);
733 }
734
735
736 /**
737  * gdk_threads_add_timeout_seconds_full:
738  * @priority: the priority of the timeout source. Typically this will be in the
739  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
740  * @interval: the time between calls to the function, in seconds
741  * @function: function to call
742  * @data:     data to pass to @function
743  * @notify:   function to call when the timeout is removed, or %NULL
744  *
745  * A variant of gdk_threads_add_timout_full() with second-granularity.
746  * See g_timeout_add_seconds_full() for a discussion of why it is
747  * a good idea to use this function if you don't need finer granularity.
748  *
749  *  Return value: the ID (greater than 0) of the event source.
750  * 
751  * Since: 2.14
752  */
753 guint
754 gdk_threads_add_timeout_seconds_full (gint           priority,
755                                       guint          interval,
756                                       GSourceFunc    function,
757                                       gpointer       data,
758                                       GDestroyNotify notify)
759 {
760   GdkThreadsDispatch *dispatch;
761
762   g_return_val_if_fail (function != NULL, 0);
763
764   dispatch = g_slice_new (GdkThreadsDispatch);
765   dispatch->func = function;
766   dispatch->data = data;
767   dispatch->destroy = notify;
768
769   return g_timeout_add_seconds_full (priority, 
770                                      interval,
771                                      gdk_threads_dispatch, 
772                                      dispatch, 
773                                      gdk_threads_dispatch_free);
774 }
775
776 /**
777  * gdk_threads_add_timeout_seconds:
778  * @interval: the time between calls to the function, in seconds
779  * @function: function to call
780  * @data:     data to pass to @function
781  *
782  * A wrapper for the common usage of gdk_threads_add_timeout_seconds_full() 
783  * assigning the default priority, #G_PRIORITY_DEFAULT.
784  *
785  * For details, see gdk_threads_add_timeout_full().
786  * 
787  * Return value: the ID (greater than 0) of the event source.
788  *
789  * Since: 2.14
790  */
791 guint
792 gdk_threads_add_timeout_seconds (guint       interval,
793                                  GSourceFunc function,
794                                  gpointer    data)
795 {
796   return gdk_threads_add_timeout_seconds_full (G_PRIORITY_DEFAULT,
797                                                interval, function, data, NULL);
798 }
799
800
801 G_CONST_RETURN char *
802 gdk_get_program_class (void)
803 {
804   return gdk_progclass;
805 }
806
807 void
808 gdk_set_program_class (const char *program_class)
809 {
810   g_free (gdk_progclass);
811
812   gdk_progclass = g_strdup (program_class);
813 }
814
815 #define __GDK_C__
816 #include "gdkaliasdef.c"