]> Pileus Git - ~andy/gtk/blob - gtk/gtkmain.c
Merge remote-tracking branch 'origin/master' into gdk-backend-wayland
[~andy/gtk] / gtk / gtkmain.c
1 /* GTK - The GIMP Toolkit
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 /**
28  * SECTION:gtkmain
29  * @Short_description: Library initialization, main event loop, and events
30  * @Title: Main loop and Events
31  * @See_also:See the GLib manual, especially #GMainLoop and signal-related
32  *    functions such as g_signal_connect()
33  *
34  * Before using GTK+, you need to initialize it; initialization connects to the
35  * window system display, and parses some standard command line arguments. The
36  * gtk_init() macro initializes GTK+. gtk_init() exits the application if errors
37  * occur; to avoid this, use gtk_init_check(). gtk_init_check() allows you to
38  * recover from a failed GTK+ initialization - you might start up your
39  * application in text mode instead.
40  *
41  * Like all GUI toolkits, GTK+ uses an event-driven programming model. When the
42  * user is doing nothing, GTK+ sits in the <firstterm>main loop</firstterm> and
43  * waits for input. If the user performs some action - say, a mouse click - then
44  * the main loop "wakes up" and delivers an event to GTK+. GTK+ forwards the
45  * event to one or more widgets.
46  *
47  * When widgets receive an event, they frequently emit one or more
48  * <firstterm>signals</firstterm>. Signals notify your program that "something
49  * interesting happened" by invoking functions you've connected to the signal
50  * with g_signal_connect(). Functions connected to a signal are often termed
51  * <firstterm>callbacks</firstterm>.
52  *
53  * When your callbacks are invoked, you would typically take some action - for
54  * example, when an Open button is clicked you might display a
55  * #GtkFileChooserDialog. After a callback finishes, GTK+ will return to the
56  * main loop and await more user input.
57  * </para>
58  * <example>
59  * <title>Typical <function>main()</function> function for a GTK+ application</title>
60  * <programlisting>
61  * int
62  * main (int argc, char **argv)
63  * {
64  *   /&ast; Initialize i18n support &ast;/
65  *   gtk_set_locale ();
66  *
67  *   /&ast; Initialize the widget set &ast;/
68  *   gtk_init (&argc, &argv);
69  *
70  *   /&ast; Create the main window &ast;/
71  *   mainwin = gtk_window_new (GTK_WINDOW_TOPLEVEL);
72  *
73  *   /&ast; Set up our GUI elements &ast;/
74  *   ...
75  *
76  *   /&ast; Show the application window &ast;/
77  *   gtk_widget_show_all (mainwin);
78  *
79  *   /&ast; Enter the main event loop, and wait for user interaction &ast;/
80  *   gtk_main ();
81  *
82  *   /&ast; The user lost interest &ast;/
83  *   return 0;
84  * }
85  * </programlisting>
86  * </example>
87  * <para>
88  * It's OK to use the GLib main loop directly instead of gtk_main(), though it
89  * involves slightly more typing. See #GMainLoop in the GLib documentation.
90  */
91
92 #include "config.h"
93
94 #include "gtkmainprivate.h"
95
96 #include <glib.h>
97 #include "gdk/gdk.h"
98
99 #include <locale.h>
100
101 #include <stdio.h>
102 #include <stdlib.h>
103 #include <string.h>
104 #ifdef HAVE_UNISTD_H
105 #include <unistd.h>
106 #endif
107 #include <sys/types.h>          /* For uid_t, gid_t */
108
109 #ifdef G_OS_WIN32
110 #define STRICT
111 #include <windows.h>
112 #undef STRICT
113 #endif
114
115 #include "gtkintl.h"
116
117 #include "gtkaccelmap.h"
118 #include "gtkbox.h"
119 #include "gtkclipboard.h"
120 #include "gtkdnd.h"
121 #include "gtkversion.h"
122 #include "gtkmodules.h"
123 #include "gtkrc.h"
124 #include "gtkrecentmanager.h"
125 #include "gtkselectionprivate.h"
126 #include "gtksettingsprivate.h"
127 #include "gtkwidgetprivate.h"
128 #include "gtkwindowprivate.h"
129 #include "gtktooltip.h"
130 #include "gtkdebug.h"
131 #include "gtkmenu.h"
132
133 #ifdef G_OS_WIN32
134
135 static HMODULE gtk_dll;
136
137 BOOL WINAPI
138 DllMain (HINSTANCE hinstDLL,
139          DWORD     fdwReason,
140          LPVOID    lpvReserved)
141 {
142   switch (fdwReason)
143     {
144     case DLL_PROCESS_ATTACH:
145       gtk_dll = (HMODULE) hinstDLL;
146       break;
147     }
148
149   return TRUE;
150 }
151
152 /* These here before inclusion of gtkprivate.h so that the original
153  * GTK_LIBDIR and GTK_LOCALEDIR definitions are seen. Yeah, this is a
154  * bit sucky.
155  */
156 const gchar *
157 _gtk_get_libdir (void)
158 {
159   static char *gtk_libdir = NULL;
160   if (gtk_libdir == NULL)
161     {
162       gchar *root = g_win32_get_package_installation_directory_of_module (gtk_dll);
163       gchar *slash = strrchr (root, '\\');
164       if (g_ascii_strcasecmp (slash + 1, ".libs") == 0)
165         gtk_libdir = GTK_LIBDIR;
166       else
167         gtk_libdir = g_build_filename (root, "lib", NULL);
168       g_free (root);
169     }
170
171   return gtk_libdir;
172 }
173
174 const gchar *
175 _gtk_get_localedir (void)
176 {
177   static char *gtk_localedir = NULL;
178   if (gtk_localedir == NULL)
179     {
180       const gchar *p;
181       gchar *root, *temp;
182       
183       /* GTK_LOCALEDIR ends in either /lib/locale or
184        * /share/locale. Scan for that slash.
185        */
186       p = GTK_LOCALEDIR + strlen (GTK_LOCALEDIR);
187       while (*--p != '/')
188         ;
189       while (*--p != '/')
190         ;
191
192       root = g_win32_get_package_installation_directory_of_module (gtk_dll);
193       temp = g_build_filename (root, p, NULL);
194       g_free (root);
195
196       /* gtk_localedir is passed to bindtextdomain() which isn't
197        * UTF-8-aware.
198        */
199       gtk_localedir = g_win32_locale_filename_from_utf8 (temp);
200       g_free (temp);
201     }
202   return gtk_localedir;
203 }
204
205 #endif
206
207 #include "gtkprivate.h"
208
209 /* Private type definitions
210  */
211 typedef struct _GtkKeySnooperData        GtkKeySnooperData;
212
213 struct _GtkKeySnooperData
214 {
215   GtkKeySnoopFunc func;
216   gpointer func_data;
217   guint id;
218 };
219
220 static gint  gtk_invoke_key_snoopers     (GtkWidget          *grab_widget,
221                                           GdkEvent           *event);
222
223 static GtkWindowGroup *gtk_main_get_window_group (GtkWidget   *widget);
224
225 static guint gtk_main_loop_level = 0;
226 static gint pre_initialized = FALSE;
227 static gint gtk_initialized = FALSE;
228 static GList *current_events = NULL;
229
230 static GSList *main_loops = NULL;      /* stack of currently executing main loops */
231
232 static GSList *key_snoopers = NULL;
233
234 static guint debug_flags = 0;              /* Global GTK debug flag */
235
236 #ifdef G_ENABLE_DEBUG
237 static const GDebugKey gtk_debug_keys[] = {
238   {"misc", GTK_DEBUG_MISC},
239   {"plugsocket", GTK_DEBUG_PLUGSOCKET},
240   {"text", GTK_DEBUG_TEXT},
241   {"tree", GTK_DEBUG_TREE},
242   {"updates", GTK_DEBUG_UPDATES},
243   {"keybindings", GTK_DEBUG_KEYBINDINGS},
244   {"multihead", GTK_DEBUG_MULTIHEAD},
245   {"modules", GTK_DEBUG_MODULES},
246   {"geometry", GTK_DEBUG_GEOMETRY},
247   {"icontheme", GTK_DEBUG_ICONTHEME},
248   {"printing", GTK_DEBUG_PRINTING},
249   {"builder", GTK_DEBUG_BUILDER},
250   {"size-request", GTK_DEBUG_SIZE_REQUEST},
251 };
252 #endif /* G_ENABLE_DEBUG */
253
254 /**
255  * gtk_get_major_version:
256  *
257  * Returns the major version number of the GTK+ library.
258  * (e.g. in GTK+ version 3.1.5 this is 3.)
259  *
260  * This function is in the library, so it represents the GTK+ library
261  * your code is running against. Contrast with the #GTK_MAJOR_VERSION
262  * macro, which represents the major version of the GTK+ headers you
263  * have included when compiling your code.
264  *
265  * Returns: the major version number of the GTK+ library
266  *
267  * Since: 3.0
268  */
269 guint
270 gtk_get_major_version (void)
271 {
272   return GTK_MAJOR_VERSION;
273 }
274
275 /**
276  * gtk_get_minor_version:
277  *
278  * Returns the minor version number of the GTK+ library.
279  * (e.g. in GTK+ version 3.1.5 this is 1.)
280  *
281  * This function is in the library, so it represents the GTK+ library
282  * your code is are running against. Contrast with the
283  * #GTK_MINOR_VERSION macro, which represents the minor version of the
284  * GTK+ headers you have included when compiling your code.
285  *
286  * Returns: the minor version number of the GTK+ library
287  *
288  * Since: 3.0
289  */
290 guint
291 gtk_get_minor_version (void)
292 {
293   return GTK_MINOR_VERSION;
294 }
295
296 /**
297  * gtk_get_micro_version:
298  *
299  * Returns the micro version number of the GTK+ library.
300  * (e.g. in GTK+ version 3.1.5 this is 5.)
301  *
302  * This function is in the library, so it represents the GTK+ library
303  * your code is are running against. Contrast with the
304  * #GTK_MICRO_VERSION macro, which represents the micro version of the
305  * GTK+ headers you have included when compiling your code.
306  *
307  * Returns: the micro version number of the GTK+ library
308  *
309  * Since: 3.0
310  */
311 guint
312 gtk_get_micro_version (void)
313 {
314   return GTK_MICRO_VERSION;
315 }
316
317 /**
318  * gtk_get_binary_age:
319  *
320  * Returns the binary age as passed to <application>libtool</application>
321  * when building the GTK+ library the process is running against.
322  * If <application>libtool</application> means nothing to you, don't
323  * worry about it.
324  *
325  * Returns: the binary age of the GTK+ library
326  *
327  * Since: 3.0
328  */
329 guint
330 gtk_get_binary_age (void)
331 {
332   return GTK_BINARY_AGE;
333 }
334
335 /**
336  * gtk_get_interface_age:
337  *
338  * Returns the interface age as passed to <application>libtool</application>
339  * when building the GTK+ library the process is running against.
340  * If <application>libtool</application> means nothing to you, don't
341  * worry about it.
342  *
343  * Returns: the interface age of the GTK+ library
344  *
345  * Since: 3.0
346  */
347 guint
348 gtk_get_interface_age (void)
349 {
350   return GTK_INTERFACE_AGE;
351 }
352
353 /**
354  * gtk_check_version:
355  * @required_major: the required major version
356  * @required_minor: the required minor version
357  * @required_micro: the required micro version
358  *
359  * Checks that the GTK+ library in use is compatible with the
360  * given version. Generally you would pass in the constants
361  * #GTK_MAJOR_VERSION, #GTK_MINOR_VERSION, #GTK_MICRO_VERSION
362  * as the three arguments to this function; that produces
363  * a check that the library in use is compatible with
364  * the version of GTK+ the application or module was compiled
365  * against.
366  *
367  * Compatibility is defined by two things: first the version
368  * of the running library is newer than the version
369  * @required_major.required_minor.@required_micro. Second
370  * the running library must be binary compatible with the
371  * version @required_major.required_minor.@required_micro
372  * (same major version.)
373  *
374  * This function is primarily for GTK+ modules; the module
375  * can call this function to check that it wasn't loaded
376  * into an incompatible version of GTK+. However, such a
377  * check isn't completely reliable, since the module may be
378  * linked against an old version of GTK+ and calling the
379  * old version of gtk_check_version(), but still get loaded
380  * into an application using a newer version of GTK+.
381  *
382  * Return value: %NULL if the GTK+ library is compatible with the
383  *   given version, or a string describing the version mismatch.
384  *   The returned string is owned by GTK+ and should not be modified
385  *   or freed.
386  */
387 const gchar*
388 gtk_check_version (guint required_major,
389                    guint required_minor,
390                    guint required_micro)
391 {
392   gint gtk_effective_micro = 100 * GTK_MINOR_VERSION + GTK_MICRO_VERSION;
393   gint required_effective_micro = 100 * required_minor + required_micro;
394
395   if (required_major > GTK_MAJOR_VERSION)
396     return "GTK+ version too old (major mismatch)";
397   if (required_major < GTK_MAJOR_VERSION)
398     return "GTK+ version too new (major mismatch)";
399   if (required_effective_micro < gtk_effective_micro - GTK_BINARY_AGE)
400     return "GTK+ version too new (micro mismatch)";
401   if (required_effective_micro > gtk_effective_micro)
402     return "GTK+ version too old (micro mismatch)";
403   return NULL;
404 }
405
406 /* This checks to see if the process is running suid or sgid
407  * at the current time. If so, we don't allow GTK+ to be initialized.
408  * This is meant to be a mild check - we only error out if we
409  * can prove the programmer is doing something wrong, not if
410  * they could be doing something wrong. For this reason, we
411  * don't use issetugid() on BSD or prctl (PR_GET_DUMPABLE).
412  */
413 static gboolean
414 check_setugid (void)
415 {
416 /* this isn't at all relevant on MS Windows and doesn't compile ... --hb */
417 #ifndef G_OS_WIN32
418   uid_t ruid, euid, suid; /* Real, effective and saved user ID's */
419   gid_t rgid, egid, sgid; /* Real, effective and saved group ID's */
420   
421 #ifdef HAVE_GETRESUID
422   /* These aren't in the header files, so we prototype them here.
423    */
424   int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid);
425   int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid);
426
427   if (getresuid (&ruid, &euid, &suid) != 0 ||
428       getresgid (&rgid, &egid, &sgid) != 0)
429 #endif /* HAVE_GETRESUID */
430     {
431       suid = ruid = getuid ();
432       sgid = rgid = getgid ();
433       euid = geteuid ();
434       egid = getegid ();
435     }
436
437   if (ruid != euid || ruid != suid ||
438       rgid != egid || rgid != sgid)
439     {
440       g_warning ("This process is currently running setuid or setgid.\n"
441                  "This is not a supported use of GTK+. You must create a helper\n"
442                  "program instead. For further details, see:\n\n"
443                  "    http://www.gtk.org/setuid.html\n\n"
444                  "Refusing to initialize GTK+.");
445       exit (1);
446     }
447 #endif
448   return TRUE;
449 }
450
451 #ifdef G_OS_WIN32
452
453 const gchar *
454 _gtk_get_datadir (void)
455 {
456   static char *gtk_datadir = NULL;
457   if (gtk_datadir == NULL)
458     {
459       gchar *root = g_win32_get_package_installation_directory_of_module (gtk_dll);
460       gtk_datadir = g_build_filename (root, "share", NULL);
461       g_free (root);
462     }
463
464   return gtk_datadir;
465 }
466
467 const gchar *
468 _gtk_get_sysconfdir (void)
469 {
470   static char *gtk_sysconfdir = NULL;
471   if (gtk_sysconfdir == NULL)
472     {
473       gchar *root = g_win32_get_package_installation_directory_of_module (gtk_dll);
474       gtk_sysconfdir = g_build_filename (root, "etc", NULL);
475       g_free (root);
476     }
477
478   return gtk_sysconfdir;
479 }
480
481 const gchar *
482 _gtk_get_data_prefix (void)
483 {
484   static char *gtk_data_prefix = NULL;
485   if (gtk_data_prefix == NULL)
486     gtk_data_prefix = g_win32_get_package_installation_directory_of_module (gtk_dll);
487
488   return gtk_data_prefix;
489 }
490
491 #endif /* G_OS_WIN32 */
492
493 static gboolean do_setlocale = TRUE;
494
495 /**
496  * gtk_disable_setlocale:
497  * 
498  * Prevents gtk_init(), gtk_init_check(), gtk_init_with_args() and
499  * gtk_parse_args() from automatically
500  * calling <literal>setlocale (LC_ALL, "")</literal>. You would
501  * want to use this function if you wanted to set the locale for
502  * your program to something other than the user's locale, or if
503  * you wanted to set different values for different locale categories.
504  *
505  * Most programs should not need to call this function.
506  **/
507 void
508 gtk_disable_setlocale (void)
509 {
510   if (pre_initialized)
511     g_warning ("gtk_disable_setlocale() must be called before gtk_init()");
512     
513   do_setlocale = FALSE;
514 }
515
516 #ifdef G_PLATFORM_WIN32
517 #undef gtk_init_check
518 #endif
519
520 static GString *gtk_modules_string = NULL;
521 static gboolean g_fatal_warnings = FALSE;
522
523 #ifdef G_ENABLE_DEBUG
524 static gboolean
525 gtk_arg_debug_cb (const char *key, const char *value, gpointer user_data)
526 {
527   debug_flags |= g_parse_debug_string (value,
528                                        gtk_debug_keys,
529                                        G_N_ELEMENTS (gtk_debug_keys));
530
531   return TRUE;
532 }
533
534 static gboolean
535 gtk_arg_no_debug_cb (const char *key, const char *value, gpointer user_data)
536 {
537   debug_flags &= ~g_parse_debug_string (value,
538                                         gtk_debug_keys,
539                                         G_N_ELEMENTS (gtk_debug_keys));
540
541   return TRUE;
542 }
543 #endif /* G_ENABLE_DEBUG */
544
545 static gboolean
546 gtk_arg_module_cb (const char *key, const char *value, gpointer user_data)
547 {
548   if (value && *value)
549     {
550       if (gtk_modules_string)
551         g_string_append_c (gtk_modules_string, G_SEARCHPATH_SEPARATOR);
552       else
553         gtk_modules_string = g_string_new (NULL);
554       
555       g_string_append (gtk_modules_string, value);
556     }
557
558   return TRUE;
559 }
560
561 static const GOptionEntry gtk_args[] = {
562   { "gtk-module",       0, 0, G_OPTION_ARG_CALLBACK, gtk_arg_module_cb,   
563     /* Description of --gtk-module=MODULES in --help output */ N_("Load additional GTK+ modules"), 
564     /* Placeholder in --gtk-module=MODULES in --help output */ N_("MODULES") },
565   { "g-fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &g_fatal_warnings, 
566     /* Description of --g-fatal-warnings in --help output */   N_("Make all warnings fatal"), NULL },
567 #ifdef G_ENABLE_DEBUG
568   { "gtk-debug",        0, 0, G_OPTION_ARG_CALLBACK, gtk_arg_debug_cb,    
569     /* Description of --gtk-debug=FLAGS in --help output */    N_("GTK+ debugging flags to set"), 
570     /* Placeholder in --gtk-debug=FLAGS in --help output */    N_("FLAGS") },
571   { "gtk-no-debug",     0, 0, G_OPTION_ARG_CALLBACK, gtk_arg_no_debug_cb, 
572     /* Description of --gtk-no-debug=FLAGS in --help output */ N_("GTK+ debugging flags to unset"), 
573     /* Placeholder in --gtk-no-debug=FLAGS in --help output */ N_("FLAGS") },
574 #endif 
575   { NULL }
576 };
577
578 #ifdef G_OS_WIN32
579
580 static char *iso639_to_check = NULL;
581 static char *iso3166_to_check = NULL;
582 static char *script_to_check = NULL;
583 static gboolean setlocale_called = FALSE;
584
585 static BOOL CALLBACK
586 enum_locale_proc (LPTSTR locale)
587 {
588   LCID lcid;
589   char iso639[10];
590   char iso3166[10];
591   char *endptr;
592
593
594   lcid = strtoul (locale, &endptr, 16);
595   if (*endptr == '\0' &&
596       GetLocaleInfo (lcid, LOCALE_SISO639LANGNAME, iso639, sizeof (iso639)) &&
597       GetLocaleInfo (lcid, LOCALE_SISO3166CTRYNAME, iso3166, sizeof (iso3166)))
598     {
599       if (strcmp (iso639, iso639_to_check) == 0 &&
600           ((iso3166_to_check != NULL &&
601             strcmp (iso3166, iso3166_to_check) == 0) ||
602            (iso3166_to_check == NULL &&
603             SUBLANGID (LANGIDFROMLCID (lcid)) == SUBLANG_DEFAULT)))
604         {
605           char language[100], country[100];
606           char locale[300];
607
608           if (script_to_check != NULL)
609             {
610               /* If lcid is the "other" script for this language,
611                * return TRUE, i.e. continue looking.
612                */
613               if (strcmp (script_to_check, "Latn") == 0)
614                 {
615                   switch (LANGIDFROMLCID (lcid))
616                     {
617                     case MAKELANGID (LANG_AZERI, SUBLANG_AZERI_CYRILLIC):
618                       return TRUE;
619                     case MAKELANGID (LANG_UZBEK, SUBLANG_UZBEK_CYRILLIC):
620                       return TRUE;
621                     case MAKELANGID (LANG_SERBIAN, SUBLANG_SERBIAN_CYRILLIC):
622                       return TRUE;
623                     case MAKELANGID (LANG_SERBIAN, 0x07):
624                       /* Serbian in Bosnia and Herzegovina, Cyrillic */
625                       return TRUE;
626                     }
627                 }
628               else if (strcmp (script_to_check, "Cyrl") == 0)
629                 {
630                   switch (LANGIDFROMLCID (lcid))
631                     {
632                     case MAKELANGID (LANG_AZERI, SUBLANG_AZERI_LATIN):
633                       return TRUE;
634                     case MAKELANGID (LANG_UZBEK, SUBLANG_UZBEK_LATIN):
635                       return TRUE;
636                     case MAKELANGID (LANG_SERBIAN, SUBLANG_SERBIAN_LATIN):
637                       return TRUE;
638                     case MAKELANGID (LANG_SERBIAN, 0x06):
639                       /* Serbian in Bosnia and Herzegovina, Latin */
640                       return TRUE;
641                     }
642                 }
643             }
644
645           SetThreadLocale (lcid);
646
647           if (GetLocaleInfo (lcid, LOCALE_SENGLANGUAGE, language, sizeof (language)) &&
648               GetLocaleInfo (lcid, LOCALE_SENGCOUNTRY, country, sizeof (country)))
649             {
650               strcpy (locale, language);
651               strcat (locale, "_");
652               strcat (locale, country);
653
654               if (setlocale (LC_ALL, locale) != NULL)
655                 setlocale_called = TRUE;
656             }
657
658           return FALSE;
659         }
660     }
661
662   return TRUE;
663 }
664   
665 #endif
666
667 static void
668 setlocale_initialization (void)
669 {
670   static gboolean initialized = FALSE;
671
672   if (initialized)
673     return;
674   initialized = TRUE;
675
676   if (do_setlocale)
677     {
678 #ifdef G_OS_WIN32
679       /* If some of the POSIXish environment variables are set, set
680        * the Win32 thread locale correspondingly.
681        */ 
682       char *p = getenv ("LC_ALL");
683       if (p == NULL)
684         p = getenv ("LANG");
685
686       if (p != NULL)
687         {
688           p = g_strdup (p);
689           if (strcmp (p, "C") == 0)
690             SetThreadLocale (LOCALE_SYSTEM_DEFAULT);
691           else
692             {
693               /* Check if one of the supported locales match the
694                * environment variable. If so, use that locale.
695                */
696               iso639_to_check = p;
697               iso3166_to_check = strchr (iso639_to_check, '_');
698               if (iso3166_to_check != NULL)
699                 {
700                   *iso3166_to_check++ = '\0';
701
702                   script_to_check = strchr (iso3166_to_check, '@');
703                   if (script_to_check != NULL)
704                     *script_to_check++ = '\0';
705
706                   /* Handle special cases. */
707
708                   /* The standard code for Serbia and Montenegro was
709                    * "CS", but MSFT uses for some reason "SP". By now
710                    * (October 2006), SP has split into two, "RS" and
711                    * "ME", but don't bother trying to handle those
712                    * yet. Do handle the even older "YU", though.
713                    */
714                   if (strcmp (iso3166_to_check, "CS") == 0 ||
715                       strcmp (iso3166_to_check, "YU") == 0)
716                     iso3166_to_check = "SP";
717                 }
718               else
719                 {
720                   script_to_check = strchr (iso639_to_check, '@');
721                   if (script_to_check != NULL)
722                     *script_to_check++ = '\0';
723                   /* LANG_SERBIAN == LANG_CROATIAN, recognize just "sr" */
724                   if (strcmp (iso639_to_check, "sr") == 0)
725                     iso3166_to_check = "SP";
726                 }
727
728               EnumSystemLocales (enum_locale_proc, LCID_SUPPORTED);
729             }
730           g_free (p);
731         }
732       if (!setlocale_called)
733         setlocale (LC_ALL, "");
734 #else
735       if (!setlocale (LC_ALL, ""))
736         g_warning ("Locale not supported by C library.\n\tUsing the fallback 'C' locale.");
737 #endif
738     }
739 }
740
741 /* Return TRUE if module_to_check causes version conflicts.
742  * If module_to_check is NULL, check the main module.
743  */
744 gboolean
745 _gtk_module_has_mixed_deps (GModule *module_to_check)
746 {
747   GModule *module;
748   gpointer func;
749   gboolean result;
750
751   if (!module_to_check)
752     module = g_module_open (NULL, 0);
753   else
754     module = module_to_check;
755
756   if (g_module_symbol (module, "gtk_progress_get_type", &func))
757     result = TRUE;
758   else
759     result = FALSE;
760
761   if (!module_to_check)
762     g_module_close (module);
763
764   return result;
765 }
766
767 static void
768 do_pre_parse_initialization (int    *argc,
769                              char ***argv)
770 {
771   const gchar *env_string;
772   
773   if (pre_initialized)
774     return;
775
776   pre_initialized = TRUE;
777
778   if (_gtk_module_has_mixed_deps (NULL))
779     g_error ("GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported");
780
781   gdk_pre_parse_libgtk_only ();
782   gdk_event_handler_set ((GdkEventFunc)gtk_main_do_event, NULL, NULL);
783
784 #ifdef G_ENABLE_DEBUG
785   env_string = g_getenv ("GTK_DEBUG");
786   if (env_string != NULL)
787     {
788       debug_flags = g_parse_debug_string (env_string,
789                                           gtk_debug_keys,
790                                           G_N_ELEMENTS (gtk_debug_keys));
791       env_string = NULL;
792     }
793 #endif  /* G_ENABLE_DEBUG */
794
795   env_string = g_getenv ("GTK_MODULES");
796   if (env_string)
797     gtk_modules_string = g_string_new (env_string);
798 }
799
800 static void
801 gettext_initialization (void)
802 {
803   setlocale_initialization ();
804
805 #ifdef ENABLE_NLS
806   bindtextdomain (GETTEXT_PACKAGE, GTK_LOCALEDIR);
807   bindtextdomain (GETTEXT_PACKAGE "-properties", GTK_LOCALEDIR);
808 #    ifdef HAVE_BIND_TEXTDOMAIN_CODESET
809   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
810   bind_textdomain_codeset (GETTEXT_PACKAGE "-properties", "UTF-8");
811 #    endif
812 #endif  
813 }
814
815 static void
816 do_post_parse_initialization (int    *argc,
817                               char ***argv)
818 {
819   if (gtk_initialized)
820     return;
821
822   gettext_initialization ();
823
824 #ifdef SIGPIPE
825   signal (SIGPIPE, SIG_IGN);
826 #endif
827
828   if (g_fatal_warnings)
829     {
830       GLogLevelFlags fatal_mask;
831
832       fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
833       fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
834       g_log_set_always_fatal (fatal_mask);
835     }
836
837   if (debug_flags & GTK_DEBUG_UPDATES)
838     gdk_window_set_debug_updates (TRUE);
839
840   {
841   /* Translate to default:RTL if you want your widgets
842    * to be RTL, otherwise translate to default:LTR.
843    * Do *not* translate it to "predefinito:LTR", if it
844    * it isn't default:LTR or default:RTL it will not work 
845    */
846     char *e = _("default:LTR");
847     if (strcmp (e, "default:RTL")==0) 
848       gtk_widget_set_default_direction (GTK_TEXT_DIR_RTL);
849     else if (strcmp (e, "default:LTR"))
850       g_warning ("Whoever translated default:LTR did so wrongly.\n");
851   }
852
853   /* do what the call to gtk_type_init() used to do */
854   g_type_init ();
855
856   _gtk_accel_map_init ();
857
858   /* Set the 'initialized' flag.
859    */
860   gtk_initialized = TRUE;
861
862   /* load gtk modules */
863   if (gtk_modules_string)
864     {
865       _gtk_modules_init (argc, argv, gtk_modules_string->str);
866       g_string_free (gtk_modules_string, TRUE);
867     }
868   else
869     {
870       _gtk_modules_init (argc, argv, NULL);
871     }
872 }
873
874
875 typedef struct
876 {
877   gboolean open_default_display;
878 } OptionGroupInfo;
879
880 static gboolean
881 pre_parse_hook (GOptionContext *context,
882                 GOptionGroup   *group,
883                 gpointer        data,
884                 GError        **error)
885 {
886   do_pre_parse_initialization (NULL, NULL);
887   
888   return TRUE;
889 }
890
891 static gboolean
892 post_parse_hook (GOptionContext *context,
893                  GOptionGroup   *group,
894                  gpointer       data,
895                  GError        **error)
896 {
897   OptionGroupInfo *info = data;
898
899   
900   do_post_parse_initialization (NULL, NULL);
901   
902   if (info->open_default_display)
903     {
904       if (gdk_display_open_default_libgtk_only () == NULL)
905         {
906           const char *display_name = gdk_get_display_arg_name ();
907           g_set_error (error,
908                        G_OPTION_ERROR,
909                        G_OPTION_ERROR_FAILED,
910                        _("Cannot open display: %s"),
911                        display_name ? display_name : "" );
912
913           return FALSE;
914         }
915     }
916
917   return TRUE;
918 }
919
920
921 /**
922  * gtk_get_debug_flags:
923  *
924  * Returns the GTK+ debug flags.
925  *
926  * This function is intended for GTK+ modules that want
927  * to adjust their debug output based on GTK+ debug flags.
928  *
929  * Returns: the GTK+ debug flags.
930  */
931 guint
932 gtk_get_debug_flags (void)
933 {
934   return debug_flags;
935 }
936
937 /**
938  * gtk_set_debug_flags:
939  *
940  * Sets the GTK+ debug flags.
941  */
942 void
943 gtk_set_debug_flags (guint flags)
944 {
945   debug_flags = flags;
946 }
947
948 /**
949  * gtk_get_option_group: (skip)
950  * @open_default_display: whether to open the default display
951  *     when parsing the commandline arguments
952  *
953  * Returns a #GOptionGroup for the commandline arguments recognized
954  * by GTK+ and GDK.
955  *
956  * You should add this group to your #GOptionContext
957  * with g_option_context_add_group(), if you are using
958  * g_option_context_parse() to parse your commandline arguments.
959  *
960  * Returns: a #GOptionGroup for the commandline arguments recognized
961  *     by GTK+
962  *
963  * Since: 2.6
964  */
965 GOptionGroup *
966 gtk_get_option_group (gboolean open_default_display)
967 {
968   GOptionGroup *group;
969   OptionGroupInfo *info;
970
971   gettext_initialization ();
972
973   info = g_new0 (OptionGroupInfo, 1);
974   info->open_default_display = open_default_display;
975   
976   group = g_option_group_new ("gtk", _("GTK+ Options"), _("Show GTK+ Options"), info, g_free);
977   g_option_group_set_parse_hooks (group, pre_parse_hook, post_parse_hook);
978
979   gdk_add_option_entries_libgtk_only (group);
980   g_option_group_add_entries (group, gtk_args);
981   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
982   
983   return group;
984 }
985
986 /**
987  * gtk_init_with_args:
988  * @argc: a pointer to the number of command line arguments
989  * @argv: (inout) (array length=argc): a pointer to the array of
990  * command line arguments
991  * @parameter_string: a string which is displayed in
992  *    the first line of <option>--help</option> output, after
993  *    <literal><replaceable>programname</replaceable> [OPTION...]</literal>
994  * @entries: (array zero-terminated=1): a %NULL-terminated array
995  *    of #GOptionEntrys describing the options of your program
996  * @translation_domain: a translation domain to use for translating
997  *    the <option>--help</option> output for the options in @entries
998  *    and the @parameter_string with gettext(), or %NULL
999  * @error: a return location for errors
1000  *
1001  * This function does the same work as gtk_init_check().
1002  * Additionally, it allows you to add your own commandline options,
1003  * and it automatically generates nicely formatted
1004  * <option>--help</option> output. Note that your program will
1005  * be terminated after writing out the help output.
1006  *
1007  * Returns: %TRUE if the windowing system has been successfully
1008  *     initialized, %FALSE otherwise
1009  *
1010  * Since: 2.6
1011  */
1012 gboolean
1013 gtk_init_with_args (gint                 *argc,
1014                     gchar              ***argv,
1015                     const gchar          *parameter_string,
1016                     const GOptionEntry   *entries,
1017                     const gchar          *translation_domain,
1018                     GError              **error)
1019 {
1020   GOptionContext *context;
1021   GOptionGroup *gtk_group;
1022   gboolean retval;
1023
1024   if (gtk_initialized)
1025     return gdk_display_open_default_libgtk_only () != NULL;
1026
1027   gettext_initialization ();
1028
1029   if (!check_setugid ())
1030     return FALSE;
1031
1032   gtk_group = gtk_get_option_group (TRUE);
1033
1034   context = g_option_context_new (parameter_string);
1035   g_option_context_add_group (context, gtk_group);
1036   g_option_context_set_translation_domain (context, translation_domain);
1037
1038   if (entries)
1039     g_option_context_add_main_entries (context, entries, translation_domain);
1040   retval = g_option_context_parse (context, argc, argv, error);
1041
1042   g_option_context_free (context);
1043
1044   return retval;
1045 }
1046
1047
1048 /**
1049  * gtk_parse_args:
1050  * @argc: (inout): a pointer to the number of command line arguments
1051  * @argv: (array length=argc) (inout): a pointer to the array of
1052  *     command line arguments
1053  *
1054  * Parses command line arguments, and initializes global
1055  * attributes of GTK+, but does not actually open a connection
1056  * to a display. (See gdk_display_open(), gdk_get_display_arg_name())
1057  *
1058  * Any arguments used by GTK+ or GDK are removed from the array and
1059  * @argc and @argv are updated accordingly.
1060  *
1061  * There is no need to call this function explicitely if you are using
1062  * gtk_init(), or gtk_init_check().
1063  *
1064  * Return value: %TRUE if initialization succeeded, otherwise %FALSE
1065  */
1066 gboolean
1067 gtk_parse_args (int    *argc,
1068                 char ***argv)
1069 {
1070   GOptionContext *option_context;
1071   GOptionGroup *gtk_group;
1072   GError *error = NULL;
1073   
1074   if (gtk_initialized)
1075     return TRUE;
1076
1077   gettext_initialization ();
1078
1079   if (!check_setugid ())
1080     return FALSE;
1081
1082   option_context = g_option_context_new (NULL);
1083   g_option_context_set_ignore_unknown_options (option_context, TRUE);
1084   g_option_context_set_help_enabled (option_context, FALSE);
1085   gtk_group = gtk_get_option_group (FALSE);
1086   g_option_context_set_main_group (option_context, gtk_group);
1087   if (!g_option_context_parse (option_context, argc, argv, &error))
1088     {
1089       g_warning ("%s", error->message);
1090       g_error_free (error);
1091     }
1092
1093   g_option_context_free (option_context);
1094
1095   return TRUE;
1096 }
1097
1098 #ifdef G_PLATFORM_WIN32
1099 #undef gtk_init_check
1100 #endif
1101
1102 /**
1103  * gtk_init_check:
1104  * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
1105  *     your main() function. Changed if any arguments were handled
1106  * @argv: (array length=argc) (inout) (allow-none): Address of the
1107  *     <parameter>argv</parameter> parameter of main()
1108  *   Any parameters understood by gtk_init() are stripped before return
1109  *
1110  * This function does the same work as gtk_init() with only a single
1111  * change: It does not terminate the program if the windowing system
1112  * can't be initialized. Instead it returns %FALSE on failure.
1113  *
1114  * This way the application can fall back to some other means of
1115  * communication with the user - for example a curses or command line
1116  * interface.
1117  *
1118  * Return value: %TRUE if the windowing system has been successfully
1119  *     initialized, %FALSE otherwise
1120  */
1121 gboolean
1122 gtk_init_check (int    *argc,
1123                 char ***argv)
1124 {
1125   if (!gtk_parse_args (argc, argv))
1126     return FALSE;
1127
1128   return gdk_display_open_default_libgtk_only () != NULL;
1129 }
1130
1131 #ifdef G_PLATFORM_WIN32
1132 #undef gtk_init
1133 #endif
1134
1135 /**
1136  * gtk_init:
1137  * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
1138  *     your main() function. Changed if any arguments were handled
1139  * @argv: (array length=argc) (inout) (allow-none): Address of the
1140  *     <parameter>argv</parameter> parameter of main(). Any options
1141  *     understood by GTK+ are stripped before return.
1142  *
1143  * Call this function before using any other GTK+ functions in your GUI
1144  * applications.  It will initialize everything needed to operate the
1145  * toolkit and parses some standard command line options.
1146  *
1147  * @argc and @argv are adjusted accordingly so your own code will
1148  * never see those standard arguments.
1149  *
1150  * Note that there are some alternative ways to initialize GTK+:
1151  * if you are calling gtk_parse_args(), gtk_init_check(),
1152  * gtk_init_with_args() or g_option_context_parse() with
1153  * the option group returned by gtk_get_option_group(),
1154  * you <emphasis>don't</emphasis> have to call gtk_init().
1155  *
1156  * <note><para>
1157  * This function will terminate your program if it was unable to
1158  * initialize the windowing system for some reason. If you want
1159  * your program to fall back to a textual interface you want to
1160  * call gtk_init_check() instead.
1161  * </para></note>
1162  *
1163  * <note><para>
1164  * Since 2.18, GTK+ calls <literal>signal (SIGPIPE, SIG_IGN)</literal>
1165  * during initialization, to ignore SIGPIPE signals, since these are
1166  * almost never wanted in graphical applications. If you do need to
1167  * handle SIGPIPE for some reason, reset the handler after gtk_init(),
1168  * but notice that other libraries (e.g. libdbus or gvfs) might do
1169  * similar things.
1170  * </para></note>
1171  */
1172 void
1173 gtk_init (int *argc, char ***argv)
1174 {
1175   if (!gtk_init_check (argc, argv))
1176     {
1177       const char *display_name_arg = gdk_get_display_arg_name ();
1178       if (display_name_arg == NULL)
1179         display_name_arg = getenv("DISPLAY");
1180       g_warning ("cannot open display: %s", display_name_arg ? display_name_arg : "");
1181       exit (1);
1182     }
1183 }
1184
1185 #ifdef G_OS_WIN32
1186
1187 /* This is relevant when building with gcc for Windows (MinGW),
1188  * where we want to be struct packing compatible with MSVC,
1189  * i.e. use the -mms-bitfields switch.
1190  * For Cygwin there should be no need to be compatible with MSVC,
1191  * so no need to use G_PLATFORM_WIN32.
1192  */
1193
1194 static void
1195 check_sizeof_GtkWindow (size_t sizeof_GtkWindow)
1196 {
1197   if (sizeof_GtkWindow != sizeof (GtkWindow))
1198     g_error ("Incompatible build!\n"
1199              "The code using GTK+ thinks GtkWindow is of different\n"
1200              "size than it actually is in this build of GTK+.\n"
1201              "On Windows, this probably means that you have compiled\n"
1202              "your code with gcc without the -mms-bitfields switch,\n"
1203              "or that you are using an unsupported compiler.");
1204 }
1205
1206 /* In GTK+ 2.0 the GtkWindow struct actually is the same size in
1207  * gcc-compiled code on Win32 whether compiled with -fnative-struct or
1208  * not. Unfortunately this wan't noticed until after GTK+ 2.0.1. So,
1209  * from GTK+ 2.0.2 on, check some other struct, too, where the use of
1210  * -fnative-struct still matters. GtkBox is one such.
1211  */
1212 static void
1213 check_sizeof_GtkBox (size_t sizeof_GtkBox)
1214 {
1215   if (sizeof_GtkBox != sizeof (GtkBox))
1216     g_error ("Incompatible build!\n"
1217              "The code using GTK+ thinks GtkBox is of different\n"
1218              "size than it actually is in this build of GTK+.\n"
1219              "On Windows, this probably means that you have compiled\n"
1220              "your code with gcc without the -mms-bitfields switch,\n"
1221              "or that you are using an unsupported compiler.");
1222 }
1223
1224 /* These two functions might get more checks added later, thus pass
1225  * in the number of extra args.
1226  */
1227 void
1228 gtk_init_abi_check (int *argc, char ***argv, int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
1229 {
1230   check_sizeof_GtkWindow (sizeof_GtkWindow);
1231   if (num_checks >= 2)
1232     check_sizeof_GtkBox (sizeof_GtkBox);
1233   gtk_init (argc, argv);
1234 }
1235
1236 gboolean
1237 gtk_init_check_abi_check (int *argc, char ***argv, int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
1238 {
1239   check_sizeof_GtkWindow (sizeof_GtkWindow);
1240   if (num_checks >= 2)
1241     check_sizeof_GtkBox (sizeof_GtkBox);
1242   return gtk_init_check (argc, argv);
1243 }
1244
1245 #endif
1246
1247 /*
1248  * _gtk_get_lc_ctype:
1249  *
1250  * Return the Unix-style locale string for the language currently in
1251  * effect. On Unix systems, this is the return value from
1252  * <literal>setlocale(LC_CTYPE, NULL)</literal>, and the user can
1253  * affect this through the environment variables LC_ALL, LC_CTYPE or
1254  * LANG (checked in that order). The locale strings typically is in
1255  * the form lang_COUNTRY, where lang is an ISO-639 language code, and
1256  * COUNTRY is an ISO-3166 country code. For instance, sv_FI for
1257  * Swedish as written in Finland or pt_BR for Portuguese as written in
1258  * Brazil.
1259  *
1260  * On Windows, the C library doesn't use any such environment
1261  * variables, and setting them won't affect the behaviour of functions
1262  * like ctime(). The user sets the locale through the Regional Options
1263  * in the Control Panel. The C library (in the setlocale() function)
1264  * does not use country and language codes, but country and language
1265  * names spelled out in English.
1266  * However, this function does check the above environment
1267  * variables, and does return a Unix-style locale string based on
1268  * either said environment variables or the thread's current locale.
1269  *
1270  * Return value: a dynamically allocated string, free with g_free().
1271  */
1272
1273 gchar *
1274 _gtk_get_lc_ctype (void)
1275 {
1276 #ifdef G_OS_WIN32
1277   /* Somebody might try to set the locale for this process using the
1278    * LANG or LC_ environment variables. The Microsoft C library
1279    * doesn't know anything about them. You set the locale in the
1280    * Control Panel. Setting these env vars won't have any affect on
1281    * locale-dependent C library functions like ctime(). But just for
1282    * kicks, do obey LC_ALL, LC_CTYPE and LANG in GTK. (This also makes
1283    * it easier to test GTK and Pango in various default languages, you
1284    * don't have to clickety-click in the Control Panel, you can simply
1285    * start the program with LC_ALL=something on the command line.)
1286    */
1287   gchar *p;
1288
1289   p = getenv ("LC_ALL");
1290   if (p != NULL)
1291     return g_strdup (p);
1292
1293   p = getenv ("LC_CTYPE");
1294   if (p != NULL)
1295     return g_strdup (p);
1296
1297   p = getenv ("LANG");
1298   if (p != NULL)
1299     return g_strdup (p);
1300
1301   return g_win32_getlocale ();
1302 #else
1303   return g_strdup (setlocale (LC_CTYPE, NULL));
1304 #endif
1305 }
1306
1307 /**
1308  * gtk_get_default_language:
1309  *
1310  * Returns the #PangoLanguage for the default language currently in
1311  * effect. (Note that this can change over the life of an
1312  * application.) The default language is derived from the current
1313  * locale. It determines, for example, whether GTK+ uses the
1314  * right-to-left or left-to-right text direction.
1315  *
1316  * This function is equivalent to pango_language_get_default().
1317  * See that function for details.
1318  *
1319  * Return value: the default language as a #PangoLanguage,
1320  *     must not be freed
1321  */
1322 PangoLanguage *
1323 gtk_get_default_language (void)
1324 {
1325   return pango_language_get_default ();
1326 }
1327
1328 /**
1329  * gtk_main:
1330  *
1331  * Runs the main loop until gtk_main_quit() is called.
1332  *
1333  * You can nest calls to gtk_main(). In that case gtk_main_quit()
1334  * will make the innermost invocation of the main loop return.
1335  */
1336 void
1337 gtk_main (void)
1338 {
1339   GMainLoop *loop;
1340
1341   gtk_main_loop_level++;
1342
1343   loop = g_main_loop_new (NULL, TRUE);
1344   main_loops = g_slist_prepend (main_loops, loop);
1345
1346   if (g_main_loop_is_running (main_loops->data))
1347     {
1348       GDK_THREADS_LEAVE ();
1349       g_main_loop_run (loop);
1350       GDK_THREADS_ENTER ();
1351       gdk_flush ();
1352     }
1353
1354   main_loops = g_slist_remove (main_loops, loop);
1355
1356   g_main_loop_unref (loop);
1357
1358   gtk_main_loop_level--;
1359
1360   if (gtk_main_loop_level == 0)
1361     {
1362       /* Try storing all clipboard data we have */
1363       _gtk_clipboard_store_all ();
1364
1365       /* Synchronize the recent manager singleton */
1366       _gtk_recent_manager_sync ();
1367     }
1368 }
1369
1370 /**
1371  * gtk_main_level:
1372  *
1373  * Asks for the current nesting level of the main loop.
1374  *
1375  * Returns: the nesting level of the current invocation
1376  *     of the main loop
1377  */
1378 guint
1379 gtk_main_level (void)
1380 {
1381   return gtk_main_loop_level;
1382 }
1383
1384 /**
1385  * gtk_main_quit:
1386  *
1387  * Makes the innermost invocation of the main loop return
1388  * when it regains control.
1389  */
1390 void
1391 gtk_main_quit (void)
1392 {
1393   g_return_if_fail (main_loops != NULL);
1394
1395   g_main_loop_quit (main_loops->data);
1396 }
1397
1398 /**
1399  * gtk_events_pending:
1400  *
1401  * Checks if any events are pending.
1402  *
1403  * This can be used to update the UI and invoke timeouts etc.
1404  * while doing some time intensive computation.
1405  *
1406  * <example>
1407  * <title>Updating the UI during a long computation</title>
1408  * <programlisting>
1409  *  /&ast; computation going on... &ast;/
1410  *
1411  *  while (gtk_events_pending ())
1412  *    gtk_main_iteration ();
1413  *
1414  *  /&ast; ...computation continued &ast;/
1415  * </programlisting>
1416  * </example>
1417  *
1418  * Returns: %TRUE if any events are pending, %FALSE otherwise
1419  */
1420 gboolean
1421 gtk_events_pending (void)
1422 {
1423   gboolean result;
1424
1425   GDK_THREADS_LEAVE ();
1426   result = g_main_context_pending (NULL);
1427   GDK_THREADS_ENTER ();
1428
1429   return result;
1430 }
1431
1432 /**
1433  * gtk_main_iteration:
1434  *
1435  * Runs a single iteration of the mainloop.
1436  *
1437  * If no events are waiting to be processed GTK+ will block
1438  * until the next event is noticed. If you don't want to block
1439  * look at gtk_main_iteration_do() or check if any events are
1440  * pending with gtk_events_pending() first.
1441  *
1442  * Returns: %TRUE if gtk_main_quit() has been called for the
1443  *     innermost mainloop
1444  */
1445 gboolean
1446 gtk_main_iteration (void)
1447 {
1448   GDK_THREADS_LEAVE ();
1449   g_main_context_iteration (NULL, TRUE);
1450   GDK_THREADS_ENTER ();
1451
1452   if (main_loops)
1453     return !g_main_loop_is_running (main_loops->data);
1454   else
1455     return TRUE;
1456 }
1457
1458 /**
1459  * gtk_main_iteration_do:
1460  * @blocking: %TRUE if you want GTK+ to block if no events are pending
1461  *
1462  * Runs a single iteration of the mainloop.
1463  * If no events are available either return or block depending on
1464  * the value of @blocking.
1465  *
1466  * Returns: %TRUE if gtk_main_quit() has been called for the
1467  *     innermost mainloop
1468  */
1469 gboolean
1470 gtk_main_iteration_do (gboolean blocking)
1471 {
1472   GDK_THREADS_LEAVE ();
1473   g_main_context_iteration (NULL, blocking);
1474   GDK_THREADS_ENTER ();
1475
1476   if (main_loops)
1477     return !g_main_loop_is_running (main_loops->data);
1478   else
1479     return TRUE;
1480 }
1481
1482 /* private libgtk to libgdk interfaces */
1483 gboolean gdk_device_grab_info_libgtk_only (GdkDisplay  *display,
1484                                            GdkDevice   *device,
1485                                            GdkWindow  **grab_window,
1486                                            gboolean    *owner_events);
1487
1488 static void
1489 rewrite_events_translate (GdkWindow *old_window,
1490                           GdkWindow *new_window,
1491                           gdouble   *x,
1492                           gdouble   *y)
1493 {
1494   gint old_origin_x, old_origin_y;
1495   gint new_origin_x, new_origin_y;
1496
1497   gdk_window_get_origin (old_window, &old_origin_x, &old_origin_y);
1498   gdk_window_get_origin (new_window, &new_origin_x, &new_origin_y);
1499
1500   *x += old_origin_x - new_origin_x;
1501   *y += old_origin_y - new_origin_y;
1502 }
1503
1504 static GdkEvent *
1505 rewrite_event_for_window (GdkEvent  *event,
1506                           GdkWindow *new_window)
1507 {
1508   event = gdk_event_copy (event);
1509
1510   switch (event->type)
1511     {
1512     case GDK_SCROLL:
1513       rewrite_events_translate (event->any.window,
1514                                 new_window,
1515                                 &event->scroll.x, &event->scroll.y);
1516       break;
1517     case GDK_BUTTON_PRESS:
1518     case GDK_2BUTTON_PRESS:
1519     case GDK_3BUTTON_PRESS:
1520     case GDK_BUTTON_RELEASE:
1521       rewrite_events_translate (event->any.window,
1522                                 new_window,
1523                                 &event->button.x, &event->button.y);
1524       break;
1525     case GDK_MOTION_NOTIFY:
1526       rewrite_events_translate (event->any.window,
1527                                 new_window,
1528                                 &event->motion.x, &event->motion.y);
1529       break;
1530     case GDK_KEY_PRESS:
1531     case GDK_KEY_RELEASE:
1532     case GDK_PROXIMITY_IN:
1533     case GDK_PROXIMITY_OUT:
1534       break;
1535
1536     default:
1537       return event;
1538     }
1539
1540   g_object_unref (event->any.window);
1541   event->any.window = g_object_ref (new_window);
1542
1543   return event;
1544 }
1545
1546 /* If there is a pointer or keyboard grab in effect with owner_events = TRUE,
1547  * then what X11 does is deliver the event normally if it was going to this
1548  * client, otherwise, delivers it in terms of the grab window. This function
1549  * rewrites events to the effect that events going to the same window group
1550  * are delivered normally, otherwise, the event is delivered in terms of the
1551  * grab window.
1552  */
1553 static GdkEvent *
1554 rewrite_event_for_grabs (GdkEvent *event)
1555 {
1556   GdkWindow *grab_window;
1557   GtkWidget *event_widget, *grab_widget;
1558   gpointer grab_widget_ptr;
1559   gboolean owner_events;
1560   GdkDisplay *display;
1561   GdkDevice *device;
1562
1563   switch (event->type)
1564     {
1565     case GDK_SCROLL:
1566     case GDK_BUTTON_PRESS:
1567     case GDK_2BUTTON_PRESS:
1568     case GDK_3BUTTON_PRESS:
1569     case GDK_BUTTON_RELEASE:
1570     case GDK_MOTION_NOTIFY:
1571     case GDK_PROXIMITY_IN:
1572     case GDK_PROXIMITY_OUT:
1573     case GDK_KEY_PRESS:
1574     case GDK_KEY_RELEASE:
1575       display = gdk_window_get_display (event->any.window);
1576       device = gdk_event_get_device (event);
1577
1578       if (!gdk_device_grab_info_libgtk_only (display, device, &grab_window, &owner_events) ||
1579           !owner_events)
1580         return NULL;
1581       break;
1582     default:
1583       return NULL;
1584     }
1585
1586   event_widget = gtk_get_event_widget (event);
1587   gdk_window_get_user_data (grab_window, &grab_widget_ptr);
1588   grab_widget = grab_widget_ptr;
1589
1590   if (grab_widget &&
1591       gtk_main_get_window_group (grab_widget) != gtk_main_get_window_group (event_widget))
1592     return rewrite_event_for_window (event, grab_window);
1593   else
1594     return NULL;
1595 }
1596
1597 /**
1598  * gtk_main_do_event:
1599  * @event: An event to process (normally passed by GDK)
1600  *
1601  * Processes a single GDK event.
1602  *
1603  * This is public only to allow filtering of events between GDK and GTK+.
1604  * You will not usually need to call this function directly.
1605  *
1606  * While you should not call this function directly, you might want to
1607  * know how exactly events are handled. So here is what this function
1608  * does with the event:
1609  *
1610  * <orderedlist>
1611  * <listitem><para>
1612  *   Compress enter/leave notify events. If the event passed build an
1613  *   enter/leave pair together with the next event (peeked from GDK), both
1614  *   events are thrown away. This is to avoid a backlog of (de-)highlighting
1615  *   widgets crossed by the pointer.
1616  * </para></listitem>
1617  * <listitem><para>
1618  *   Find the widget which got the event. If the widget can't be determined
1619  *   the event is thrown away unless it belongs to a INCR transaction. In that
1620  *   case it is passed to gtk_selection_incr_event().
1621  * </para></listitem>
1622  * <listitem><para>
1623  *   Then the event is pushed onto a stack so you can query the currently
1624  *   handled event with gtk_get_current_event().
1625  * </para></listitem>
1626  * <listitem><para>
1627  *   The event is sent to a widget. If a grab is active all events for widgets
1628  *   that are not in the contained in the grab widget are sent to the latter
1629  *   with a few exceptions:
1630  *   <itemizedlist>
1631  *   <listitem><para>
1632  *     Deletion and destruction events are still sent to the event widget for
1633  *     obvious reasons.
1634  *   </para></listitem>
1635  *   <listitem><para>
1636  *     Events which directly relate to the visual representation of the event
1637  *     widget.
1638  *   </para></listitem>
1639  *   <listitem><para>
1640  *     Leave events are delivered to the event widget if there was an enter
1641  *     event delivered to it before without the paired leave event.
1642  *   </para></listitem>
1643  *   <listitem><para>
1644  *     Drag events are not redirected because it is unclear what the semantics
1645  *     of that would be.
1646  *   </para></listitem>
1647  *   </itemizedlist>
1648  *   Another point of interest might be that all key events are first passed
1649  *   through the key snooper functions if there are any. Read the description
1650  *   of gtk_key_snooper_install() if you need this feature.
1651  * </para></listitem>
1652  * <listitem><para>
1653  *   After finishing the delivery the event is popped from the event stack.
1654  * </para></listitem>
1655  * </orderedlist>
1656  */
1657 void
1658 gtk_main_do_event (GdkEvent *event)
1659 {
1660   GtkWidget *event_widget;
1661   GtkWidget *grab_widget = NULL;
1662   GtkWindowGroup *window_group;
1663   GdkEvent *rewritten_event = NULL;
1664   GdkDevice *device;
1665   GList *tmp_list;
1666
1667   if (event->type == GDK_SETTING)
1668     {
1669       _gtk_settings_handle_event (&event->setting);
1670       return;
1671     }
1672
1673   if (event->type == GDK_OWNER_CHANGE)
1674     {
1675       _gtk_clipboard_handle_event (&event->owner_change);
1676       return;
1677     }
1678
1679   /* Find the widget which got the event. We store the widget
1680    * in the user_data field of GdkWindow's. Ignore the event
1681    * if we don't have a widget for it, except for GDK_PROPERTY_NOTIFY
1682    * events which are handled specially. Though this happens rarely,
1683    * bogus events can occur for e.g. destroyed GdkWindows.
1684    */
1685   event_widget = gtk_get_event_widget (event);
1686   if (!event_widget)
1687     {
1688       /* To handle selection INCR transactions, we select
1689        * PropertyNotify events on the requestor window and create
1690        * a corresponding (fake) GdkWindow so that events get here.
1691        * There won't be a widget though, so we have to handle
1692        * them specially
1693        */
1694       if (event->type == GDK_PROPERTY_NOTIFY)
1695         _gtk_selection_incr_event (event->any.window,
1696                                    &event->property);
1697
1698       return;
1699     }
1700
1701   /* If pointer or keyboard grabs are in effect, munge the events
1702    * so that each window group looks like a separate app.
1703    */
1704   rewritten_event = rewrite_event_for_grabs (event);
1705   if (rewritten_event)
1706     {
1707       event = rewritten_event;
1708       event_widget = gtk_get_event_widget (event);
1709     }
1710
1711   window_group = gtk_main_get_window_group (event_widget);
1712   device = gdk_event_get_device (event);
1713
1714   /* check whether there is a (device) grab in effect... */
1715   if (device)
1716     grab_widget = gtk_window_group_get_current_device_grab (window_group, device);
1717
1718   if (!grab_widget)
1719     grab_widget = gtk_window_group_get_current_grab (window_group);
1720
1721   /* If the grab widget is an ancestor of the event widget
1722    * then we send the event to the original event widget.
1723    * This is the key to implementing modality.
1724    */
1725   if (!grab_widget ||
1726       (gtk_widget_is_sensitive (event_widget) &&
1727        gtk_widget_is_ancestor (event_widget, grab_widget)))
1728     grab_widget = event_widget;
1729
1730   /* If the widget receiving events is actually blocked by another
1731    * device GTK+ grab
1732    */
1733   if (device &&
1734       _gtk_window_group_widget_is_blocked_for_device (window_group, grab_widget, device))
1735     {
1736       if (rewritten_event)
1737         gdk_event_free (rewritten_event);
1738
1739       return;
1740     }
1741
1742   /* Push the event onto a stack of current events for
1743    * gtk_current_event_get().
1744    */
1745   current_events = g_list_prepend (current_events, event);
1746
1747   /* Not all events get sent to the grabbing widget.
1748    * The delete, destroy, expose, focus change and resize
1749    * events still get sent to the event widget because
1750    * 1) these events have no meaning for the grabbing widget
1751    * and 2) redirecting these events to the grabbing widget
1752    * could cause the display to be messed up.
1753    *
1754    * Drag events are also not redirected, since it isn't
1755    * clear what the semantics of that would be.
1756    */
1757   switch (event->type)
1758     {
1759     case GDK_NOTHING:
1760       break;
1761
1762     case GDK_DELETE:
1763       g_object_ref (event_widget);
1764       if ((!gtk_window_group_get_current_grab (window_group) || gtk_widget_get_toplevel (gtk_window_group_get_current_grab (window_group)) == event_widget) &&
1765           !gtk_widget_event (event_widget, event))
1766         gtk_widget_destroy (event_widget);
1767       g_object_unref (event_widget);
1768       break;
1769
1770     case GDK_DESTROY:
1771       /* Unexpected GDK_DESTROY from the outside, ignore for
1772        * child windows, handle like a GDK_DELETE for toplevels
1773        */
1774       if (!gtk_widget_get_parent (event_widget))
1775         {
1776           g_object_ref (event_widget);
1777           if (!gtk_widget_event (event_widget, event) &&
1778               gtk_widget_get_realized (event_widget))
1779             gtk_widget_destroy (event_widget);
1780           g_object_unref (event_widget);
1781         }
1782       break;
1783
1784     case GDK_EXPOSE:
1785       if (event->any.window && gtk_widget_get_double_buffered (event_widget))
1786         {
1787           gdk_window_begin_paint_region (event->any.window, event->expose.region);
1788           gtk_widget_send_expose (event_widget, event);
1789           gdk_window_end_paint (event->any.window);
1790         }
1791       else
1792         {
1793           /* The app may paint with a previously allocated cairo_t,
1794            * which will draw directly to the window. We can't catch cairo
1795            * draw operations to automatically flush the window, thus we
1796            * need to explicitly flush any outstanding moves or double
1797            * buffering
1798            */
1799           gdk_window_flush (event->any.window);
1800           gtk_widget_send_expose (event_widget, event);
1801         }
1802       break;
1803
1804     case GDK_PROPERTY_NOTIFY:
1805     case GDK_FOCUS_CHANGE:
1806     case GDK_CONFIGURE:
1807     case GDK_MAP:
1808     case GDK_UNMAP:
1809     case GDK_SELECTION_CLEAR:
1810     case GDK_SELECTION_REQUEST:
1811     case GDK_SELECTION_NOTIFY:
1812     case GDK_CLIENT_EVENT:
1813     case GDK_VISIBILITY_NOTIFY:
1814     case GDK_WINDOW_STATE:
1815     case GDK_GRAB_BROKEN:
1816     case GDK_DAMAGE:
1817       gtk_widget_event (event_widget, event);
1818       break;
1819
1820     case GDK_SCROLL:
1821     case GDK_BUTTON_PRESS:
1822     case GDK_2BUTTON_PRESS:
1823     case GDK_3BUTTON_PRESS:
1824       gtk_propagate_event (grab_widget, event);
1825       break;
1826
1827     case GDK_KEY_PRESS:
1828     case GDK_KEY_RELEASE:
1829       if (key_snoopers)
1830         {
1831           if (gtk_invoke_key_snoopers (grab_widget, event))
1832             break;
1833         }
1834       /* Catch alt press to enable auto-mnemonics;
1835        * menus are handled elsewhere
1836        */
1837       if ((event->key.keyval == GDK_KEY_Alt_L || event->key.keyval == GDK_KEY_Alt_R) &&
1838           !GTK_IS_MENU_SHELL (grab_widget))
1839         {
1840           gboolean auto_mnemonics;
1841
1842           g_object_get (gtk_widget_get_settings (grab_widget),
1843                         "gtk-auto-mnemonics", &auto_mnemonics, NULL);
1844
1845           if (auto_mnemonics)
1846             {
1847               gboolean mnemonics_visible;
1848               GtkWidget *window;
1849
1850               mnemonics_visible = (event->type == GDK_KEY_PRESS);
1851
1852               window = gtk_widget_get_toplevel (grab_widget);
1853
1854               if (GTK_IS_WINDOW (window))
1855                 gtk_window_set_mnemonics_visible (GTK_WINDOW (window), mnemonics_visible);
1856             }
1857         }
1858       /* else fall through */
1859     case GDK_MOTION_NOTIFY:
1860     case GDK_BUTTON_RELEASE:
1861     case GDK_PROXIMITY_IN:
1862     case GDK_PROXIMITY_OUT:
1863       gtk_propagate_event (grab_widget, event);
1864       break;
1865
1866     case GDK_ENTER_NOTIFY:
1867       _gtk_widget_set_device_window (event_widget,
1868                                      gdk_event_get_device (event),
1869                                      event->any.window);
1870       if (gtk_widget_is_sensitive (grab_widget))
1871         gtk_widget_event (grab_widget, event);
1872       break;
1873
1874     case GDK_LEAVE_NOTIFY:
1875       _gtk_widget_set_device_window (event_widget,
1876                                      gdk_event_get_device (event),
1877                                      NULL);
1878       if (gtk_widget_is_sensitive (grab_widget))
1879         gtk_widget_event (grab_widget, event);
1880       break;
1881
1882     case GDK_DRAG_STATUS:
1883     case GDK_DROP_FINISHED:
1884       _gtk_drag_source_handle_event (event_widget, event);
1885       break;
1886     case GDK_DRAG_ENTER:
1887     case GDK_DRAG_LEAVE:
1888     case GDK_DRAG_MOTION:
1889     case GDK_DROP_START:
1890       _gtk_drag_dest_handle_event (event_widget, event);
1891       break;
1892     default:
1893       g_assert_not_reached ();
1894       break;
1895     }
1896
1897   if (event->type == GDK_ENTER_NOTIFY
1898       || event->type == GDK_LEAVE_NOTIFY
1899       || event->type == GDK_BUTTON_PRESS
1900       || event->type == GDK_2BUTTON_PRESS
1901       || event->type == GDK_3BUTTON_PRESS
1902       || event->type == GDK_KEY_PRESS
1903       || event->type == GDK_DRAG_ENTER
1904       || event->type == GDK_GRAB_BROKEN
1905       || event->type == GDK_MOTION_NOTIFY
1906       || event->type == GDK_SCROLL)
1907     {
1908       _gtk_tooltip_handle_event (event);
1909     }
1910
1911   tmp_list = current_events;
1912   current_events = g_list_remove_link (current_events, tmp_list);
1913   g_list_free_1 (tmp_list);
1914
1915   if (rewritten_event)
1916     gdk_event_free (rewritten_event);
1917 }
1918
1919 /**
1920  * gtk_true:
1921  *
1922  * All this function does it to return %TRUE.
1923  *
1924  * This can be useful for example if you want to inhibit the deletion
1925  * of a window. Of course you should not do this as the user expects
1926  * a reaction from clicking the close icon of the window...
1927  *
1928  * <example>
1929  * <title>A persistent window</title>
1930  * <programlisting>
1931  * #include &lt;gtk/gtk.h>&lt;
1932  *
1933  * int
1934  * main (int argc, char **argv)
1935  * {
1936  *   GtkWidget *win, *but;
1937  *
1938  *   gtk_init (&amp;argc, &amp;argv);
1939  *
1940  *   win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1941  *   g_signal_connect (win, "delete-event",
1942  *                     G_CALLBACK (gtk_true), NULL);
1943  *   g_signal_connect (win, "destroy",
1944  *                     G_CALLBACK (gtk_main_quit), NULL);
1945  *
1946  *   but = gtk_button_new_with_label ("Close yourself. I mean it!");
1947  *   g_signal_connect_swapped (but, "clicked",
1948  *                             G_CALLBACK (gtk_object_destroy), win);
1949  *   gtk_container_add (GTK_CONTAINER (win), but);
1950  *
1951  *   gtk_widget_show_all (win);
1952  *
1953  *   gtk_main ();
1954  *
1955  *   return 0;
1956  * }
1957  * </programlisting>
1958  * </example>
1959  *
1960  * Returns: %TRUE
1961  */
1962 gboolean
1963 gtk_true (void)
1964 {
1965   return TRUE;
1966 }
1967
1968 /**
1969  * gtk_false:
1970  *
1971  * Analogical to gtk_true(), this function does nothing
1972  * but always returns %FALSE.
1973  *
1974  * Returns: %FALSE
1975  */
1976 gboolean
1977 gtk_false (void)
1978 {
1979   return FALSE;
1980 }
1981
1982 static GtkWindowGroup *
1983 gtk_main_get_window_group (GtkWidget *widget)
1984 {
1985   GtkWidget *toplevel = NULL;
1986
1987   if (widget)
1988     toplevel = gtk_widget_get_toplevel (widget);
1989
1990   if (GTK_IS_WINDOW (toplevel))
1991     return gtk_window_get_group (GTK_WINDOW (toplevel));
1992   else
1993     return gtk_window_get_group (NULL);
1994 }
1995
1996 typedef struct
1997 {
1998   GtkWidget *old_grab_widget;
1999   GtkWidget *new_grab_widget;
2000   gboolean   was_grabbed;
2001   gboolean   is_grabbed;
2002   gboolean   from_grab;
2003   GList     *notified_windows;
2004   GdkDevice *device;
2005 } GrabNotifyInfo;
2006
2007 static void
2008 synth_crossing_for_grab_notify (GtkWidget       *from,
2009                                 GtkWidget       *to,
2010                                 GrabNotifyInfo  *info,
2011                                 GList           *devices,
2012                                 GdkCrossingMode  mode)
2013 {
2014   while (devices)
2015     {
2016       GdkDevice *device = devices->data;
2017       GdkWindow *from_window, *to_window;
2018
2019       /* Do not propagate events more than once to
2020        * the same windows if non-multidevice aware.
2021        */
2022       if (!from)
2023         from_window = NULL;
2024       else
2025         {
2026           from_window = _gtk_widget_get_device_window (from, device);
2027
2028           if (from_window &&
2029               !gdk_window_get_support_multidevice (from_window) &&
2030               g_list_find (info->notified_windows, from_window))
2031             from_window = NULL;
2032         }
2033
2034       if (!to)
2035         to_window = NULL;
2036       else
2037         {
2038           to_window = _gtk_widget_get_device_window (to, device);
2039
2040           if (to_window &&
2041               !gdk_window_get_support_multidevice (to_window) &&
2042               g_list_find (info->notified_windows, to_window))
2043             to_window = NULL;
2044         }
2045
2046       if (from_window || to_window)
2047         {
2048           _gtk_widget_synthesize_crossing ((from_window) ? from : NULL,
2049                                            (to_window) ? to : NULL,
2050                                            device, mode);
2051
2052           if (from_window)
2053             info->notified_windows = g_list_prepend (info->notified_windows, from_window);
2054
2055           if (to_window)
2056             info->notified_windows = g_list_prepend (info->notified_windows, to_window);
2057         }
2058
2059       devices = devices->next;
2060     }
2061 }
2062
2063 static void
2064 gtk_grab_notify_foreach (GtkWidget *child,
2065                          gpointer   data)
2066 {
2067   GrabNotifyInfo *info = data;
2068   gboolean was_grabbed, is_grabbed, was_shadowed, is_shadowed;
2069   GList *devices;
2070
2071   was_grabbed = info->was_grabbed;
2072   is_grabbed = info->is_grabbed;
2073
2074   info->was_grabbed = info->was_grabbed || (child == info->old_grab_widget);
2075   info->is_grabbed = info->is_grabbed || (child == info->new_grab_widget);
2076
2077   was_shadowed = info->old_grab_widget && !info->was_grabbed;
2078   is_shadowed = info->new_grab_widget && !info->is_grabbed;
2079
2080   g_object_ref (child);
2081
2082   if ((was_shadowed || is_shadowed) && GTK_IS_CONTAINER (child))
2083     gtk_container_forall (GTK_CONTAINER (child), gtk_grab_notify_foreach, info);
2084
2085   if (info->device &&
2086       _gtk_widget_get_device_window (child, info->device))
2087     {
2088       /* Device specified and is on widget */
2089       devices = g_list_prepend (NULL, info->device);
2090     }
2091   else
2092     devices = _gtk_widget_list_devices (child);
2093
2094   if (is_shadowed)
2095     {
2096       _gtk_widget_set_shadowed (child, TRUE);
2097       if (!was_shadowed && devices &&
2098           gtk_widget_is_sensitive (child))
2099         synth_crossing_for_grab_notify (child, info->new_grab_widget,
2100                                         info, devices,
2101                                         GDK_CROSSING_GTK_GRAB);
2102     }
2103   else
2104     {
2105       _gtk_widget_set_shadowed (child, FALSE);
2106       if (was_shadowed && devices &&
2107           gtk_widget_is_sensitive (child))
2108         synth_crossing_for_grab_notify (info->old_grab_widget, child,
2109                                         info, devices,
2110                                         info->from_grab ? GDK_CROSSING_GTK_GRAB :
2111                                         GDK_CROSSING_GTK_UNGRAB);
2112     }
2113
2114   if (was_shadowed != is_shadowed)
2115     _gtk_widget_grab_notify (child, was_shadowed);
2116
2117   g_object_unref (child);
2118   g_list_free (devices);
2119
2120   info->was_grabbed = was_grabbed;
2121   info->is_grabbed = is_grabbed;
2122 }
2123
2124 static void
2125 gtk_grab_notify (GtkWindowGroup *group,
2126                  GdkDevice      *device,
2127                  GtkWidget      *old_grab_widget,
2128                  GtkWidget      *new_grab_widget,
2129                  gboolean        from_grab)
2130 {
2131   GList *toplevels;
2132   GrabNotifyInfo info = { 0 };
2133
2134   if (old_grab_widget == new_grab_widget)
2135     return;
2136
2137   info.old_grab_widget = old_grab_widget;
2138   info.new_grab_widget = new_grab_widget;
2139   info.from_grab = from_grab;
2140   info.device = device;
2141
2142   g_object_ref (group);
2143
2144   toplevels = gtk_window_list_toplevels ();
2145   g_list_foreach (toplevels, (GFunc)g_object_ref, NULL);
2146
2147   while (toplevels)
2148     {
2149       GtkWindow *toplevel = toplevels->data;
2150       toplevels = g_list_delete_link (toplevels, toplevels);
2151
2152       info.was_grabbed = FALSE;
2153       info.is_grabbed = FALSE;
2154
2155       if (group == gtk_window_get_group (toplevel))
2156         gtk_grab_notify_foreach (GTK_WIDGET (toplevel), &info);
2157       g_object_unref (toplevel);
2158     }
2159
2160   g_list_free (info.notified_windows);
2161   g_object_unref (group);
2162 }
2163
2164 /**
2165  * gtk_grab_add: (method)
2166  * @widget: The widget that grabs keyboard and pointer events
2167  *
2168  * Makes @widget the current grabbed widget.
2169  *
2170  * This means that interaction with other widgets in the same
2171  * application is blocked and mouse as well as keyboard events
2172  * are delivered to this widget.
2173  *
2174  * If @widget is not sensitive, it is not set as the current
2175  * grabbed widget and this function does nothing.
2176  */
2177 void
2178 gtk_grab_add (GtkWidget *widget)
2179 {
2180   GtkWindowGroup *group;
2181   GtkWidget *old_grab_widget;
2182
2183   g_return_if_fail (widget != NULL);
2184
2185   if (!gtk_widget_has_grab (widget) && gtk_widget_is_sensitive (widget))
2186     {
2187       _gtk_widget_set_has_grab (widget, TRUE);
2188
2189       group = gtk_main_get_window_group (widget);
2190
2191       old_grab_widget = gtk_window_group_get_current_grab (group);
2192
2193       g_object_ref (widget);
2194       _gtk_window_group_add_grab (group, widget);
2195
2196       gtk_grab_notify (group, NULL, old_grab_widget, widget, TRUE);
2197     }
2198 }
2199
2200 /**
2201  * gtk_grab_get_current:
2202  *
2203  * Queries the current grab of the default window group.
2204  *
2205  * Return value: (transfer none): The widget which currently
2206  *     has the grab or %NULL if no grab is active
2207  */
2208 GtkWidget*
2209 gtk_grab_get_current (void)
2210 {
2211   GtkWindowGroup *group;
2212
2213   group = gtk_main_get_window_group (NULL);
2214
2215   return gtk_window_group_get_current_grab (group);
2216 }
2217
2218 /**
2219  * gtk_grab_remove: (method)
2220  * @widget: The widget which gives up the grab
2221  *
2222  * Removes the grab from the given widget.
2223  *
2224  * You have to pair calls to gtk_grab_add() and gtk_grab_remove().
2225  *
2226  * If @widget does not have the grab, this function does nothing.
2227  */
2228 void
2229 gtk_grab_remove (GtkWidget *widget)
2230 {
2231   GtkWindowGroup *group;
2232   GtkWidget *new_grab_widget;
2233
2234   g_return_if_fail (widget != NULL);
2235
2236   if (gtk_widget_has_grab (widget))
2237     {
2238       _gtk_widget_set_has_grab (widget, FALSE);
2239
2240       group = gtk_main_get_window_group (widget);
2241       _gtk_window_group_remove_grab (group, widget);
2242       new_grab_widget = gtk_window_group_get_current_grab (group);
2243
2244       gtk_grab_notify (group, NULL, widget, new_grab_widget, FALSE);
2245
2246       g_object_unref (widget);
2247     }
2248 }
2249
2250 /**
2251  * gtk_device_grab_add:
2252  * @widget: a #GtkWidget
2253  * @device: a #GtkDevice to grab on.
2254  * @block_others: %TRUE to prevent other devices to interact with @widget.
2255  *
2256  * Adds a GTK+ grab on @device, so all the events on @device and its
2257  * associated pointer or keyboard (if any) are delivered to @widget.
2258  * If the @block_others parameter is %TRUE, any other devices will be
2259  * unable to interact with @widget during the grab.
2260  *
2261  * Since: 3.0
2262  */
2263 void
2264 gtk_device_grab_add (GtkWidget *widget,
2265                      GdkDevice *device,
2266                      gboolean   block_others)
2267 {
2268   GtkWindowGroup *group;
2269   GtkWidget *old_grab_widget;
2270
2271   g_return_if_fail (GTK_IS_WIDGET (widget));
2272   g_return_if_fail (GDK_IS_DEVICE (device));
2273
2274   group = gtk_main_get_window_group (widget);
2275   old_grab_widget = gtk_window_group_get_current_device_grab (group, device);
2276
2277   if (old_grab_widget != widget)
2278     _gtk_window_group_add_device_grab (group, widget, device, block_others);
2279
2280   gtk_grab_notify (group, device, old_grab_widget, widget, TRUE);
2281 }
2282
2283 /**
2284  * gtk_device_grab_remove:
2285  * @widget: a #GtkWidget
2286  * @device: a #GdkDevice
2287  *
2288  * Removes a device grab from the given widget.
2289  *
2290  * You have to pair calls to gtk_device_grab_add() and
2291  * gtk_device_grab_remove().
2292  *
2293  * Since: 3.0
2294  */
2295 void
2296 gtk_device_grab_remove (GtkWidget *widget,
2297                         GdkDevice *device)
2298 {
2299   GtkWindowGroup *group;
2300   GtkWidget *new_grab_widget;
2301
2302   g_return_if_fail (GTK_IS_WIDGET (widget));
2303   g_return_if_fail (GDK_IS_DEVICE (device));
2304
2305   group = gtk_main_get_window_group (widget);
2306   _gtk_window_group_remove_device_grab (group, widget, device);
2307   new_grab_widget = gtk_window_group_get_current_device_grab (group, device);
2308
2309   gtk_grab_notify (group, device, widget, new_grab_widget, FALSE);
2310 }
2311
2312 /**
2313  * gtk_key_snooper_install: (skip)
2314  * @snooper: a #GtkKeySnoopFunc
2315  * @func_data: data to pass to @snooper
2316  *
2317  * Installs a key snooper function, which will get called on all
2318  * key events before delivering them normally.
2319  *
2320  * Returns: a unique id for this key snooper for use with
2321  *    gtk_key_snooper_remove().
2322  */
2323 guint
2324 gtk_key_snooper_install (GtkKeySnoopFunc snooper,
2325                          gpointer        func_data)
2326 {
2327   GtkKeySnooperData *data;
2328   static guint snooper_id = 1;
2329
2330   g_return_val_if_fail (snooper != NULL, 0);
2331
2332   data = g_new (GtkKeySnooperData, 1);
2333   data->func = snooper;
2334   data->func_data = func_data;
2335   data->id = snooper_id++;
2336   key_snoopers = g_slist_prepend (key_snoopers, data);
2337
2338   return data->id;
2339 }
2340
2341 /**
2342  * gtk_key_snooper_remove:
2343  * @snooper_handler_id: Identifies the key snooper to remove
2344  *
2345  * Removes the key snooper function with the given id.
2346  */
2347 void
2348 gtk_key_snooper_remove (guint snooper_id)
2349 {
2350   GtkKeySnooperData *data = NULL;
2351   GSList *slist;
2352
2353   slist = key_snoopers;
2354   while (slist)
2355     {
2356       data = slist->data;
2357       if (data->id == snooper_id)
2358         break;
2359
2360       slist = slist->next;
2361       data = NULL;
2362     }
2363   if (data)
2364     {
2365       key_snoopers = g_slist_remove (key_snoopers, data);
2366       g_free (data);
2367     }
2368 }
2369
2370 static gint
2371 gtk_invoke_key_snoopers (GtkWidget *grab_widget,
2372                          GdkEvent  *event)
2373 {
2374   GSList *slist;
2375   gint return_val = FALSE;
2376
2377   slist = key_snoopers;
2378   while (slist && !return_val)
2379     {
2380       GtkKeySnooperData *data;
2381
2382       data = slist->data;
2383       slist = slist->next;
2384       return_val = (*data->func) (grab_widget, (GdkEventKey*) event, data->func_data);
2385     }
2386
2387   return return_val;
2388 }
2389
2390 /**
2391  * gtk_get_current_event:
2392  *
2393  * Obtains a copy of the event currently being processed by GTK+.
2394  *
2395  * For example, if you are handling a #GtkButton::clicked signal,
2396  * the current event will be the #GdkEventButton that triggered
2397  * the ::clicked signal.
2398  *
2399  * Return value: (transfer full): a copy of the current event, or
2400  *     %NULL if there is no current event. The returned event must be
2401  *     freed with gdk_event_free().
2402  */
2403 GdkEvent*
2404 gtk_get_current_event (void)
2405 {
2406   if (current_events)
2407     return gdk_event_copy (current_events->data);
2408   else
2409     return NULL;
2410 }
2411
2412 /**
2413  * gtk_get_current_event_time:
2414  *
2415  * If there is a current event and it has a timestamp,
2416  * return that timestamp, otherwise return %GDK_CURRENT_TIME.
2417  *
2418  * Return value: the timestamp from the current event,
2419  *     or %GDK_CURRENT_TIME.
2420  */
2421 guint32
2422 gtk_get_current_event_time (void)
2423 {
2424   if (current_events)
2425     return gdk_event_get_time (current_events->data);
2426   else
2427     return GDK_CURRENT_TIME;
2428 }
2429
2430 /**
2431  * gtk_get_current_event_state:
2432  * @state: (out): a location to store the state of the current event
2433  *
2434  * If there is a current event and it has a state field, place
2435  * that state field in @state and return %TRUE, otherwise return
2436  * %FALSE.
2437  *
2438  * Return value: %TRUE if there was a current event and it
2439  *     had a state field
2440  */
2441 gboolean
2442 gtk_get_current_event_state (GdkModifierType *state)
2443 {
2444   g_return_val_if_fail (state != NULL, FALSE);
2445
2446   if (current_events)
2447     return gdk_event_get_state (current_events->data, state);
2448   else
2449     {
2450       *state = 0;
2451       return FALSE;
2452     }
2453 }
2454
2455 /**
2456  * gtk_get_current_event_device:
2457  *
2458  * If there is a current event and it has a device, return that
2459  * device, otherwise return %NULL.
2460  *
2461  * Returns: (transfer none): a #GdkDevice, or %NULL
2462  */
2463 GdkDevice *
2464 gtk_get_current_event_device (void)
2465 {
2466   if (current_events)
2467     return gdk_event_get_device (current_events->data);
2468   else
2469     return NULL;
2470 }
2471
2472 /**
2473  * gtk_get_event_widget:
2474  * @event: a #GdkEvent
2475  *
2476  * If @event is %NULL or the event was not associated with any widget,
2477  * returns %NULL, otherwise returns the widget that received the event
2478  * originally.
2479  *
2480  * Return value: (transfer none): the widget that originally
2481  *     received @event, or %NULL
2482  */
2483 GtkWidget*
2484 gtk_get_event_widget (GdkEvent *event)
2485 {
2486   GtkWidget *widget;
2487   gpointer widget_ptr;
2488
2489   widget = NULL;
2490   if (event && event->any.window &&
2491       (event->type == GDK_DESTROY || !gdk_window_is_destroyed (event->any.window)))
2492     {
2493       gdk_window_get_user_data (event->any.window, &widget_ptr);
2494       widget = widget_ptr;
2495     }
2496
2497   return widget;
2498 }
2499
2500 /**
2501  * gtk_propagate_event:
2502  * @widget: a #GtkWidget
2503  * @event: an event
2504  *
2505  * Sends an event to a widget, propagating the event to parent widgets
2506  * if the event remains unhandled.
2507  *
2508  * Events received by GTK+ from GDK normally begin in gtk_main_do_event().
2509  * Depending on the type of event, existence of modal dialogs, grabs, etc.,
2510  * the event may be propagated; if so, this function is used.
2511  *
2512  * gtk_propagate_event() calls gtk_widget_event() on each widget it
2513  * decides to send the event to. So gtk_widget_event() is the lowest-level
2514  * function; it simply emits the #GtkWidget::event and possibly an
2515  * event-specific signal on a widget. gtk_propagate_event() is a bit
2516  * higher-level, and gtk_main_do_event() is the highest level.
2517  *
2518  * All that said, you most likely don't want to use any of these
2519  * functions; synthesizing events is rarely needed. There are almost
2520  * certainly better ways to achieve your goals. For example, use
2521  * gdk_window_invalidate_rect() or gtk_widget_queue_draw() instead
2522  * of making up expose events.
2523  */
2524 void
2525 gtk_propagate_event (GtkWidget *widget,
2526                      GdkEvent  *event)
2527 {
2528   gint handled_event;
2529
2530   g_return_if_fail (GTK_IS_WIDGET (widget));
2531   g_return_if_fail (event != NULL);
2532
2533   handled_event = FALSE;
2534
2535   g_object_ref (widget);
2536
2537   if ((event->type == GDK_KEY_PRESS) ||
2538       (event->type == GDK_KEY_RELEASE))
2539     {
2540       /* Only send key events within Window widgets to the Window
2541        * The Window widget will in turn pass the
2542        * key event on to the currently focused widget
2543        * for that window.
2544        */
2545       GtkWidget *window;
2546
2547       window = gtk_widget_get_toplevel (widget);
2548       if (GTK_IS_WINDOW (window))
2549         {
2550           /* If there is a grab within the window, give the grab widget
2551            * a first crack at the key event
2552            */
2553           if (widget != window && gtk_widget_has_grab (widget))
2554             handled_event = gtk_widget_event (widget, event);
2555
2556           if (!handled_event)
2557             {
2558               window = gtk_widget_get_toplevel (widget);
2559               if (GTK_IS_WINDOW (window))
2560                 {
2561                   if (gtk_widget_is_sensitive (window))
2562                     gtk_widget_event (window, event);
2563                 }
2564             }
2565
2566           handled_event = TRUE; /* don't send to widget */
2567         }
2568     }
2569
2570   /* Other events get propagated up the widget tree
2571    * so that parents can see the button and motion
2572    * events of the children.
2573    */
2574   if (!handled_event)
2575     {
2576       while (TRUE)
2577         {
2578           GtkWidget *tmp;
2579
2580           /* Scroll events are special cased here because it
2581            * feels wrong when scrolling a GtkViewport, say,
2582            * to have children of the viewport eat the scroll
2583            * event
2584            */
2585           if (!gtk_widget_is_sensitive (widget))
2586             handled_event = event->type != GDK_SCROLL;
2587           else
2588             handled_event = gtk_widget_event (widget, event);
2589
2590           tmp = gtk_widget_get_parent (widget);
2591           g_object_unref (widget);
2592
2593           widget = tmp;
2594
2595           if (!handled_event && widget)
2596             g_object_ref (widget);
2597           else
2598             break;
2599         }
2600     }
2601   else
2602     g_object_unref (widget);
2603 }
2604
2605 gboolean
2606 _gtk_boolean_handled_accumulator (GSignalInvocationHint *ihint,
2607                                   GValue                *return_accu,
2608                                   const GValue          *handler_return,
2609                                   gpointer               dummy)
2610 {
2611   gboolean continue_emission;
2612   gboolean signal_handled;
2613
2614   signal_handled = g_value_get_boolean (handler_return);
2615   g_value_set_boolean (return_accu, signal_handled);
2616   continue_emission = !signal_handled;
2617
2618   return continue_emission;
2619 }