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