]> Pileus Git - ~andy/gtk/blob - gdk/gdk.c
Remove deprecated gdk_exit() function
[~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 void
390 gdk_threads_enter (void)
391 {
392   GDK_THREADS_ENTER ();
393 }
394
395 void
396 gdk_threads_leave (void)
397 {
398   GDK_THREADS_LEAVE ();
399 }
400
401 static void
402 gdk_threads_impl_lock (void)
403 {
404   if (gdk_threads_mutex)
405     g_mutex_lock (gdk_threads_mutex);
406 }
407
408 static void
409 gdk_threads_impl_unlock (void)
410 {
411   if (gdk_threads_mutex)
412     g_mutex_unlock (gdk_threads_mutex);
413 }
414
415 /**
416  * gdk_threads_init:
417  * 
418  * Initializes GDK so that it can be used from multiple threads
419  * in conjunction with gdk_threads_enter() and gdk_threads_leave().
420  * g_thread_init() must be called previous to this function.
421  *
422  * This call must be made before any use of the main loop from
423  * GTK+; to be safe, call it before gtk_init().
424  **/
425 void
426 gdk_threads_init (void)
427 {
428   if (!g_thread_supported ())
429     g_error ("g_thread_init() must be called before gdk_threads_init()");
430
431   gdk_threads_mutex = g_mutex_new ();
432   if (!gdk_threads_lock)
433     gdk_threads_lock = gdk_threads_impl_lock;
434   if (!gdk_threads_unlock)
435     gdk_threads_unlock = gdk_threads_impl_unlock;
436 }
437
438 /**
439  * gdk_threads_set_lock_functions:
440  * @enter_fn:   function called to guard GDK
441  * @leave_fn: function called to release the guard
442  *
443  * Allows the application to replace the standard method that
444  * GDK uses to protect its data structures. Normally, GDK
445  * creates a single #GMutex that is locked by gdk_threads_enter(),
446  * and released by gdk_threads_leave(); using this function an
447  * application provides, instead, a function @enter_fn that is
448  * called by gdk_threads_enter() and a function @leave_fn that is
449  * called by gdk_threads_leave().
450  *
451  * The functions must provide at least same locking functionality
452  * as the default implementation, but can also do extra application
453  * specific processing.
454  *
455  * As an example, consider an application that has its own recursive
456  * lock that when held, holds the GTK+ lock as well. When GTK+ unlocks
457  * the GTK+ lock when entering a recursive main loop, the application
458  * must temporarily release its lock as well.
459  *
460  * Most threaded GTK+ apps won't need to use this method.
461  *
462  * This method must be called before gdk_threads_init(), and cannot
463  * be called multiple times.
464  *
465  * Since: 2.4
466  **/
467 void
468 gdk_threads_set_lock_functions (GCallback enter_fn,
469                                 GCallback leave_fn)
470 {
471   g_return_if_fail (gdk_threads_lock == NULL &&
472                     gdk_threads_unlock == NULL);
473
474   gdk_threads_lock = enter_fn;
475   gdk_threads_unlock = leave_fn;
476 }
477
478 static gboolean
479 gdk_threads_dispatch (gpointer data)
480 {
481   GdkThreadsDispatch *dispatch = data;
482   gboolean ret = FALSE;
483
484   GDK_THREADS_ENTER ();
485
486   if (!g_source_is_destroyed (g_main_current_source ()))
487     ret = dispatch->func (dispatch->data);
488
489   GDK_THREADS_LEAVE ();
490
491   return ret;
492 }
493
494 static void
495 gdk_threads_dispatch_free (gpointer data)
496 {
497   GdkThreadsDispatch *dispatch = data;
498
499   if (dispatch->destroy && dispatch->data)
500     dispatch->destroy (dispatch->data);
501
502   g_slice_free (GdkThreadsDispatch, data);
503 }
504
505
506 /**
507  * gdk_threads_add_idle_full:
508  * @priority: the priority of the idle source. Typically this will be in the
509  *            range btweeen #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE
510  * @function: function to call
511  * @data:     data to pass to @function
512  * @notify: (allow-none):   function to call when the idle is removed, or %NULL
513  *
514  * Adds a function to be called whenever there are no higher priority
515  * events pending.  If the function returns %FALSE it is automatically
516  * removed from the list of event sources and will not be called again.
517  *
518  * This variant of g_idle_add_full() calls @function with the GDK lock
519  * held. It can be thought of a MT-safe version for GTK+ widgets for the 
520  * following use case, where you have to worry about idle_callback()
521  * running in thread A and accessing @self after it has been finalized
522  * in thread B:
523  *
524  * |[
525  * static gboolean
526  * idle_callback (gpointer data)
527  * {
528  *    /&ast; gdk_threads_enter(); would be needed for g_idle_add() &ast;/
529  *
530  *    SomeWidget *self = data;
531  *    /&ast; do stuff with self &ast;/
532  *
533  *    self->idle_id = 0;
534  *
535  *    /&ast; gdk_threads_leave(); would be needed for g_idle_add() &ast;/
536  *    return FALSE;
537  * }
538  *
539  * static void
540  * some_widget_do_stuff_later (SomeWidget *self)
541  * {
542  *    self->idle_id = gdk_threads_add_idle (idle_callback, self)
543  *    /&ast; using g_idle_add() here would require thread protection in the callback &ast;/
544  * }
545  *
546  * static void
547  * some_widget_finalize (GObject *object)
548  * {
549  *    SomeWidget *self = SOME_WIDGET (object);
550  *    if (self->idle_id)
551  *      g_source_remove (self->idle_id);
552  *    G_OBJECT_CLASS (parent_class)->finalize (object);
553  * }
554  * ]|
555  *
556  * Return value: the ID (greater than 0) of the event source.
557  *
558  * Since: 2.12
559  */
560 guint
561 gdk_threads_add_idle_full (gint           priority,
562                            GSourceFunc    function,
563                            gpointer       data,
564                            GDestroyNotify notify)
565 {
566   GdkThreadsDispatch *dispatch;
567
568   g_return_val_if_fail (function != NULL, 0);
569
570   dispatch = g_slice_new (GdkThreadsDispatch);
571   dispatch->func = function;
572   dispatch->data = data;
573   dispatch->destroy = notify;
574
575   return g_idle_add_full (priority,
576                           gdk_threads_dispatch,
577                           dispatch,
578                           gdk_threads_dispatch_free);
579 }
580
581 /**
582  * gdk_threads_add_idle:
583  * @function: function to call
584  * @data:     data to pass to @function
585  *
586  * A wrapper for the common usage of gdk_threads_add_idle_full() 
587  * assigning the default priority, #G_PRIORITY_DEFAULT_IDLE.
588  *
589  * See gdk_threads_add_idle_full().
590  *
591  * Return value: the ID (greater than 0) of the event source.
592  * 
593  * Since: 2.12
594  */
595 guint
596 gdk_threads_add_idle (GSourceFunc    function,
597                       gpointer       data)
598 {
599   return gdk_threads_add_idle_full (G_PRIORITY_DEFAULT_IDLE,
600                                     function, data, NULL);
601 }
602
603
604 /**
605  * gdk_threads_add_timeout_full:
606  * @priority: the priority of the timeout source. Typically this will be in the
607  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
608  * @interval: the time between calls to the function, in milliseconds
609  *             (1/1000ths of a second)
610  * @function: function to call
611  * @data:     data to pass to @function
612  * @notify: (allow-none):   function to call when the timeout is removed, or %NULL
613  *
614  * Sets a function to be called at regular intervals holding the GDK lock,
615  * with the given priority.  The function is called repeatedly until it 
616  * returns %FALSE, at which point the timeout is automatically destroyed 
617  * and the function will not be called again.  The @notify function is
618  * called when the timeout is destroyed.  The first call to the
619  * function will be at the end of the first @interval.
620  *
621  * Note that timeout functions may be delayed, due to the processing of other
622  * event sources. Thus they should not be relied on for precise timing.
623  * After each call to the timeout function, the time of the next
624  * timeout is recalculated based on the current time and the given interval
625  * (it does not try to 'catch up' time lost in delays).
626  *
627  * This variant of g_timeout_add_full() can be thought of a MT-safe version 
628  * for GTK+ widgets for the following use case:
629  *
630  * |[
631  * static gboolean timeout_callback (gpointer data)
632  * {
633  *    SomeWidget *self = data;
634  *    
635  *    /&ast; do stuff with self &ast;/
636  *    
637  *    self->timeout_id = 0;
638  *    
639  *    return FALSE;
640  * }
641  *  
642  * static void some_widget_do_stuff_later (SomeWidget *self)
643  * {
644  *    self->timeout_id = g_timeout_add (timeout_callback, self)
645  * }
646  *  
647  * static void some_widget_finalize (GObject *object)
648  * {
649  *    SomeWidget *self = SOME_WIDGET (object);
650  *    
651  *    if (self->timeout_id)
652  *      g_source_remove (self->timeout_id);
653  *    
654  *    G_OBJECT_CLASS (parent_class)->finalize (object);
655  * }
656  * ]|
657  *
658  * Return value: the ID (greater than 0) of the event source.
659  * 
660  * Since: 2.12
661  */
662 guint
663 gdk_threads_add_timeout_full (gint           priority,
664                               guint          interval,
665                               GSourceFunc    function,
666                               gpointer       data,
667                               GDestroyNotify notify)
668 {
669   GdkThreadsDispatch *dispatch;
670
671   g_return_val_if_fail (function != NULL, 0);
672
673   dispatch = g_slice_new (GdkThreadsDispatch);
674   dispatch->func = function;
675   dispatch->data = data;
676   dispatch->destroy = notify;
677
678   return g_timeout_add_full (priority, 
679                              interval,
680                              gdk_threads_dispatch, 
681                              dispatch, 
682                              gdk_threads_dispatch_free);
683 }
684
685 /**
686  * gdk_threads_add_timeout:
687  * @interval: the time between calls to the function, in milliseconds
688  *             (1/1000ths of a second)
689  * @function: function to call
690  * @data:     data to pass to @function
691  *
692  * A wrapper for the common usage of gdk_threads_add_timeout_full() 
693  * assigning the default priority, #G_PRIORITY_DEFAULT.
694  *
695  * See gdk_threads_add_timeout_full().
696  * 
697  * Return value: the ID (greater than 0) of the event source.
698  *
699  * Since: 2.12
700  */
701 guint
702 gdk_threads_add_timeout (guint       interval,
703                          GSourceFunc function,
704                          gpointer    data)
705 {
706   return gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT,
707                                        interval, function, data, NULL);
708 }
709
710
711 /**
712  * gdk_threads_add_timeout_seconds_full:
713  * @priority: the priority of the timeout source. Typically this will be in the
714  *            range between #G_PRIORITY_DEFAULT_IDLE and #G_PRIORITY_HIGH_IDLE.
715  * @interval: the time between calls to the function, in seconds
716  * @function: function to call
717  * @data:     data to pass to @function
718  * @notify: (allow-none):   function to call when the timeout is removed, or %NULL
719  *
720  * A variant of gdk_threads_add_timout_full() with second-granularity.
721  * See g_timeout_add_seconds_full() for a discussion of why it is
722  * a good idea to use this function if you don't need finer granularity.
723  *
724  *  Return value: the ID (greater than 0) of the event source.
725  * 
726  * Since: 2.14
727  */
728 guint
729 gdk_threads_add_timeout_seconds_full (gint           priority,
730                                       guint          interval,
731                                       GSourceFunc    function,
732                                       gpointer       data,
733                                       GDestroyNotify notify)
734 {
735   GdkThreadsDispatch *dispatch;
736
737   g_return_val_if_fail (function != NULL, 0);
738
739   dispatch = g_slice_new (GdkThreadsDispatch);
740   dispatch->func = function;
741   dispatch->data = data;
742   dispatch->destroy = notify;
743
744   return g_timeout_add_seconds_full (priority, 
745                                      interval,
746                                      gdk_threads_dispatch, 
747                                      dispatch, 
748                                      gdk_threads_dispatch_free);
749 }
750
751 /**
752  * gdk_threads_add_timeout_seconds:
753  * @interval: the time between calls to the function, in seconds
754  * @function: function to call
755  * @data:     data to pass to @function
756  *
757  * A wrapper for the common usage of gdk_threads_add_timeout_seconds_full() 
758  * assigning the default priority, #G_PRIORITY_DEFAULT.
759  *
760  * For details, see gdk_threads_add_timeout_full().
761  * 
762  * Return value: the ID (greater than 0) of the event source.
763  *
764  * Since: 2.14
765  */
766 guint
767 gdk_threads_add_timeout_seconds (guint       interval,
768                                  GSourceFunc function,
769                                  gpointer    data)
770 {
771   return gdk_threads_add_timeout_seconds_full (G_PRIORITY_DEFAULT,
772                                                interval, function, data, NULL);
773 }
774
775
776 G_CONST_RETURN char *
777 gdk_get_program_class (void)
778 {
779   return gdk_progclass;
780 }
781
782 void
783 gdk_set_program_class (const char *program_class)
784 {
785   g_free (gdk_progclass);
786
787   gdk_progclass = g_strdup (program_class);
788 }
789
790 #define __GDK_C__
791 #include "gdkaliasdef.c"