]> Pileus Git - ~andy/gtk/blob - gtk/gtkmain.c
[GI] Add method annotation for gtk_grab_add and gtk_grab_remove.
[~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 static void
742 check_mixed_deps (void)
743 {
744   GModule *module;
745   gpointer func;
746
747   module = g_module_open (NULL, 0);
748
749   if (g_module_symbol (module, "gtk_progress_get_type", &func))
750     {
751       g_error ("GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported");
752     }
753
754   g_module_close (module);
755 }
756
757 static void
758 do_pre_parse_initialization (int    *argc,
759                              char ***argv)
760 {
761   const gchar *env_string;
762   
763   if (pre_initialized)
764     return;
765
766   pre_initialized = TRUE;
767
768   check_mixed_deps ();
769
770   gdk_pre_parse_libgtk_only ();
771   gdk_event_handler_set ((GdkEventFunc)gtk_main_do_event, NULL, NULL);
772   
773 #ifdef G_ENABLE_DEBUG
774   env_string = g_getenv ("GTK_DEBUG");
775   if (env_string != NULL)
776     {
777       debug_flags = g_parse_debug_string (env_string,
778                                           gtk_debug_keys,
779                                           G_N_ELEMENTS (gtk_debug_keys));
780       env_string = NULL;
781     }
782 #endif  /* G_ENABLE_DEBUG */
783
784   env_string = g_getenv ("GTK_MODULES");
785   if (env_string)
786     gtk_modules_string = g_string_new (env_string);
787 }
788
789 static void
790 gettext_initialization (void)
791 {
792   setlocale_initialization ();
793
794 #ifdef ENABLE_NLS
795   bindtextdomain (GETTEXT_PACKAGE, GTK_LOCALEDIR);
796   bindtextdomain (GETTEXT_PACKAGE "-properties", GTK_LOCALEDIR);
797 #    ifdef HAVE_BIND_TEXTDOMAIN_CODESET
798   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
799   bind_textdomain_codeset (GETTEXT_PACKAGE "-properties", "UTF-8");
800 #    endif
801 #endif  
802 }
803
804 static void
805 do_post_parse_initialization (int    *argc,
806                               char ***argv)
807 {
808   if (gtk_initialized)
809     return;
810
811   gettext_initialization ();
812
813 #ifdef SIGPIPE
814   signal (SIGPIPE, SIG_IGN);
815 #endif
816
817   if (g_fatal_warnings)
818     {
819       GLogLevelFlags fatal_mask;
820
821       fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
822       fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
823       g_log_set_always_fatal (fatal_mask);
824     }
825
826   if (debug_flags & GTK_DEBUG_UPDATES)
827     gdk_window_set_debug_updates (TRUE);
828
829   {
830   /* Translate to default:RTL if you want your widgets
831    * to be RTL, otherwise translate to default:LTR.
832    * Do *not* translate it to "predefinito:LTR", if it
833    * it isn't default:LTR or default:RTL it will not work 
834    */
835     char *e = _("default:LTR");
836     if (strcmp (e, "default:RTL")==0) 
837       gtk_widget_set_default_direction (GTK_TEXT_DIR_RTL);
838     else if (strcmp (e, "default:LTR"))
839       g_warning ("Whoever translated default:LTR did so wrongly.\n");
840   }
841
842   /* do what the call to gtk_type_init() used to do */
843   g_type_init ();
844
845   _gtk_accel_map_init ();
846
847   /* Set the 'initialized' flag.
848    */
849   gtk_initialized = TRUE;
850
851   /* load gtk modules */
852   if (gtk_modules_string)
853     {
854       _gtk_modules_init (argc, argv, gtk_modules_string->str);
855       g_string_free (gtk_modules_string, TRUE);
856     }
857   else
858     {
859       _gtk_modules_init (argc, argv, NULL);
860     }
861 }
862
863
864 typedef struct
865 {
866   gboolean open_default_display;
867 } OptionGroupInfo;
868
869 static gboolean
870 pre_parse_hook (GOptionContext *context,
871                 GOptionGroup   *group,
872                 gpointer        data,
873                 GError        **error)
874 {
875   do_pre_parse_initialization (NULL, NULL);
876   
877   return TRUE;
878 }
879
880 static gboolean
881 post_parse_hook (GOptionContext *context,
882                  GOptionGroup   *group,
883                  gpointer       data,
884                  GError        **error)
885 {
886   OptionGroupInfo *info = data;
887
888   
889   do_post_parse_initialization (NULL, NULL);
890   
891   if (info->open_default_display)
892     {
893       if (gdk_display_open_default_libgtk_only () == NULL)
894         {
895           const char *display_name = gdk_get_display_arg_name ();
896           g_set_error (error,
897                        G_OPTION_ERROR,
898                        G_OPTION_ERROR_FAILED,
899                        _("Cannot open display: %s"),
900                        display_name ? display_name : "" );
901
902           return FALSE;
903         }
904     }
905
906   return TRUE;
907 }
908
909
910 /**
911  * gtk_get_debug_flags:
912  *
913  * Returns the GTK+ debug flags.
914  *
915  * This function is intended for GTK+ modules that want
916  * to adjust their debug output based on GTK+ debug flags.
917  *
918  * Returns: the GTK+ debug flags.
919  */
920 guint
921 gtk_get_debug_flags (void)
922 {
923   return debug_flags;
924 }
925
926 /**
927  * gtk_set_debug_flags:
928  *
929  * Sets the GTK+ debug flags.
930  */
931 void
932 gtk_set_debug_flags (guint flags)
933 {
934   debug_flags = flags;
935 }
936
937 /**
938  * gtk_get_option_group: (skip)
939  * @open_default_display: whether to open the default display
940  *     when parsing the commandline arguments
941  *
942  * Returns a #GOptionGroup for the commandline arguments recognized
943  * by GTK+ and GDK.
944  *
945  * You should add this group to your #GOptionContext
946  * with g_option_context_add_group(), if you are using
947  * g_option_context_parse() to parse your commandline arguments.
948  *
949  * Returns: a #GOptionGroup for the commandline arguments recognized
950  *     by GTK+
951  *
952  * Since: 2.6
953  */
954 GOptionGroup *
955 gtk_get_option_group (gboolean open_default_display)
956 {
957   GOptionGroup *group;
958   OptionGroupInfo *info;
959
960   gettext_initialization ();
961
962   info = g_new0 (OptionGroupInfo, 1);
963   info->open_default_display = open_default_display;
964   
965   group = g_option_group_new ("gtk", _("GTK+ Options"), _("Show GTK+ Options"), info, g_free);
966   g_option_group_set_parse_hooks (group, pre_parse_hook, post_parse_hook);
967
968   gdk_add_option_entries_libgtk_only (group);
969   g_option_group_add_entries (group, gtk_args);
970   g_option_group_set_translation_domain (group, GETTEXT_PACKAGE);
971   
972   return group;
973 }
974
975 /**
976  * gtk_init_with_args:
977  * @argc: a pointer to the number of command line arguments
978  * @argv: (inout) (array length=argc): a pointer to the array of
979  * command line arguments
980  * @parameter_string: a string which is displayed in
981  *    the first line of <option>--help</option> output, after
982  *    <literal><replaceable>programname</replaceable> [OPTION...]</literal>
983  * @entries: (array zero-terminated=1): a %NULL-terminated array
984  *    of #GOptionEntrys describing the options of your program
985  * @translation_domain: a translation domain to use for translating
986  *    the <option>--help</option> output for the options in @entries
987  *    and the @parameter_string with gettext(), or %NULL
988  * @error: a return location for errors
989  *
990  * This function does the same work as gtk_init_check().
991  * Additionally, it allows you to add your own commandline options,
992  * and it automatically generates nicely formatted
993  * <option>--help</option> output. Note that your program will
994  * be terminated after writing out the help output.
995  *
996  * Returns: %TRUE if the windowing system has been successfully
997  *     initialized, %FALSE otherwise
998  *
999  * Since: 2.6
1000  */
1001 gboolean
1002 gtk_init_with_args (gint                 *argc,
1003                     gchar              ***argv,
1004                     const gchar          *parameter_string,
1005                     const GOptionEntry   *entries,
1006                     const gchar          *translation_domain,
1007                     GError              **error)
1008 {
1009   GOptionContext *context;
1010   GOptionGroup *gtk_group;
1011   gboolean retval;
1012
1013   if (gtk_initialized)
1014     return gdk_display_open_default_libgtk_only () != NULL;
1015
1016   gettext_initialization ();
1017
1018   if (!check_setugid ())
1019     return FALSE;
1020
1021   gtk_group = gtk_get_option_group (TRUE);
1022
1023   context = g_option_context_new (parameter_string);
1024   g_option_context_add_group (context, gtk_group);
1025   g_option_context_set_translation_domain (context, translation_domain);
1026
1027   if (entries)
1028     g_option_context_add_main_entries (context, entries, translation_domain);
1029   retval = g_option_context_parse (context, argc, argv, error);
1030
1031   g_option_context_free (context);
1032
1033   return retval;
1034 }
1035
1036
1037 /**
1038  * gtk_parse_args:
1039  * @argc: (inout): a pointer to the number of command line arguments
1040  * @argv: (array length=argc) (inout): a pointer to the array of
1041  *     command line arguments
1042  *
1043  * Parses command line arguments, and initializes global
1044  * attributes of GTK+, but does not actually open a connection
1045  * to a display. (See gdk_display_open(), gdk_get_display_arg_name())
1046  *
1047  * Any arguments used by GTK+ or GDK are removed from the array and
1048  * @argc and @argv are updated accordingly.
1049  *
1050  * There is no need to call this function explicitely if you are using
1051  * gtk_init(), or gtk_init_check().
1052  *
1053  * Return value: %TRUE if initialization succeeded, otherwise %FALSE
1054  */
1055 gboolean
1056 gtk_parse_args (int    *argc,
1057                 char ***argv)
1058 {
1059   GOptionContext *option_context;
1060   GOptionGroup *gtk_group;
1061   GError *error = NULL;
1062   
1063   if (gtk_initialized)
1064     return TRUE;
1065
1066   gettext_initialization ();
1067
1068   if (!check_setugid ())
1069     return FALSE;
1070
1071   option_context = g_option_context_new (NULL);
1072   g_option_context_set_ignore_unknown_options (option_context, TRUE);
1073   g_option_context_set_help_enabled (option_context, FALSE);
1074   gtk_group = gtk_get_option_group (FALSE);
1075   g_option_context_set_main_group (option_context, gtk_group);
1076   if (!g_option_context_parse (option_context, argc, argv, &error))
1077     {
1078       g_warning ("%s", error->message);
1079       g_error_free (error);
1080     }
1081
1082   g_option_context_free (option_context);
1083
1084   return TRUE;
1085 }
1086
1087 #ifdef G_PLATFORM_WIN32
1088 #undef gtk_init_check
1089 #endif
1090
1091 /**
1092  * gtk_init_check:
1093  * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
1094  *     your main() function. Changed if any arguments were handled
1095  * @argv: (array length=argc) (inout) (allow-none): Address of the
1096  *     <parameter>argv</parameter> parameter of main()
1097  *   Any parameters understood by gtk_init() are stripped before return
1098  *
1099  * This function does the same work as gtk_init() with only a single
1100  * change: It does not terminate the program if the windowing system
1101  * can't be initialized. Instead it returns %FALSE on failure.
1102  *
1103  * This way the application can fall back to some other means of
1104  * communication with the user - for example a curses or command line
1105  * interface.
1106  *
1107  * Return value: %TRUE if the windowing system has been successfully
1108  *     initialized, %FALSE otherwise
1109  */
1110 gboolean
1111 gtk_init_check (int    *argc,
1112                 char ***argv)
1113 {
1114   if (!gtk_parse_args (argc, argv))
1115     return FALSE;
1116
1117   return gdk_display_open_default_libgtk_only () != NULL;
1118 }
1119
1120 #ifdef G_PLATFORM_WIN32
1121 #undef gtk_init
1122 #endif
1123
1124 /**
1125  * gtk_init:
1126  * @argc: (inout): Address of the <parameter>argc</parameter> parameter of
1127  *     your main() function. Changed if any arguments were handled
1128  * @argv: (array length=argc) (inout) (allow-none): Address of the
1129  *     <parameter>argv</parameter> parameter of main(). Any options
1130  *     understood by GTK+ are stripped before return.
1131  *
1132  * Call this function before using any other GTK+ functions in your GUI
1133  * applications.  It will initialize everything needed to operate the
1134  * toolkit and parses some standard command line options.
1135  *
1136  * @argc and @argv are adjusted accordingly so your own code will
1137  * never see those standard arguments.
1138  *
1139  * Note that there are some alternative ways to initialize GTK+:
1140  * if you are calling gtk_parse_args(), gtk_init_check(),
1141  * gtk_init_with_args() or g_option_context_parse() with
1142  * the option group returned by gtk_get_option_group(),
1143  * you <emphasis>don't</emphasis> have to call gtk_init().
1144  *
1145  * <note><para>
1146  * This function will terminate your program if it was unable to
1147  * initialize the windowing system for some reason. If you want
1148  * your program to fall back to a textual interface you want to
1149  * call gtk_init_check() instead.
1150  * </para></note>
1151  *
1152  * <note><para>
1153  * Since 2.18, GTK+ calls <literal>signal (SIGPIPE, SIG_IGN)</literal>
1154  * during initialization, to ignore SIGPIPE signals, since these are
1155  * almost never wanted in graphical applications. If you do need to
1156  * handle SIGPIPE for some reason, reset the handler after gtk_init(),
1157  * but notice that other libraries (e.g. libdbus or gvfs) might do
1158  * similar things.
1159  * </para></note>
1160  */
1161 void
1162 gtk_init (int *argc, char ***argv)
1163 {
1164   if (!gtk_init_check (argc, argv))
1165     {
1166       const char *display_name_arg = gdk_get_display_arg_name ();
1167       if (display_name_arg == NULL)
1168         display_name_arg = getenv("DISPLAY");
1169       g_warning ("cannot open display: %s", display_name_arg ? display_name_arg : "");
1170       exit (1);
1171     }
1172 }
1173
1174 #ifdef G_OS_WIN32
1175
1176 /* This is relevant when building with gcc for Windows (MinGW),
1177  * where we want to be struct packing compatible with MSVC,
1178  * i.e. use the -mms-bitfields switch.
1179  * For Cygwin there should be no need to be compatible with MSVC,
1180  * so no need to use G_PLATFORM_WIN32.
1181  */
1182
1183 static void
1184 check_sizeof_GtkWindow (size_t sizeof_GtkWindow)
1185 {
1186   if (sizeof_GtkWindow != sizeof (GtkWindow))
1187     g_error ("Incompatible build!\n"
1188              "The code using GTK+ thinks GtkWindow is of different\n"
1189              "size than it actually is in this build of GTK+.\n"
1190              "On Windows, this probably means that you have compiled\n"
1191              "your code with gcc without the -mms-bitfields switch,\n"
1192              "or that you are using an unsupported compiler.");
1193 }
1194
1195 /* In GTK+ 2.0 the GtkWindow struct actually is the same size in
1196  * gcc-compiled code on Win32 whether compiled with -fnative-struct or
1197  * not. Unfortunately this wan't noticed until after GTK+ 2.0.1. So,
1198  * from GTK+ 2.0.2 on, check some other struct, too, where the use of
1199  * -fnative-struct still matters. GtkBox is one such.
1200  */
1201 static void
1202 check_sizeof_GtkBox (size_t sizeof_GtkBox)
1203 {
1204   if (sizeof_GtkBox != sizeof (GtkBox))
1205     g_error ("Incompatible build!\n"
1206              "The code using GTK+ thinks GtkBox is of different\n"
1207              "size than it actually is in this build of GTK+.\n"
1208              "On Windows, this probably means that you have compiled\n"
1209              "your code with gcc without the -mms-bitfields switch,\n"
1210              "or that you are using an unsupported compiler.");
1211 }
1212
1213 /* These two functions might get more checks added later, thus pass
1214  * in the number of extra args.
1215  */
1216 void
1217 gtk_init_abi_check (int *argc, char ***argv, int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
1218 {
1219   check_sizeof_GtkWindow (sizeof_GtkWindow);
1220   if (num_checks >= 2)
1221     check_sizeof_GtkBox (sizeof_GtkBox);
1222   gtk_init (argc, argv);
1223 }
1224
1225 gboolean
1226 gtk_init_check_abi_check (int *argc, char ***argv, int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
1227 {
1228   check_sizeof_GtkWindow (sizeof_GtkWindow);
1229   if (num_checks >= 2)
1230     check_sizeof_GtkBox (sizeof_GtkBox);
1231   return gtk_init_check (argc, argv);
1232 }
1233
1234 #endif
1235
1236 /*
1237  * _gtk_get_lc_ctype:
1238  *
1239  * Return the Unix-style locale string for the language currently in
1240  * effect. On Unix systems, this is the return value from
1241  * <literal>setlocale(LC_CTYPE, NULL)</literal>, and the user can
1242  * affect this through the environment variables LC_ALL, LC_CTYPE or
1243  * LANG (checked in that order). The locale strings typically is in
1244  * the form lang_COUNTRY, where lang is an ISO-639 language code, and
1245  * COUNTRY is an ISO-3166 country code. For instance, sv_FI for
1246  * Swedish as written in Finland or pt_BR for Portuguese as written in
1247  * Brazil.
1248  *
1249  * On Windows, the C library doesn't use any such environment
1250  * variables, and setting them won't affect the behaviour of functions
1251  * like ctime(). The user sets the locale through the Regional Options
1252  * in the Control Panel. The C library (in the setlocale() function)
1253  * does not use country and language codes, but country and language
1254  * names spelled out in English.
1255  * However, this function does check the above environment
1256  * variables, and does return a Unix-style locale string based on
1257  * either said environment variables or the thread's current locale.
1258  *
1259  * Return value: a dynamically allocated string, free with g_free().
1260  */
1261
1262 gchar *
1263 _gtk_get_lc_ctype (void)
1264 {
1265 #ifdef G_OS_WIN32
1266   /* Somebody might try to set the locale for this process using the
1267    * LANG or LC_ environment variables. The Microsoft C library
1268    * doesn't know anything about them. You set the locale in the
1269    * Control Panel. Setting these env vars won't have any affect on
1270    * locale-dependent C library functions like ctime(). But just for
1271    * kicks, do obey LC_ALL, LC_CTYPE and LANG in GTK. (This also makes
1272    * it easier to test GTK and Pango in various default languages, you
1273    * don't have to clickety-click in the Control Panel, you can simply
1274    * start the program with LC_ALL=something on the command line.)
1275    */
1276   gchar *p;
1277
1278   p = getenv ("LC_ALL");
1279   if (p != NULL)
1280     return g_strdup (p);
1281
1282   p = getenv ("LC_CTYPE");
1283   if (p != NULL)
1284     return g_strdup (p);
1285
1286   p = getenv ("LANG");
1287   if (p != NULL)
1288     return g_strdup (p);
1289
1290   return g_win32_getlocale ();
1291 #else
1292   return g_strdup (setlocale (LC_CTYPE, NULL));
1293 #endif
1294 }
1295
1296 /**
1297  * gtk_get_default_language:
1298  *
1299  * Returns the #PangoLanguage for the default language currently in
1300  * effect. (Note that this can change over the life of an
1301  * application.) The default language is derived from the current
1302  * locale. It determines, for example, whether GTK+ uses the
1303  * right-to-left or left-to-right text direction.
1304  *
1305  * This function is equivalent to pango_language_get_default().
1306  * See that function for details.
1307  *
1308  * Return value: the default language as a #PangoLanguage,
1309  *     must not be freed
1310  */
1311 PangoLanguage *
1312 gtk_get_default_language (void)
1313 {
1314   return pango_language_get_default ();
1315 }
1316
1317 /**
1318  * gtk_main:
1319  *
1320  * Runs the main loop until gtk_main_quit() is called.
1321  *
1322  * You can nest calls to gtk_main(). In that case gtk_main_quit()
1323  * will make the innermost invocation of the main loop return.
1324  */
1325 void
1326 gtk_main (void)
1327 {
1328   GMainLoop *loop;
1329
1330   gtk_main_loop_level++;
1331
1332   loop = g_main_loop_new (NULL, TRUE);
1333   main_loops = g_slist_prepend (main_loops, loop);
1334
1335   if (g_main_loop_is_running (main_loops->data))
1336     {
1337       GDK_THREADS_LEAVE ();
1338       g_main_loop_run (loop);
1339       GDK_THREADS_ENTER ();
1340       gdk_flush ();
1341     }
1342
1343   main_loops = g_slist_remove (main_loops, loop);
1344
1345   g_main_loop_unref (loop);
1346
1347   gtk_main_loop_level--;
1348
1349   if (gtk_main_loop_level == 0)
1350     {
1351       /* Try storing all clipboard data we have */
1352       _gtk_clipboard_store_all ();
1353
1354       /* Synchronize the recent manager singleton */
1355       _gtk_recent_manager_sync ();
1356     }
1357 }
1358
1359 /**
1360  * gtk_main_level:
1361  *
1362  * Asks for the current nesting level of the main loop.
1363  *
1364  * Returns: the nesting level of the current invocation
1365  *     of the main loop
1366  */
1367 guint
1368 gtk_main_level (void)
1369 {
1370   return gtk_main_loop_level;
1371 }
1372
1373 /**
1374  * gtk_main_quit:
1375  *
1376  * Makes the innermost invocation of the main loop return
1377  * when it regains control.
1378  */
1379 void
1380 gtk_main_quit (void)
1381 {
1382   g_return_if_fail (main_loops != NULL);
1383
1384   g_main_loop_quit (main_loops->data);
1385 }
1386
1387 /**
1388  * gtk_events_pending:
1389  *
1390  * Checks if any events are pending.
1391  *
1392  * This can be used to update the UI and invoke timeouts etc.
1393  * while doing some time intensive computation.
1394  *
1395  * <example>
1396  * <title>Updating the UI during a long computation</title>
1397  * <programlisting>
1398  *  /&ast; computation going on... &ast;/
1399  *
1400  *  while (gtk_events_pending ())
1401  *    gtk_main_iteration ();
1402  *
1403  *  /&ast; ...computation continued &ast;/
1404  * </programlisting>
1405  * </example>
1406  *
1407  * Returns: %TRUE if any events are pending, %FALSE otherwise
1408  */
1409 gboolean
1410 gtk_events_pending (void)
1411 {
1412   gboolean result;
1413
1414   GDK_THREADS_LEAVE ();
1415   result = g_main_context_pending (NULL);
1416   GDK_THREADS_ENTER ();
1417
1418   return result;
1419 }
1420
1421 /**
1422  * gtk_main_iteration:
1423  *
1424  * Runs a single iteration of the mainloop.
1425  *
1426  * If no events are waiting to be processed GTK+ will block
1427  * until the next event is noticed. If you don't want to block
1428  * look at gtk_main_iteration_do() or check if any events are
1429  * pending with gtk_events_pending() first.
1430  *
1431  * Returns: %TRUE if gtk_main_quit() has been called for the
1432  *     innermost mainloop
1433  */
1434 gboolean
1435 gtk_main_iteration (void)
1436 {
1437   GDK_THREADS_LEAVE ();
1438   g_main_context_iteration (NULL, TRUE);
1439   GDK_THREADS_ENTER ();
1440
1441   if (main_loops)
1442     return !g_main_loop_is_running (main_loops->data);
1443   else
1444     return TRUE;
1445 }
1446
1447 /**
1448  * gtk_main_iteration_do:
1449  * @blocking: %TRUE if you want GTK+ to block if no events are pending
1450  *
1451  * Runs a single iteration of the mainloop.
1452  * If no events are available either return or block depending on
1453  * the value of @blocking.
1454  *
1455  * Returns: %TRUE if gtk_main_quit() has been called for the
1456  *     innermost mainloop
1457  */
1458 gboolean
1459 gtk_main_iteration_do (gboolean blocking)
1460 {
1461   GDK_THREADS_LEAVE ();
1462   g_main_context_iteration (NULL, blocking);
1463   GDK_THREADS_ENTER ();
1464
1465   if (main_loops)
1466     return !g_main_loop_is_running (main_loops->data);
1467   else
1468     return TRUE;
1469 }
1470
1471 /* private libgtk to libgdk interfaces */
1472 gboolean gdk_device_grab_info_libgtk_only (GdkDisplay  *display,
1473                                            GdkDevice   *device,
1474                                            GdkWindow  **grab_window,
1475                                            gboolean    *owner_events);
1476
1477 static void
1478 rewrite_events_translate (GdkWindow *old_window,
1479                           GdkWindow *new_window,
1480                           gdouble   *x,
1481                           gdouble   *y)
1482 {
1483   gint old_origin_x, old_origin_y;
1484   gint new_origin_x, new_origin_y;
1485
1486   gdk_window_get_origin (old_window, &old_origin_x, &old_origin_y);
1487   gdk_window_get_origin (new_window, &new_origin_x, &new_origin_y);
1488
1489   *x += old_origin_x - new_origin_x;
1490   *y += old_origin_y - new_origin_y;
1491 }
1492
1493 static GdkEvent *
1494 rewrite_event_for_window (GdkEvent  *event,
1495                           GdkWindow *new_window)
1496 {
1497   event = gdk_event_copy (event);
1498
1499   switch (event->type)
1500     {
1501     case GDK_SCROLL:
1502       rewrite_events_translate (event->any.window,
1503                                 new_window,
1504                                 &event->scroll.x, &event->scroll.y);
1505       break;
1506     case GDK_BUTTON_PRESS:
1507     case GDK_2BUTTON_PRESS:
1508     case GDK_3BUTTON_PRESS:
1509     case GDK_BUTTON_RELEASE:
1510       rewrite_events_translate (event->any.window,
1511                                 new_window,
1512                                 &event->button.x, &event->button.y);
1513       break;
1514     case GDK_MOTION_NOTIFY:
1515       rewrite_events_translate (event->any.window,
1516                                 new_window,
1517                                 &event->motion.x, &event->motion.y);
1518       break;
1519     case GDK_KEY_PRESS:
1520     case GDK_KEY_RELEASE:
1521     case GDK_PROXIMITY_IN:
1522     case GDK_PROXIMITY_OUT:
1523       break;
1524
1525     default:
1526       return event;
1527     }
1528
1529   g_object_unref (event->any.window);
1530   event->any.window = g_object_ref (new_window);
1531
1532   return event;
1533 }
1534
1535 /* If there is a pointer or keyboard grab in effect with owner_events = TRUE,
1536  * then what X11 does is deliver the event normally if it was going to this
1537  * client, otherwise, delivers it in terms of the grab window. This function
1538  * rewrites events to the effect that events going to the same window group
1539  * are delivered normally, otherwise, the event is delivered in terms of the
1540  * grab window.
1541  */
1542 static GdkEvent *
1543 rewrite_event_for_grabs (GdkEvent *event)
1544 {
1545   GdkWindow *grab_window;
1546   GtkWidget *event_widget, *grab_widget;
1547   gpointer grab_widget_ptr;
1548   gboolean owner_events;
1549   GdkDisplay *display;
1550   GdkDevice *device;
1551
1552   switch (event->type)
1553     {
1554     case GDK_SCROLL:
1555     case GDK_BUTTON_PRESS:
1556     case GDK_2BUTTON_PRESS:
1557     case GDK_3BUTTON_PRESS:
1558     case GDK_BUTTON_RELEASE:
1559     case GDK_MOTION_NOTIFY:
1560     case GDK_PROXIMITY_IN:
1561     case GDK_PROXIMITY_OUT:
1562     case GDK_KEY_PRESS:
1563     case GDK_KEY_RELEASE:
1564       display = gdk_window_get_display (event->any.window);
1565       device = gdk_event_get_device (event);
1566
1567       if (!gdk_device_grab_info_libgtk_only (display, device, &grab_window, &owner_events) ||
1568           !owner_events)
1569         return NULL;
1570       break;
1571     default:
1572       return NULL;
1573     }
1574
1575   event_widget = gtk_get_event_widget (event);
1576   gdk_window_get_user_data (grab_window, &grab_widget_ptr);
1577   grab_widget = grab_widget_ptr;
1578
1579   if (grab_widget &&
1580       gtk_main_get_window_group (grab_widget) != gtk_main_get_window_group (event_widget))
1581     return rewrite_event_for_window (event, grab_window);
1582   else
1583     return NULL;
1584 }
1585
1586 /**
1587  * gtk_main_do_event:
1588  * @event: An event to process (normally passed by GDK)
1589  *
1590  * Processes a single GDK event.
1591  *
1592  * This is public only to allow filtering of events between GDK and GTK+.
1593  * You will not usually need to call this function directly.
1594  *
1595  * While you should not call this function directly, you might want to
1596  * know how exactly events are handled. So here is what this function
1597  * does with the event:
1598  *
1599  * <orderedlist>
1600  * <listitem><para>
1601  *   Compress enter/leave notify events. If the event passed build an
1602  *   enter/leave pair together with the next event (peeked from GDK), both
1603  *   events are thrown away. This is to avoid a backlog of (de-)highlighting
1604  *   widgets crossed by the pointer.
1605  * </para></listitem>
1606  * <listitem><para>
1607  *   Find the widget which got the event. If the widget can't be determined
1608  *   the event is thrown away unless it belongs to a INCR transaction. In that
1609  *   case it is passed to gtk_selection_incr_event().
1610  * </para></listitem>
1611  * <listitem><para>
1612  *   Then the event is pushed onto a stack so you can query the currently
1613  *   handled event with gtk_get_current_event().
1614  * </para></listitem>
1615  * <listitem><para>
1616  *   The event is sent to a widget. If a grab is active all events for widgets
1617  *   that are not in the contained in the grab widget are sent to the latter
1618  *   with a few exceptions:
1619  *   <itemizedlist>
1620  *   <listitem><para>
1621  *     Deletion and destruction events are still sent to the event widget for
1622  *     obvious reasons.
1623  *   </para></listitem>
1624  *   <listitem><para>
1625  *     Events which directly relate to the visual representation of the event
1626  *     widget.
1627  *   </para></listitem>
1628  *   <listitem><para>
1629  *     Leave events are delivered to the event widget if there was an enter
1630  *     event delivered to it before without the paired leave event.
1631  *   </para></listitem>
1632  *   <listitem><para>
1633  *     Drag events are not redirected because it is unclear what the semantics
1634  *     of that would be.
1635  *   </para></listitem>
1636  *   </itemizedlist>
1637  *   Another point of interest might be that all key events are first passed
1638  *   through the key snooper functions if there are any. Read the description
1639  *   of gtk_key_snooper_install() if you need this feature.
1640  * </para></listitem>
1641  * <listitem><para>
1642  *   After finishing the delivery the event is popped from the event stack.
1643  * </para></listitem>
1644  * </orderedlist>
1645  */
1646 void
1647 gtk_main_do_event (GdkEvent *event)
1648 {
1649   GtkWidget *event_widget;
1650   GtkWidget *grab_widget = NULL;
1651   GtkWindowGroup *window_group;
1652   GdkEvent *rewritten_event = NULL;
1653   GdkDevice *device;
1654   GList *tmp_list;
1655
1656   if (event->type == GDK_SETTING)
1657     {
1658       _gtk_settings_handle_event (&event->setting);
1659       return;
1660     }
1661
1662   if (event->type == GDK_OWNER_CHANGE)
1663     {
1664       _gtk_clipboard_handle_event (&event->owner_change);
1665       return;
1666     }
1667
1668   /* Find the widget which got the event. We store the widget
1669    * in the user_data field of GdkWindow's. Ignore the event
1670    * if we don't have a widget for it, except for GDK_PROPERTY_NOTIFY
1671    * events which are handled specially. Though this happens rarely,
1672    * bogus events can occur for e.g. destroyed GdkWindows.
1673    */
1674   event_widget = gtk_get_event_widget (event);
1675   if (!event_widget)
1676     {
1677       /* To handle selection INCR transactions, we select
1678        * PropertyNotify events on the requestor window and create
1679        * a corresponding (fake) GdkWindow so that events get here.
1680        * There won't be a widget though, so we have to handle
1681        * them specially
1682        */
1683       if (event->type == GDK_PROPERTY_NOTIFY)
1684         _gtk_selection_incr_event (event->any.window,
1685                                    &event->property);
1686
1687       return;
1688     }
1689
1690   /* If pointer or keyboard grabs are in effect, munge the events
1691    * so that each window group looks like a separate app.
1692    */
1693   rewritten_event = rewrite_event_for_grabs (event);
1694   if (rewritten_event)
1695     {
1696       event = rewritten_event;
1697       event_widget = gtk_get_event_widget (event);
1698     }
1699
1700   window_group = gtk_main_get_window_group (event_widget);
1701   device = gdk_event_get_device (event);
1702
1703   /* check whether there is a (device) grab in effect... */
1704   if (device)
1705     grab_widget = gtk_window_group_get_current_device_grab (window_group, device);
1706
1707   if (!grab_widget)
1708     grab_widget = gtk_window_group_get_current_grab (window_group);
1709
1710   /* If the grab widget is an ancestor of the event widget
1711    * then we send the event to the original event widget.
1712    * This is the key to implementing modality.
1713    */
1714   if (!grab_widget ||
1715       (gtk_widget_is_sensitive (event_widget) &&
1716        gtk_widget_is_ancestor (event_widget, grab_widget)))
1717     grab_widget = event_widget;
1718
1719   /* If the widget receiving events is actually blocked by another
1720    * device GTK+ grab
1721    */
1722   if (device &&
1723       _gtk_window_group_widget_is_blocked_for_device (window_group, grab_widget, device))
1724     {
1725       if (rewritten_event)
1726         gdk_event_free (rewritten_event);
1727
1728       return;
1729     }
1730
1731   /* Push the event onto a stack of current events for
1732    * gtk_current_event_get().
1733    */
1734   current_events = g_list_prepend (current_events, event);
1735
1736   /* Not all events get sent to the grabbing widget.
1737    * The delete, destroy, expose, focus change and resize
1738    * events still get sent to the event widget because
1739    * 1) these events have no meaning for the grabbing widget
1740    * and 2) redirecting these events to the grabbing widget
1741    * could cause the display to be messed up.
1742    *
1743    * Drag events are also not redirected, since it isn't
1744    * clear what the semantics of that would be.
1745    */
1746   switch (event->type)
1747     {
1748     case GDK_NOTHING:
1749       break;
1750
1751     case GDK_DELETE:
1752       g_object_ref (event_widget);
1753       if ((!gtk_window_group_get_current_grab (window_group) || gtk_widget_get_toplevel (gtk_window_group_get_current_grab (window_group)) == event_widget) &&
1754           !gtk_widget_event (event_widget, event))
1755         gtk_widget_destroy (event_widget);
1756       g_object_unref (event_widget);
1757       break;
1758
1759     case GDK_DESTROY:
1760       /* Unexpected GDK_DESTROY from the outside, ignore for
1761        * child windows, handle like a GDK_DELETE for toplevels
1762        */
1763       if (!gtk_widget_get_parent (event_widget))
1764         {
1765           g_object_ref (event_widget);
1766           if (!gtk_widget_event (event_widget, event) &&
1767               gtk_widget_get_realized (event_widget))
1768             gtk_widget_destroy (event_widget);
1769           g_object_unref (event_widget);
1770         }
1771       break;
1772
1773     case GDK_EXPOSE:
1774       if (event->any.window && gtk_widget_get_double_buffered (event_widget))
1775         {
1776           gdk_window_begin_paint_region (event->any.window, event->expose.region);
1777           gtk_widget_send_expose (event_widget, event);
1778           gdk_window_end_paint (event->any.window);
1779         }
1780       else
1781         {
1782           /* The app may paint with a previously allocated cairo_t,
1783            * which will draw directly to the window. We can't catch cairo
1784            * draw operations to automatically flush the window, thus we
1785            * need to explicitly flush any outstanding moves or double
1786            * buffering
1787            */
1788           gdk_window_flush (event->any.window);
1789           gtk_widget_send_expose (event_widget, event);
1790         }
1791       break;
1792
1793     case GDK_PROPERTY_NOTIFY:
1794     case GDK_FOCUS_CHANGE:
1795     case GDK_CONFIGURE:
1796     case GDK_MAP:
1797     case GDK_UNMAP:
1798     case GDK_SELECTION_CLEAR:
1799     case GDK_SELECTION_REQUEST:
1800     case GDK_SELECTION_NOTIFY:
1801     case GDK_CLIENT_EVENT:
1802     case GDK_VISIBILITY_NOTIFY:
1803     case GDK_WINDOW_STATE:
1804     case GDK_GRAB_BROKEN:
1805     case GDK_DAMAGE:
1806       gtk_widget_event (event_widget, event);
1807       break;
1808
1809     case GDK_SCROLL:
1810     case GDK_BUTTON_PRESS:
1811     case GDK_2BUTTON_PRESS:
1812     case GDK_3BUTTON_PRESS:
1813       gtk_propagate_event (grab_widget, event);
1814       break;
1815
1816     case GDK_KEY_PRESS:
1817     case GDK_KEY_RELEASE:
1818       if (key_snoopers)
1819         {
1820           if (gtk_invoke_key_snoopers (grab_widget, event))
1821             break;
1822         }
1823       /* Catch alt press to enable auto-mnemonics;
1824        * menus are handled elsewhere
1825        */
1826       if ((event->key.keyval == GDK_KEY_Alt_L || event->key.keyval == GDK_KEY_Alt_R) &&
1827           !GTK_IS_MENU_SHELL (grab_widget))
1828         {
1829           gboolean auto_mnemonics;
1830
1831           g_object_get (gtk_widget_get_settings (grab_widget),
1832                         "gtk-auto-mnemonics", &auto_mnemonics, NULL);
1833
1834           if (auto_mnemonics)
1835             {
1836               gboolean mnemonics_visible;
1837               GtkWidget *window;
1838
1839               mnemonics_visible = (event->type == GDK_KEY_PRESS);
1840
1841               window = gtk_widget_get_toplevel (grab_widget);
1842
1843               if (GTK_IS_WINDOW (window))
1844                 gtk_window_set_mnemonics_visible (GTK_WINDOW (window), mnemonics_visible);
1845             }
1846         }
1847       /* else fall through */
1848     case GDK_MOTION_NOTIFY:
1849     case GDK_BUTTON_RELEASE:
1850     case GDK_PROXIMITY_IN:
1851     case GDK_PROXIMITY_OUT:
1852       gtk_propagate_event (grab_widget, event);
1853       break;
1854
1855     case GDK_ENTER_NOTIFY:
1856       _gtk_widget_set_device_window (event_widget,
1857                                      gdk_event_get_device (event),
1858                                      event->any.window);
1859       if (gtk_widget_is_sensitive (grab_widget))
1860         gtk_widget_event (grab_widget, event);
1861       break;
1862
1863     case GDK_LEAVE_NOTIFY:
1864       _gtk_widget_set_device_window (event_widget,
1865                                      gdk_event_get_device (event),
1866                                      NULL);
1867       if (gtk_widget_is_sensitive (grab_widget))
1868         gtk_widget_event (grab_widget, event);
1869       break;
1870
1871     case GDK_DRAG_STATUS:
1872     case GDK_DROP_FINISHED:
1873       _gtk_drag_source_handle_event (event_widget, event);
1874       break;
1875     case GDK_DRAG_ENTER:
1876     case GDK_DRAG_LEAVE:
1877     case GDK_DRAG_MOTION:
1878     case GDK_DROP_START:
1879       _gtk_drag_dest_handle_event (event_widget, event);
1880       break;
1881     default:
1882       g_assert_not_reached ();
1883       break;
1884     }
1885
1886   if (event->type == GDK_ENTER_NOTIFY
1887       || event->type == GDK_LEAVE_NOTIFY
1888       || event->type == GDK_BUTTON_PRESS
1889       || event->type == GDK_2BUTTON_PRESS
1890       || event->type == GDK_3BUTTON_PRESS
1891       || event->type == GDK_KEY_PRESS
1892       || event->type == GDK_DRAG_ENTER
1893       || event->type == GDK_GRAB_BROKEN
1894       || event->type == GDK_MOTION_NOTIFY
1895       || event->type == GDK_SCROLL)
1896     {
1897       _gtk_tooltip_handle_event (event);
1898     }
1899
1900   tmp_list = current_events;
1901   current_events = g_list_remove_link (current_events, tmp_list);
1902   g_list_free_1 (tmp_list);
1903
1904   if (rewritten_event)
1905     gdk_event_free (rewritten_event);
1906 }
1907
1908 /**
1909  * gtk_true:
1910  *
1911  * All this function does it to return %TRUE.
1912  *
1913  * This can be useful for example if you want to inhibit the deletion
1914  * of a window. Of course you should not do this as the user expects
1915  * a reaction from clicking the close icon of the window...
1916  *
1917  * <example>
1918  * <title>A persistent window</title>
1919  * <programlisting>
1920  * #include &lt;gtk/gtk.h>&lt;
1921  *
1922  * int
1923  * main (int argc, char **argv)
1924  * {
1925  *   GtkWidget *win, *but;
1926  *
1927  *   gtk_init (&amp;argc, &amp;argv);
1928  *
1929  *   win = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1930  *   g_signal_connect (win, "delete-event",
1931  *                     G_CALLBACK (gtk_true), NULL);
1932  *   g_signal_connect (win, "destroy",
1933  *                     G_CALLBACK (gtk_main_quit), NULL);
1934  *
1935  *   but = gtk_button_new_with_label ("Close yourself. I mean it!");
1936  *   g_signal_connect_swapped (but, "clicked",
1937  *                             G_CALLBACK (gtk_object_destroy), win);
1938  *   gtk_container_add (GTK_CONTAINER (win), but);
1939  *
1940  *   gtk_widget_show_all (win);
1941  *
1942  *   gtk_main ();
1943  *
1944  *   return 0;
1945  * }
1946  * </programlisting>
1947  * </example>
1948  *
1949  * Returns: %TRUE
1950  */
1951 gboolean
1952 gtk_true (void)
1953 {
1954   return TRUE;
1955 }
1956
1957 /**
1958  * gtk_false:
1959  *
1960  * Analogical to gtk_true(), this function does nothing
1961  * but always returns %FALSE.
1962  *
1963  * Returns: %FALSE
1964  */
1965 gboolean
1966 gtk_false (void)
1967 {
1968   return FALSE;
1969 }
1970
1971 static GtkWindowGroup *
1972 gtk_main_get_window_group (GtkWidget *widget)
1973 {
1974   GtkWidget *toplevel = NULL;
1975
1976   if (widget)
1977     toplevel = gtk_widget_get_toplevel (widget);
1978
1979   if (GTK_IS_WINDOW (toplevel))
1980     return gtk_window_get_group (GTK_WINDOW (toplevel));
1981   else
1982     return gtk_window_get_group (NULL);
1983 }
1984
1985 typedef struct
1986 {
1987   GtkWidget *old_grab_widget;
1988   GtkWidget *new_grab_widget;
1989   gboolean   was_grabbed;
1990   gboolean   is_grabbed;
1991   gboolean   from_grab;
1992   GList     *notified_windows;
1993   GdkDevice *device;
1994 } GrabNotifyInfo;
1995
1996 static void
1997 synth_crossing_for_grab_notify (GtkWidget       *from,
1998                                 GtkWidget       *to,
1999                                 GrabNotifyInfo  *info,
2000                                 GList           *devices,
2001                                 GdkCrossingMode  mode)
2002 {
2003   while (devices)
2004     {
2005       GdkDevice *device = devices->data;
2006       GdkWindow *from_window, *to_window;
2007
2008       /* Do not propagate events more than once to
2009        * the same windows if non-multidevice aware.
2010        */
2011       if (!from)
2012         from_window = NULL;
2013       else
2014         {
2015           from_window = _gtk_widget_get_device_window (from, device);
2016
2017           if (from_window &&
2018               !gdk_window_get_support_multidevice (from_window) &&
2019               g_list_find (info->notified_windows, from_window))
2020             from_window = NULL;
2021         }
2022
2023       if (!to)
2024         to_window = NULL;
2025       else
2026         {
2027           to_window = _gtk_widget_get_device_window (to, device);
2028
2029           if (to_window &&
2030               !gdk_window_get_support_multidevice (to_window) &&
2031               g_list_find (info->notified_windows, to_window))
2032             to_window = NULL;
2033         }
2034
2035       if (from_window || to_window)
2036         {
2037           _gtk_widget_synthesize_crossing ((from_window) ? from : NULL,
2038                                            (to_window) ? to : NULL,
2039                                            device, mode);
2040
2041           if (from_window)
2042             info->notified_windows = g_list_prepend (info->notified_windows, from_window);
2043
2044           if (to_window)
2045             info->notified_windows = g_list_prepend (info->notified_windows, to_window);
2046         }
2047
2048       devices = devices->next;
2049     }
2050 }
2051
2052 static void
2053 gtk_grab_notify_foreach (GtkWidget *child,
2054                          gpointer   data)
2055 {
2056   GrabNotifyInfo *info = data;
2057   gboolean was_grabbed, is_grabbed, was_shadowed, is_shadowed;
2058   GList *devices;
2059
2060   was_grabbed = info->was_grabbed;
2061   is_grabbed = info->is_grabbed;
2062
2063   info->was_grabbed = info->was_grabbed || (child == info->old_grab_widget);
2064   info->is_grabbed = info->is_grabbed || (child == info->new_grab_widget);
2065
2066   was_shadowed = info->old_grab_widget && !info->was_grabbed;
2067   is_shadowed = info->new_grab_widget && !info->is_grabbed;
2068
2069   g_object_ref (child);
2070
2071   if ((was_shadowed || is_shadowed) && GTK_IS_CONTAINER (child))
2072     gtk_container_forall (GTK_CONTAINER (child), gtk_grab_notify_foreach, info);
2073
2074   if (info->device &&
2075       _gtk_widget_get_device_window (child, info->device))
2076     {
2077       /* Device specified and is on widget */
2078       devices = g_list_prepend (NULL, info->device);
2079     }
2080   else
2081     devices = _gtk_widget_list_devices (child);
2082
2083   if (is_shadowed)
2084     {
2085       _gtk_widget_set_shadowed (child, TRUE);
2086       if (!was_shadowed && devices &&
2087           gtk_widget_is_sensitive (child))
2088         synth_crossing_for_grab_notify (child, info->new_grab_widget,
2089                                         info, devices,
2090                                         GDK_CROSSING_GTK_GRAB);
2091     }
2092   else
2093     {
2094       _gtk_widget_set_shadowed (child, FALSE);
2095       if (was_shadowed && devices &&
2096           gtk_widget_is_sensitive (child))
2097         synth_crossing_for_grab_notify (info->old_grab_widget, child,
2098                                         info, devices,
2099                                         info->from_grab ? GDK_CROSSING_GTK_GRAB :
2100                                         GDK_CROSSING_GTK_UNGRAB);
2101     }
2102
2103   if (was_shadowed != is_shadowed)
2104     _gtk_widget_grab_notify (child, was_shadowed);
2105
2106   g_object_unref (child);
2107   g_list_free (devices);
2108
2109   info->was_grabbed = was_grabbed;
2110   info->is_grabbed = is_grabbed;
2111 }
2112
2113 static void
2114 gtk_grab_notify (GtkWindowGroup *group,
2115                  GdkDevice      *device,
2116                  GtkWidget      *old_grab_widget,
2117                  GtkWidget      *new_grab_widget,
2118                  gboolean        from_grab)
2119 {
2120   GList *toplevels;
2121   GrabNotifyInfo info = { 0 };
2122
2123   if (old_grab_widget == new_grab_widget)
2124     return;
2125
2126   info.old_grab_widget = old_grab_widget;
2127   info.new_grab_widget = new_grab_widget;
2128   info.from_grab = from_grab;
2129   info.device = device;
2130
2131   g_object_ref (group);
2132
2133   toplevels = gtk_window_list_toplevels ();
2134   g_list_foreach (toplevels, (GFunc)g_object_ref, NULL);
2135
2136   while (toplevels)
2137     {
2138       GtkWindow *toplevel = toplevels->data;
2139       toplevels = g_list_delete_link (toplevels, toplevels);
2140
2141       info.was_grabbed = FALSE;
2142       info.is_grabbed = FALSE;
2143
2144       if (group == gtk_window_get_group (toplevel))
2145         gtk_grab_notify_foreach (GTK_WIDGET (toplevel), &info);
2146       g_object_unref (toplevel);
2147     }
2148
2149   g_list_free (info.notified_windows);
2150   g_object_unref (group);
2151 }
2152
2153 /**
2154  * gtk_grab_add: (method)
2155  * @widget: The widget that grabs keyboard and pointer events
2156  *
2157  * Makes @widget the current grabbed widget.
2158  *
2159  * This means that interaction with other widgets in the same
2160  * application is blocked and mouse as well as keyboard events
2161  * are delivered to this widget.
2162  *
2163  * If @widget is not sensitive, it is not set as the current
2164  * grabbed widget and this function does nothing.
2165  */
2166 void
2167 gtk_grab_add (GtkWidget *widget)
2168 {
2169   GtkWindowGroup *group;
2170   GtkWidget *old_grab_widget;
2171
2172   g_return_if_fail (widget != NULL);
2173
2174   if (!gtk_widget_has_grab (widget) && gtk_widget_is_sensitive (widget))
2175     {
2176       _gtk_widget_set_has_grab (widget, TRUE);
2177
2178       group = gtk_main_get_window_group (widget);
2179
2180       old_grab_widget = gtk_window_group_get_current_grab (group);
2181
2182       g_object_ref (widget);
2183       _gtk_window_group_add_grab (group, widget);
2184
2185       gtk_grab_notify (group, NULL, old_grab_widget, widget, TRUE);
2186     }
2187 }
2188
2189 /**
2190  * gtk_grab_get_current:
2191  *
2192  * Queries the current grab of the default window group.
2193  *
2194  * Return value: (transfer none): The widget which currently
2195  *     has the grab or %NULL if no grab is active
2196  */
2197 GtkWidget*
2198 gtk_grab_get_current (void)
2199 {
2200   GtkWindowGroup *group;
2201
2202   group = gtk_main_get_window_group (NULL);
2203
2204   return gtk_window_group_get_current_grab (group);
2205 }
2206
2207 /**
2208  * gtk_grab_remove: (method)
2209  * @widget: The widget which gives up the grab
2210  *
2211  * Removes the grab from the given widget.
2212  *
2213  * You have to pair calls to gtk_grab_add() and gtk_grab_remove().
2214  *
2215  * If @widget does not have the grab, this function does nothing.
2216  */
2217 void
2218 gtk_grab_remove (GtkWidget *widget)
2219 {
2220   GtkWindowGroup *group;
2221   GtkWidget *new_grab_widget;
2222
2223   g_return_if_fail (widget != NULL);
2224
2225   if (gtk_widget_has_grab (widget))
2226     {
2227       _gtk_widget_set_has_grab (widget, FALSE);
2228
2229       group = gtk_main_get_window_group (widget);
2230       _gtk_window_group_remove_grab (group, widget);
2231       new_grab_widget = gtk_window_group_get_current_grab (group);
2232
2233       gtk_grab_notify (group, NULL, widget, new_grab_widget, FALSE);
2234
2235       g_object_unref (widget);
2236     }
2237 }
2238
2239 /**
2240  * gtk_device_grab_add:
2241  * @widget: a #GtkWidget
2242  * @device: a #GtkDevice to grab on.
2243  * @block_others: %TRUE to prevent other devices to interact with @widget.
2244  *
2245  * Adds a GTK+ grab on @device, so all the events on @device and its
2246  * associated pointer or keyboard (if any) are delivered to @widget.
2247  * If the @block_others parameter is %TRUE, any other devices will be
2248  * unable to interact with @widget during the grab.
2249  *
2250  * Since: 3.0
2251  */
2252 void
2253 gtk_device_grab_add (GtkWidget *widget,
2254                      GdkDevice *device,
2255                      gboolean   block_others)
2256 {
2257   GtkWindowGroup *group;
2258   GtkWidget *old_grab_widget;
2259
2260   g_return_if_fail (GTK_IS_WIDGET (widget));
2261   g_return_if_fail (GDK_IS_DEVICE (device));
2262
2263   group = gtk_main_get_window_group (widget);
2264   old_grab_widget = gtk_window_group_get_current_device_grab (group, device);
2265
2266   if (old_grab_widget != widget)
2267     _gtk_window_group_add_device_grab (group, widget, device, block_others);
2268
2269   gtk_grab_notify (group, device, old_grab_widget, widget, TRUE);
2270 }
2271
2272 /**
2273  * gtk_device_grab_remove:
2274  * @widget: a #GtkWidget
2275  * @device: a #GdkDevice
2276  *
2277  * Removes a device grab from the given widget.
2278  *
2279  * You have to pair calls to gtk_device_grab_add() and
2280  * gtk_device_grab_remove().
2281  *
2282  * Since: 3.0
2283  */
2284 void
2285 gtk_device_grab_remove (GtkWidget *widget,
2286                         GdkDevice *device)
2287 {
2288   GtkWindowGroup *group;
2289   GtkWidget *new_grab_widget;
2290
2291   g_return_if_fail (GTK_IS_WIDGET (widget));
2292   g_return_if_fail (GDK_IS_DEVICE (device));
2293
2294   group = gtk_main_get_window_group (widget);
2295   _gtk_window_group_remove_device_grab (group, widget, device);
2296   new_grab_widget = gtk_window_group_get_current_device_grab (group, device);
2297
2298   gtk_grab_notify (group, device, widget, new_grab_widget, FALSE);
2299 }
2300
2301 /**
2302  * gtk_key_snooper_install: (skip)
2303  * @snooper: a #GtkKeySnoopFunc
2304  * @func_data: data to pass to @snooper
2305  *
2306  * Installs a key snooper function, which will get called on all
2307  * key events before delivering them normally.
2308  *
2309  * Returns: a unique id for this key snooper for use with
2310  *    gtk_key_snooper_remove().
2311  */
2312 guint
2313 gtk_key_snooper_install (GtkKeySnoopFunc snooper,
2314                          gpointer        func_data)
2315 {
2316   GtkKeySnooperData *data;
2317   static guint snooper_id = 1;
2318
2319   g_return_val_if_fail (snooper != NULL, 0);
2320
2321   data = g_new (GtkKeySnooperData, 1);
2322   data->func = snooper;
2323   data->func_data = func_data;
2324   data->id = snooper_id++;
2325   key_snoopers = g_slist_prepend (key_snoopers, data);
2326
2327   return data->id;
2328 }
2329
2330 /**
2331  * gtk_key_snooper_remove:
2332  * @snooper_handler_id: Identifies the key snooper to remove
2333  *
2334  * Removes the key snooper function with the given id.
2335  */
2336 void
2337 gtk_key_snooper_remove (guint snooper_id)
2338 {
2339   GtkKeySnooperData *data = NULL;
2340   GSList *slist;
2341
2342   slist = key_snoopers;
2343   while (slist)
2344     {
2345       data = slist->data;
2346       if (data->id == snooper_id)
2347         break;
2348
2349       slist = slist->next;
2350       data = NULL;
2351     }
2352   if (data)
2353     {
2354       key_snoopers = g_slist_remove (key_snoopers, data);
2355       g_free (data);
2356     }
2357 }
2358
2359 static gint
2360 gtk_invoke_key_snoopers (GtkWidget *grab_widget,
2361                          GdkEvent  *event)
2362 {
2363   GSList *slist;
2364   gint return_val = FALSE;
2365
2366   slist = key_snoopers;
2367   while (slist && !return_val)
2368     {
2369       GtkKeySnooperData *data;
2370
2371       data = slist->data;
2372       slist = slist->next;
2373       return_val = (*data->func) (grab_widget, (GdkEventKey*) event, data->func_data);
2374     }
2375
2376   return return_val;
2377 }
2378
2379 /**
2380  * gtk_get_current_event:
2381  *
2382  * Obtains a copy of the event currently being processed by GTK+.
2383  *
2384  * For example, if you are handling a #GtkButton::clicked signal,
2385  * the current event will be the #GdkEventButton that triggered
2386  * the ::clicked signal.
2387  *
2388  * Return value: (transfer full): a copy of the current event, or
2389  *     %NULL if there is no current event. The returned event must be
2390  *     freed with gdk_event_free().
2391  */
2392 GdkEvent*
2393 gtk_get_current_event (void)
2394 {
2395   if (current_events)
2396     return gdk_event_copy (current_events->data);
2397   else
2398     return NULL;
2399 }
2400
2401 /**
2402  * gtk_get_current_event_time:
2403  *
2404  * If there is a current event and it has a timestamp,
2405  * return that timestamp, otherwise return %GDK_CURRENT_TIME.
2406  *
2407  * Return value: the timestamp from the current event,
2408  *     or %GDK_CURRENT_TIME.
2409  */
2410 guint32
2411 gtk_get_current_event_time (void)
2412 {
2413   if (current_events)
2414     return gdk_event_get_time (current_events->data);
2415   else
2416     return GDK_CURRENT_TIME;
2417 }
2418
2419 /**
2420  * gtk_get_current_event_state:
2421  * @state: (out): a location to store the state of the current event
2422  *
2423  * If there is a current event and it has a state field, place
2424  * that state field in @state and return %TRUE, otherwise return
2425  * %FALSE.
2426  *
2427  * Return value: %TRUE if there was a current event and it
2428  *     had a state field
2429  */
2430 gboolean
2431 gtk_get_current_event_state (GdkModifierType *state)
2432 {
2433   g_return_val_if_fail (state != NULL, FALSE);
2434
2435   if (current_events)
2436     return gdk_event_get_state (current_events->data, state);
2437   else
2438     {
2439       *state = 0;
2440       return FALSE;
2441     }
2442 }
2443
2444 /**
2445  * gtk_get_current_event_device:
2446  *
2447  * If there is a current event and it has a device, return that
2448  * device, otherwise return %NULL.
2449  *
2450  * Returns: (transfer none): a #GdkDevice, or %NULL
2451  */
2452 GdkDevice *
2453 gtk_get_current_event_device (void)
2454 {
2455   if (current_events)
2456     return gdk_event_get_device (current_events->data);
2457   else
2458     return NULL;
2459 }
2460
2461 /**
2462  * gtk_get_event_widget:
2463  * @event: a #GdkEvent
2464  *
2465  * If @event is %NULL or the event was not associated with any widget,
2466  * returns %NULL, otherwise returns the widget that received the event
2467  * originally.
2468  *
2469  * Return value: (transfer none): the widget that originally
2470  *     received @event, or %NULL
2471  */
2472 GtkWidget*
2473 gtk_get_event_widget (GdkEvent *event)
2474 {
2475   GtkWidget *widget;
2476   gpointer widget_ptr;
2477
2478   widget = NULL;
2479   if (event && event->any.window &&
2480       (event->type == GDK_DESTROY || !gdk_window_is_destroyed (event->any.window)))
2481     {
2482       gdk_window_get_user_data (event->any.window, &widget_ptr);
2483       widget = widget_ptr;
2484     }
2485
2486   return widget;
2487 }
2488
2489 /**
2490  * gtk_propagate_event:
2491  * @widget: a #GtkWidget
2492  * @event: an event
2493  *
2494  * Sends an event to a widget, propagating the event to parent widgets
2495  * if the event remains unhandled.
2496  *
2497  * Events received by GTK+ from GDK normally begin in gtk_main_do_event().
2498  * Depending on the type of event, existence of modal dialogs, grabs, etc.,
2499  * the event may be propagated; if so, this function is used.
2500  *
2501  * gtk_propagate_event() calls gtk_widget_event() on each widget it
2502  * decides to send the event to. So gtk_widget_event() is the lowest-level
2503  * function; it simply emits the #GtkWidget::event and possibly an
2504  * event-specific signal on a widget. gtk_propagate_event() is a bit
2505  * higher-level, and gtk_main_do_event() is the highest level.
2506  *
2507  * All that said, you most likely don't want to use any of these
2508  * functions; synthesizing events is rarely needed. There are almost
2509  * certainly better ways to achieve your goals. For example, use
2510  * gdk_window_invalidate_rect() or gtk_widget_queue_draw() instead
2511  * of making up expose events.
2512  */
2513 void
2514 gtk_propagate_event (GtkWidget *widget,
2515                      GdkEvent  *event)
2516 {
2517   gint handled_event;
2518
2519   g_return_if_fail (GTK_IS_WIDGET (widget));
2520   g_return_if_fail (event != NULL);
2521
2522   handled_event = FALSE;
2523
2524   g_object_ref (widget);
2525
2526   if ((event->type == GDK_KEY_PRESS) ||
2527       (event->type == GDK_KEY_RELEASE))
2528     {
2529       /* Only send key events within Window widgets to the Window
2530        * The Window widget will in turn pass the
2531        * key event on to the currently focused widget
2532        * for that window.
2533        */
2534       GtkWidget *window;
2535
2536       window = gtk_widget_get_toplevel (widget);
2537       if (GTK_IS_WINDOW (window))
2538         {
2539           /* If there is a grab within the window, give the grab widget
2540            * a first crack at the key event
2541            */
2542           if (widget != window && gtk_widget_has_grab (widget))
2543             handled_event = gtk_widget_event (widget, event);
2544
2545           if (!handled_event)
2546             {
2547               window = gtk_widget_get_toplevel (widget);
2548               if (GTK_IS_WINDOW (window))
2549                 {
2550                   if (gtk_widget_is_sensitive (window))
2551                     gtk_widget_event (window, event);
2552                 }
2553             }
2554
2555           handled_event = TRUE; /* don't send to widget */
2556         }
2557     }
2558
2559   /* Other events get propagated up the widget tree
2560    * so that parents can see the button and motion
2561    * events of the children.
2562    */
2563   if (!handled_event)
2564     {
2565       while (TRUE)
2566         {
2567           GtkWidget *tmp;
2568
2569           /* Scroll events are special cased here because it
2570            * feels wrong when scrolling a GtkViewport, say,
2571            * to have children of the viewport eat the scroll
2572            * event
2573            */
2574           if (!gtk_widget_is_sensitive (widget))
2575             handled_event = event->type != GDK_SCROLL;
2576           else
2577             handled_event = gtk_widget_event (widget, event);
2578
2579           tmp = gtk_widget_get_parent (widget);
2580           g_object_unref (widget);
2581
2582           widget = tmp;
2583
2584           if (!handled_event && widget)
2585             g_object_ref (widget);
2586           else
2587             break;
2588         }
2589     }
2590   else
2591     g_object_unref (widget);
2592 }
2593
2594 gboolean
2595 _gtk_boolean_handled_accumulator (GSignalInvocationHint *ihint,
2596                                   GValue                *return_accu,
2597                                   const GValue          *handler_return,
2598                                   gpointer               dummy)
2599 {
2600   gboolean continue_emission;
2601   gboolean signal_handled;
2602
2603   signal_handled = g_value_get_boolean (handler_return);
2604   g_value_set_boolean (return_accu, signal_handled);
2605   continue_emission = !signal_handled;
2606
2607   return continue_emission;
2608 }