2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
|
*/
|
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkmain
|
|
|
|
|
* @Short_description: Library initialization, main event loop, and events
|
|
|
|
|
* @Title: Main loop and Events
|
|
|
|
|
* @See_also:See the GLib manual, especially #GMainLoop and signal-related
|
|
|
|
|
* functions such as g_signal_connect()
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Before using GTK, you need to initialize it; initialization connects to the
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* window system display, and parses some standard command line arguments. The
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* gtk_init() macro initializes GTK. gtk_init() exits the application if errors
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* occur; to avoid this, use gtk_init_check(). gtk_init_check() allows you to
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* recover from a failed GTK initialization - you might start up your
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* application in text mode instead.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Like all GUI toolkits, GTK uses an event-driven programming model. When the
|
|
|
|
|
* user is doing nothing, GTK sits in the “main loop” and
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* waits for input. If the user performs some action - say, a mouse click - then
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* the main loop “wakes up” and delivers an event to GTK. GTK forwards the
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* event to one or more widgets.
|
|
|
|
|
*
|
|
|
|
|
* When widgets receive an event, they frequently emit one or more
|
2014-02-04 23:10:11 +00:00
|
|
|
|
* “signals”. Signals notify your program that "something
|
2014-02-07 18:38:26 +00:00
|
|
|
|
* interesting happened" by invoking functions you’ve connected to the signal
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* with g_signal_connect(). Functions connected to a signal are often termed
|
2014-02-04 23:10:11 +00:00
|
|
|
|
* “callbacks”.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
|
|
|
|
* When your callbacks are invoked, you would typically take some action - for
|
|
|
|
|
* example, when an Open button is clicked you might display a
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* #GtkFileChooserDialog. After a callback finishes, GTK will return to the
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* main loop and await more user input.
|
2014-02-01 09:35:54 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* ## Typical main() function for a GTK application
|
2014-02-04 21:57:57 +00:00
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* int
|
|
|
|
|
* main (int argc, char **argv)
|
|
|
|
|
* {
|
2018-01-03 16:10:21 +00:00
|
|
|
|
* GtkWidget *mainwin;
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Initialize i18n support with bindtextdomain(), etc.
|
|
|
|
|
*
|
2018-01-03 16:10:21 +00:00
|
|
|
|
* // ...
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Initialize the widget set
|
2017-04-25 13:22:52 +00:00
|
|
|
|
* gtk_init ();
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Create the main window
|
2020-02-14 19:55:36 +00:00
|
|
|
|
* mainwin = gtk_window_new ();
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Set up our GUI elements
|
|
|
|
|
*
|
2018-01-03 16:10:21 +00:00
|
|
|
|
* // ...
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Show the application window
|
2017-01-19 09:02:04 +00:00
|
|
|
|
* gtk_widget_show (mainwin);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Enter the main event loop, and wait for user interaction
|
2020-02-10 03:41:58 +00:00
|
|
|
|
* while (!done)
|
|
|
|
|
* g_main_context_iteration (NULL, TRUE);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // The user lost interest
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* return 0;
|
|
|
|
|
* }
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2014-02-01 09:35:54 +00:00
|
|
|
|
*
|
2020-02-10 03:41:58 +00:00
|
|
|
|
* See #GMainLoop in the GLib documentation to learn more about
|
|
|
|
|
* main loops and their features.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2004-03-06 03:38:59 +00:00
|
|
|
|
|
2010-12-09 04:07:00 +00:00
|
|
|
|
#include "gdk/gdk.h"
|
2014-11-07 13:40:22 +00:00
|
|
|
|
#include "gdk/gdk-private.h"
|
2017-01-18 21:41:20 +00:00
|
|
|
|
#include "gsk/gskprivate.h"
|
2001-04-02 23:33:47 +00:00
|
|
|
|
|
This might seem like a large patch, but it isn't that bad, and nothing
should break on Unix/X11.
Win32 merge and general portability stuff:
* acconfig.h,configure.in: Check for <sys/time.h>.
* gdk/win32: New directory (actually, been there for a while).
* gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
NATIVE_WIN32, and use these. Always case fold on Win32. No
backslashed escapes on native Win32.
* gtk/{gtk.def,makefile.msc}: New files.
* gtk/Makefile.am: Add above new files.
* gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
instead of <strings.h>.
* gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
<unistd.h> appropriately.
* gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
Use ABS() (from <glib.h>) instead of abs().
* gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
of gtk (and thus glib) headers, so that WIN32 will be
defined. With MS C, include <direct.h> for mkdir prototype.
* gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
some casts, needed by MS C.
* gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
implemented).
* gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
<X11/Xlocale.h> only on X11 platform, otherwise <locale.h>. Use
G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
* gtk/gtkmain.h: Mark variables for export/import on Win32.
* gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
the event is not a hint, or its window is not the slider. Needed
on Win32, at least.
* gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
a subdirectory of the Windows directory as gtk system
configuration directory.
* gtk/gtkselection.c: No chunks on Win32.
* gtk/gtksocket.c: Not implemented on Win32.
* gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
* gtk/makeenums.h: Include gdkprivate.h after gdk.h.
* gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
1999-03-15 00:03:37 +00:00
|
|
|
|
#include <locale.h>
|
2000-11-16 00:41:02 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
1998-04-04 01:56:54 +00:00
|
|
|
|
#include <string.h>
|
2004-09-01 20:30:24 +00:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2001-05-09 16:15:09 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
2010-12-24 03:11:28 +00:00
|
|
|
|
#include <sys/types.h> /* For uid_t, gid_t */
|
2004-09-01 20:30:24 +00:00
|
|
|
|
|
Updates.
2001-10-29 Tor Lillqvist <tml@iki.fi>
* README.win32: Updates.
* gtk-zip.sh.in: New file, used to build distribution package for
Windows.
* gdk/gdkglobals.c: Mark gdk_threads_mutex for DLL export when
applicable with GDKVAR.
* gtk/gtk.def: Update.
* gtk/gtkfilesel.c: Include <winsock.h> (if available) for
gethostname().
* gtk/gtkmain.c
* gtk/gtkrc.c: (Win32) Save actual DLL name for later use in DLL
entry function. Avoid hardcoded paths GTK_LIBDIR, GTK_SYSCONFDIR,
GTK_DATA_PREFIX and GTK_LOCALEDIR, instead add functions that call
g_win32_get_package_installation_subdirectory() with the actual
DLL name saved above. Redefine above directory name macros to call
these functions. Remove some ifdefs.
* gtk/maketypes.awk: Output GTKTYPEBUILTINS_VAR (that marks
variable for export on Win32) also to the _vars file.
Changes for autoconfiscated build on Win32, and addition of Win32
backend to the related files:
* configure.in: Like in GLib, set LT_CURRENT_MINUS_AGE for use
when forming DLL name in some files. Set MS_LIB_AVAILABLE is
lib.exe is available. Call AC_LIBTOOL_WIN32_DLL. Set
PLATFORM_WIN32, OS_WIN32 and USE_WIN32 automake conditionals. Add
win32 target, using pangowin32. Don't use the
-export-symbols-regex option on Win32, we use .def files to list
exported symbols. Check <winsock.h> (for gethostname() in
gtkfilesel.c). Enclose nested AC_CHECK_* macros in brackets to
prevent premature m4 expansion.
* acconfig.h: Add HAVE_WINTAB.
* gdk/Makefile.am: Add libgdk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gdk.def file. If
MS_LIB_AVAILABLE, build MS import library. Install the import
libraries. If HAVE_WINTAB, link with the Wintab library.
* gtk/Makefile.am: Add libgtk-win32-1.3.la target and associated
macros and rules. Use -no-undefined on Win32. Use gtk-win32.def
file. Install import libraries.
2001-10-29 07:06:37 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
#define STRICT
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#undef STRICT
|
|
|
|
|
#endif
|
2001-09-11 20:24:40 +00:00
|
|
|
|
|
2003-01-12 04:44:23 +00:00
|
|
|
|
#include "gtkintl.h"
|
|
|
|
|
|
2011-12-05 22:37:04 +00:00
|
|
|
|
#include "gtkaccelmapprivate.h"
|
2002-04-18 11:21:21 +00:00
|
|
|
|
#include "gtkbox.h"
|
2011-10-23 11:57:07 +00:00
|
|
|
|
#include "gtkdebug.h"
|
2020-01-06 05:21:41 +00:00
|
|
|
|
#include "gtkdragdestprivate.h"
|
2011-10-23 11:57:07 +00:00
|
|
|
|
#include "gtkmain.h"
|
2018-03-01 20:46:16 +00:00
|
|
|
|
#include "gtkmediafileprivate.h"
|
2011-10-22 06:48:13 +00:00
|
|
|
|
#include "gtkmodulesprivate.h"
|
2011-10-23 11:57:07 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2007-06-19 10:29:55 +00:00
|
|
|
|
#include "gtkrecentmanager.h"
|
2010-12-24 03:11:28 +00:00
|
|
|
|
#include "gtksettingsprivate.h"
|
2014-10-20 02:51:21 +00:00
|
|
|
|
#include "gtktooltipprivate.h"
|
2011-10-23 11:57:07 +00:00
|
|
|
|
#include "gtkversion.h"
|
2010-10-19 17:14:46 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2010-12-18 01:41:16 +00:00
|
|
|
|
#include "gtkwindowprivate.h"
|
2014-06-04 10:18:03 +00:00
|
|
|
|
#include "gtkwindowgroup.h"
|
2019-05-26 21:57:23 +00:00
|
|
|
|
#include "gtkprintbackendprivate.h"
|
2018-02-19 23:29:00 +00:00
|
|
|
|
#include "gtkimmodule.h"
|
2019-02-23 21:53:19 +00:00
|
|
|
|
#include "gtkroot.h"
|
2019-05-26 18:02:55 +00:00
|
|
|
|
#include "gtknative.h"
|
2007-11-28 01:06:07 +00:00
|
|
|
|
|
2012-12-27 06:06:30 +00:00
|
|
|
|
#include "a11y/gtkaccessibility.h"
|
2019-02-24 04:06:00 +00:00
|
|
|
|
#include "inspector/window.h"
|
2011-10-22 06:48:13 +00:00
|
|
|
|
|
2001-06-14 21:44:01 +00:00
|
|
|
|
static GtkWindowGroup *gtk_main_get_window_group (GtkWidget *widget);
|
|
|
|
|
|
2007-02-16 06:09:02 +00:00
|
|
|
|
static gint pre_initialized = FALSE;
|
1998-06-10 07:32:52 +00:00
|
|
|
|
static gint gtk_initialized = FALSE;
|
1997-12-18 02:17:14 +00:00
|
|
|
|
static GList *current_events = NULL;
|
1998-12-15 07:32:11 +00:00
|
|
|
|
|
2016-05-05 22:51:30 +00:00
|
|
|
|
typedef struct {
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
guint flags;
|
|
|
|
|
} DisplayDebugFlags;
|
|
|
|
|
|
|
|
|
|
#define N_DEBUG_DISPLAYS 4
|
|
|
|
|
|
|
|
|
|
DisplayDebugFlags debug_flags[N_DEBUG_DISPLAYS];
|
2018-07-07 09:37:24 +00:00
|
|
|
|
/* This is a flag to speed up development builds. We set it to TRUE when
|
|
|
|
|
* any of the debug displays has debug flags >0, but we never set it back
|
|
|
|
|
* to FALSE. This way we don't need to call gtk_widget_get_display() in
|
|
|
|
|
* hot paths. */
|
|
|
|
|
gboolean any_display_debug_flags_set = FALSE;
|
1998-02-19 06:21:27 +00:00
|
|
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-11-30 19:07:15 +00:00
|
|
|
|
static const GDebugKey gtk_debug_keys[] = {
|
2016-03-11 04:17:02 +00:00
|
|
|
|
{ "text", GTK_DEBUG_TEXT },
|
|
|
|
|
{ "tree", GTK_DEBUG_TREE },
|
|
|
|
|
{ "keybindings", GTK_DEBUG_KEYBINDINGS },
|
|
|
|
|
{ "modules", GTK_DEBUG_MODULES },
|
|
|
|
|
{ "geometry", GTK_DEBUG_GEOMETRY },
|
|
|
|
|
{ "icontheme", GTK_DEBUG_ICONTHEME },
|
|
|
|
|
{ "printing", GTK_DEBUG_PRINTING} ,
|
|
|
|
|
{ "builder", GTK_DEBUG_BUILDER },
|
|
|
|
|
{ "size-request", GTK_DEBUG_SIZE_REQUEST },
|
|
|
|
|
{ "no-css-cache", GTK_DEBUG_NO_CSS_CACHE },
|
|
|
|
|
{ "interactive", GTK_DEBUG_INTERACTIVE },
|
|
|
|
|
{ "touchscreen", GTK_DEBUG_TOUCHSCREEN },
|
|
|
|
|
{ "actions", GTK_DEBUG_ACTIONS },
|
|
|
|
|
{ "resize", GTK_DEBUG_RESIZE },
|
2016-12-20 18:20:02 +00:00
|
|
|
|
{ "layout", GTK_DEBUG_LAYOUT },
|
2019-06-29 20:40:34 +00:00
|
|
|
|
{ "snapshot", GTK_DEBUG_SNAPSHOT },
|
|
|
|
|
{ "constraints", GTK_DEBUG_CONSTRAINTS },
|
1998-02-19 06:21:27 +00:00
|
|
|
|
};
|
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2010-09-08 14:36:10 +00:00
|
|
|
|
/**
|
2010-09-09 08:03:22 +00:00
|
|
|
|
* gtk_get_major_version:
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns the major version number of the GTK library.
|
|
|
|
|
* (e.g. in GTK version 3.1.5 this is 3.)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* This function is in the library, so it represents the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* your code is running against. Contrast with the #GTK_MAJOR_VERSION
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* macro, which represents the major version of the GTK headers you
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* have included when compiling your code.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the major version number of the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
2010-09-09 08:03:22 +00:00
|
|
|
|
gtk_get_major_version (void)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_MAJOR_VERSION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-09 08:03:22 +00:00
|
|
|
|
* gtk_get_minor_version:
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns the minor version number of the GTK library.
|
|
|
|
|
* (e.g. in GTK version 3.1.5 this is 1.)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* This function is in the library, so it represents the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* your code is are running against. Contrast with the
|
|
|
|
|
* #GTK_MINOR_VERSION macro, which represents the minor version of the
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* GTK headers you have included when compiling your code.
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the minor version number of the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
2010-09-09 08:03:22 +00:00
|
|
|
|
gtk_get_minor_version (void)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_MINOR_VERSION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-09 08:03:22 +00:00
|
|
|
|
* gtk_get_micro_version:
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns the micro version number of the GTK library.
|
|
|
|
|
* (e.g. in GTK version 3.1.5 this is 5.)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* This function is in the library, so it represents the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* your code is are running against. Contrast with the
|
|
|
|
|
* #GTK_MICRO_VERSION macro, which represents the micro version of the
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* GTK headers you have included when compiling your code.
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the micro version number of the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
2010-09-09 08:03:22 +00:00
|
|
|
|
gtk_get_micro_version (void)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_MICRO_VERSION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-09 08:03:22 +00:00
|
|
|
|
* gtk_get_binary_age:
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2014-02-04 23:01:24 +00:00
|
|
|
|
* Returns the binary age as passed to `libtool`
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* when building the GTK library the process is running against.
|
2014-02-04 23:01:24 +00:00
|
|
|
|
* If `libtool` means nothing to you, don't
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* worry about it.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the binary age of the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
2010-09-09 08:03:22 +00:00
|
|
|
|
gtk_get_binary_age (void)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_BINARY_AGE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2010-09-09 08:03:22 +00:00
|
|
|
|
* gtk_get_interface_age:
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*
|
2014-02-04 23:01:24 +00:00
|
|
|
|
* Returns the interface age as passed to `libtool`
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* when building the GTK library the process is running against.
|
2014-02-04 23:01:24 +00:00
|
|
|
|
* If `libtool` means nothing to you, don't
|
2010-09-08 14:36:10 +00:00
|
|
|
|
* worry about it.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the interface age of the GTK library
|
2010-09-08 14:36:10 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
2010-09-09 08:03:22 +00:00
|
|
|
|
gtk_get_interface_age (void)
|
2010-09-08 14:36:10 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_INTERFACE_AGE;
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-28 14:23:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_check_version:
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* @required_major: the required major version
|
|
|
|
|
* @required_minor: the required minor version
|
|
|
|
|
* @required_micro: the required micro version
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Checks that the GTK library in use is compatible with the
|
2003-10-28 14:23:28 +00:00
|
|
|
|
* given version. Generally you would pass in the constants
|
|
|
|
|
* #GTK_MAJOR_VERSION, #GTK_MINOR_VERSION, #GTK_MICRO_VERSION
|
|
|
|
|
* as the three arguments to this function; that produces
|
|
|
|
|
* a check that the library in use is compatible with
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* the version of GTK the application or module was compiled
|
2003-10-28 14:23:28 +00:00
|
|
|
|
* against.
|
|
|
|
|
*
|
|
|
|
|
* Compatibility is defined by two things: first the version
|
|
|
|
|
* of the running library is newer than the version
|
|
|
|
|
* @required_major.required_minor.@required_micro. Second
|
|
|
|
|
* the running library must be binary compatible with the
|
|
|
|
|
* version @required_major.required_minor.@required_micro
|
|
|
|
|
* (same major version.)
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* This function is primarily for GTK modules; the module
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* can call this function to check that it wasn’t loaded
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* into an incompatible version of GTK. However, such a
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* check isn’t completely reliable, since the module may be
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* linked against an old version of GTK and calling the
|
2003-10-28 14:23:28 +00:00
|
|
|
|
* old version of gtk_check_version(), but still get loaded
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* into an application using a newer version of GTK.
|
2003-10-28 14:23:28 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: (nullable): %NULL if the GTK library is compatible with the
|
2003-10-28 14:23:28 +00:00
|
|
|
|
* given version, or a string describing the version mismatch.
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* The returned string is owned by GTK and should not be modified
|
2003-10-28 14:23:28 +00:00
|
|
|
|
* or freed.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
2007-11-19 05:34:19 +00:00
|
|
|
|
const gchar*
|
1998-08-21 02:22:06 +00:00
|
|
|
|
gtk_check_version (guint required_major,
|
2011-01-04 22:32:12 +00:00
|
|
|
|
guint required_minor,
|
|
|
|
|
guint required_micro)
|
1998-08-21 02:22:06 +00:00
|
|
|
|
{
|
2002-08-04 21:38:17 +00:00
|
|
|
|
gint gtk_effective_micro = 100 * GTK_MINOR_VERSION + GTK_MICRO_VERSION;
|
|
|
|
|
gint required_effective_micro = 100 * required_minor + required_micro;
|
|
|
|
|
|
1998-08-21 02:22:06 +00:00
|
|
|
|
if (required_major > GTK_MAJOR_VERSION)
|
2019-04-05 05:07:32 +00:00
|
|
|
|
return "GTK version too old (major mismatch)";
|
1998-08-21 02:22:06 +00:00
|
|
|
|
if (required_major < GTK_MAJOR_VERSION)
|
2019-04-05 05:07:32 +00:00
|
|
|
|
return "GTK version too new (major mismatch)";
|
2002-08-04 21:38:17 +00:00
|
|
|
|
if (required_effective_micro < gtk_effective_micro - GTK_BINARY_AGE)
|
2019-04-05 05:07:32 +00:00
|
|
|
|
return "GTK version too new (micro mismatch)";
|
2002-08-04 21:38:17 +00:00
|
|
|
|
if (required_effective_micro > gtk_effective_micro)
|
2019-04-05 05:07:32 +00:00
|
|
|
|
return "GTK version too old (micro mismatch)";
|
1998-08-21 02:22:06 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-13 04:56:07 +00:00
|
|
|
|
/* This checks to see if the process is running suid or sgid
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* at the current time. If so, we don’t allow GTK to be initialized.
|
2001-02-13 04:56:07 +00:00
|
|
|
|
* This is meant to be a mild check - we only error out if we
|
|
|
|
|
* can prove the programmer is doing something wrong, not if
|
|
|
|
|
* they could be doing something wrong. For this reason, we
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* don’t use issetugid() on BSD or prctl (PR_GET_DUMPABLE).
|
2001-02-13 04:56:07 +00:00
|
|
|
|
*/
|
|
|
|
|
static gboolean
|
|
|
|
|
check_setugid (void)
|
|
|
|
|
{
|
2001-08-24 20:09:26 +00:00
|
|
|
|
/* this isn't at all relevant on MS Windows and doesn't compile ... --hb */
|
2001-02-19 21:54:04 +00:00
|
|
|
|
#ifndef G_OS_WIN32
|
2001-02-13 04:56:07 +00:00
|
|
|
|
uid_t ruid, euid, suid; /* Real, effective and saved user ID's */
|
|
|
|
|
gid_t rgid, egid, sgid; /* Real, effective and saved group ID's */
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_GETRESUID
|
|
|
|
|
if (getresuid (&ruid, &euid, &suid) != 0 ||
|
|
|
|
|
getresgid (&rgid, &egid, &sgid) != 0)
|
|
|
|
|
#endif /* HAVE_GETRESUID */
|
|
|
|
|
{
|
|
|
|
|
suid = ruid = getuid ();
|
|
|
|
|
sgid = rgid = getgid ();
|
|
|
|
|
euid = geteuid ();
|
|
|
|
|
egid = getegid ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ruid != euid || ruid != suid ||
|
|
|
|
|
rgid != egid || rgid != sgid)
|
|
|
|
|
{
|
|
|
|
|
g_warning ("This process is currently running setuid or setgid.\n"
|
2019-04-05 05:07:32 +00:00
|
|
|
|
"This is not a supported use of GTK. You must create a helper\n"
|
2011-01-04 22:32:12 +00:00
|
|
|
|
"program instead. For further details, see:\n\n"
|
|
|
|
|
" http://www.gtk.org/setuid.html\n\n"
|
2019-04-05 05:07:32 +00:00
|
|
|
|
"Refusing to initialize GTK.");
|
2001-02-13 04:56:07 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2001-02-19 21:54:04 +00:00
|
|
|
|
#endif
|
2001-02-13 04:56:07 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-10 16:56:54 +00:00
|
|
|
|
static gboolean do_setlocale = TRUE;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_disable_setlocale:
|
2017-03-17 20:11:26 +00:00
|
|
|
|
*
|
|
|
|
|
* Prevents gtk_init(), gtk_init_check() and
|
2004-11-05 07:18:28 +00:00
|
|
|
|
* gtk_parse_args() from automatically
|
2014-02-04 23:21:13 +00:00
|
|
|
|
* calling `setlocale (LC_ALL, "")`. You would
|
2011-01-04 16:18:42 +00:00
|
|
|
|
* want to use this function if you wanted to set the locale for
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* your program to something other than the user’s locale, or if
|
More precise documentation about underscores and mnemonics. (#66380)
* gtk/gtklabel.c (gtk_label_new_with_mnemonic),
gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
documentation about underscores and mnemonics. (#66380)
* gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
cyclic reference in docs.
* gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
of default value. (#65402)
* gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale):
Markup fixes.
* gdk-pixbuf-io.c, gdk-pixbuf-animation.c, gdk-pixbuf-data.c,
gdk-pixbuf-loader.c, gdk-pixbuf-scale.c, gdk-pixbuf-util.c,
gdk-pixdata.c: Markup fixes.
* gtk/text_widget.sgml: More precise wording. (#63388)
* gtk/tmpl/gtksignal.sgml (GTK_SIGNAL_OFFSET): Add docs.
* gtk/resources.sgml: Fix markup of mail URLs.
* gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkobject.sgml: Markup fixes.
* gtk/tmpl/gtktoolbar.sgml (gtk_toolbar_{prepend,append}_element):
Expand documentation. (#60471)
* gtk/tmpl/gtkmain.sgml: Remove misleading information about
gtk_set_locale(). (#65758)
2001-12-20 23:09:29 +00:00
|
|
|
|
* you wanted to set different values for different locale categories.
|
2001-10-10 16:56:54 +00:00
|
|
|
|
*
|
|
|
|
|
* Most programs should not need to call this function.
|
|
|
|
|
**/
|
2001-10-19 15:27:43 +00:00
|
|
|
|
void
|
2001-10-10 16:56:54 +00:00
|
|
|
|
gtk_disable_setlocale (void)
|
|
|
|
|
{
|
2007-02-16 06:09:02 +00:00
|
|
|
|
if (pre_initialized)
|
2001-10-10 16:56:54 +00:00
|
|
|
|
g_warning ("gtk_disable_setlocale() must be called before gtk_init()");
|
|
|
|
|
|
|
|
|
|
do_setlocale = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#ifdef G_PLATFORM_WIN32
|
2002-04-18 11:21:21 +00:00
|
|
|
|
#undef gtk_init_check
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#endif
|
2002-04-18 11:21:21 +00:00
|
|
|
|
|
2006-10-10 21:51:11 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
|
|
|
|
|
static char *iso639_to_check = NULL;
|
|
|
|
|
static char *iso3166_to_check = NULL;
|
|
|
|
|
static char *script_to_check = NULL;
|
|
|
|
|
static gboolean setlocale_called = FALSE;
|
|
|
|
|
|
|
|
|
|
static BOOL CALLBACK
|
|
|
|
|
enum_locale_proc (LPTSTR locale)
|
|
|
|
|
{
|
|
|
|
|
LCID lcid;
|
|
|
|
|
char iso639[10];
|
|
|
|
|
char iso3166[10];
|
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lcid = strtoul (locale, &endptr, 16);
|
|
|
|
|
if (*endptr == '\0' &&
|
|
|
|
|
GetLocaleInfo (lcid, LOCALE_SISO639LANGNAME, iso639, sizeof (iso639)) &&
|
|
|
|
|
GetLocaleInfo (lcid, LOCALE_SISO3166CTRYNAME, iso3166, sizeof (iso3166)))
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (iso639, iso639_to_check) == 0 &&
|
2011-01-04 22:32:12 +00:00
|
|
|
|
((iso3166_to_check != NULL &&
|
|
|
|
|
strcmp (iso3166, iso3166_to_check) == 0) ||
|
|
|
|
|
(iso3166_to_check == NULL &&
|
|
|
|
|
SUBLANGID (LANGIDFROMLCID (lcid)) == SUBLANG_DEFAULT)))
|
|
|
|
|
{
|
|
|
|
|
char language[100], country[100];
|
|
|
|
|
|
|
|
|
|
if (script_to_check != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* If lcid is the "other" script for this language,
|
|
|
|
|
* return TRUE, i.e. continue looking.
|
|
|
|
|
*/
|
|
|
|
|
if (strcmp (script_to_check, "Latn") == 0)
|
|
|
|
|
{
|
|
|
|
|
switch (LANGIDFROMLCID (lcid))
|
|
|
|
|
{
|
|
|
|
|
case MAKELANGID (LANG_AZERI, SUBLANG_AZERI_CYRILLIC):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_UZBEK, SUBLANG_UZBEK_CYRILLIC):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_SERBIAN, SUBLANG_SERBIAN_CYRILLIC):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_SERBIAN, 0x07):
|
|
|
|
|
/* Serbian in Bosnia and Herzegovina, Cyrillic */
|
|
|
|
|
return TRUE;
|
2018-06-10 21:02:56 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (script_to_check, "Cyrl") == 0)
|
|
|
|
|
{
|
|
|
|
|
switch (LANGIDFROMLCID (lcid))
|
|
|
|
|
{
|
|
|
|
|
case MAKELANGID (LANG_AZERI, SUBLANG_AZERI_LATIN):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_UZBEK, SUBLANG_UZBEK_LATIN):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_SERBIAN, SUBLANG_SERBIAN_LATIN):
|
|
|
|
|
return TRUE;
|
|
|
|
|
case MAKELANGID (LANG_SERBIAN, 0x06):
|
|
|
|
|
/* Serbian in Bosnia and Herzegovina, Latin */
|
|
|
|
|
return TRUE;
|
2018-06-10 21:02:56 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetThreadLocale (lcid);
|
|
|
|
|
|
|
|
|
|
if (GetLocaleInfo (lcid, LOCALE_SENGLANGUAGE, language, sizeof (language)) &&
|
|
|
|
|
GetLocaleInfo (lcid, LOCALE_SENGCOUNTRY, country, sizeof (country)))
|
|
|
|
|
{
|
2019-05-21 05:15:16 +00:00
|
|
|
|
char str[300];
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2019-05-21 05:15:16 +00:00
|
|
|
|
strcpy (str, language);
|
|
|
|
|
strcat (str, "_");
|
|
|
|
|
strcat (str, country);
|
|
|
|
|
|
|
|
|
|
if (setlocale (LC_ALL, str) != NULL)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
setlocale_called = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2006-10-10 21:51:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
static void
|
2008-06-11 23:40:35 +00:00
|
|
|
|
setlocale_initialization (void)
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
{
|
2008-06-11 23:40:35 +00:00
|
|
|
|
static gboolean initialized = FALSE;
|
2001-10-10 16:56:54 +00:00
|
|
|
|
|
2008-06-11 23:40:35 +00:00
|
|
|
|
if (initialized)
|
2007-02-16 06:09:02 +00:00
|
|
|
|
return;
|
2008-06-11 23:40:35 +00:00
|
|
|
|
initialized = TRUE;
|
2007-02-16 06:09:02 +00:00
|
|
|
|
|
2001-10-10 16:56:54 +00:00
|
|
|
|
if (do_setlocale)
|
2002-02-13 17:48:01 +00:00
|
|
|
|
{
|
2006-10-10 21:51:11 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
/* If some of the POSIXish environment variables are set, set
|
|
|
|
|
* the Win32 thread locale correspondingly.
|
|
|
|
|
*/
|
|
|
|
|
char *p = getenv ("LC_ALL");
|
|
|
|
|
if (p == NULL)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
p = getenv ("LANG");
|
2006-10-10 21:51:11 +00:00
|
|
|
|
|
|
|
|
|
if (p != NULL)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
{
|
|
|
|
|
p = g_strdup (p);
|
|
|
|
|
if (strcmp (p, "C") == 0)
|
|
|
|
|
SetThreadLocale (LOCALE_SYSTEM_DEFAULT);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Check if one of the supported locales match the
|
|
|
|
|
* environment variable. If so, use that locale.
|
|
|
|
|
*/
|
|
|
|
|
iso639_to_check = p;
|
|
|
|
|
iso3166_to_check = strchr (iso639_to_check, '_');
|
|
|
|
|
if (iso3166_to_check != NULL)
|
|
|
|
|
{
|
|
|
|
|
*iso3166_to_check++ = '\0';
|
|
|
|
|
|
|
|
|
|
script_to_check = strchr (iso3166_to_check, '@');
|
|
|
|
|
if (script_to_check != NULL)
|
|
|
|
|
*script_to_check++ = '\0';
|
|
|
|
|
|
|
|
|
|
/* Handle special cases. */
|
|
|
|
|
|
|
|
|
|
/* The standard code for Serbia and Montenegro was
|
|
|
|
|
* "CS", but MSFT uses for some reason "SP". By now
|
|
|
|
|
* (October 2006), SP has split into two, "RS" and
|
|
|
|
|
* "ME", but don't bother trying to handle those
|
|
|
|
|
* yet. Do handle the even older "YU", though.
|
|
|
|
|
*/
|
|
|
|
|
if (strcmp (iso3166_to_check, "CS") == 0 ||
|
|
|
|
|
strcmp (iso3166_to_check, "YU") == 0)
|
2018-06-10 21:02:56 +00:00
|
|
|
|
iso3166_to_check = (char *) "SP";
|
2011-01-04 22:32:12 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
script_to_check = strchr (iso639_to_check, '@');
|
|
|
|
|
if (script_to_check != NULL)
|
|
|
|
|
*script_to_check++ = '\0';
|
|
|
|
|
/* LANG_SERBIAN == LANG_CROATIAN, recognize just "sr" */
|
|
|
|
|
if (strcmp (iso639_to_check, "sr") == 0)
|
2018-06-10 21:02:56 +00:00
|
|
|
|
iso3166_to_check = (char *) "SP";
|
2011-01-04 22:32:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EnumSystemLocales (enum_locale_proc, LCID_SUPPORTED);
|
|
|
|
|
}
|
|
|
|
|
g_free (p);
|
|
|
|
|
}
|
2006-10-10 21:51:11 +00:00
|
|
|
|
if (!setlocale_called)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
setlocale (LC_ALL, "");
|
2006-10-10 21:51:11 +00:00
|
|
|
|
#else
|
2002-02-13 17:48:01 +00:00
|
|
|
|
if (!setlocale (LC_ALL, ""))
|
2011-01-04 22:32:12 +00:00
|
|
|
|
g_warning ("Locale not supported by C library.\n\tUsing the fallback 'C' locale.");
|
2006-10-10 21:51:11 +00:00
|
|
|
|
#endif
|
2002-02-13 17:48:01 +00:00
|
|
|
|
}
|
2008-06-11 23:40:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-18 14:31:22 +00:00
|
|
|
|
/* Return TRUE if module_to_check causes version conflicts.
|
|
|
|
|
* If module_to_check is NULL, check the main module.
|
|
|
|
|
*/
|
|
|
|
|
static gboolean
|
|
|
|
|
_gtk_module_has_mixed_deps (GModule *module_to_check)
|
|
|
|
|
{
|
|
|
|
|
GModule *module;
|
|
|
|
|
gpointer func;
|
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
|
|
if (!module_to_check)
|
|
|
|
|
module = g_module_open (NULL, 0);
|
|
|
|
|
else
|
|
|
|
|
module = module_to_check;
|
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "gtk_progress_get_type", &func))
|
|
|
|
|
result = TRUE;
|
|
|
|
|
else if (g_module_symbol (module, "gtk_misc_get_type", &func))
|
|
|
|
|
result = TRUE;
|
|
|
|
|
else
|
|
|
|
|
result = FALSE;
|
|
|
|
|
|
|
|
|
|
if (!module_to_check)
|
|
|
|
|
g_module_close (module);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-11 23:40:35 +00:00
|
|
|
|
static void
|
2016-12-28 13:49:37 +00:00
|
|
|
|
do_pre_parse_initialization (void)
|
2008-06-11 23:40:35 +00:00
|
|
|
|
{
|
|
|
|
|
const gchar *env_string;
|
2016-03-14 10:38:23 +00:00
|
|
|
|
double slowdown;
|
2016-12-28 13:49:37 +00:00
|
|
|
|
|
2008-06-11 23:40:35 +00:00
|
|
|
|
if (pre_initialized)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pre_initialized = TRUE;
|
1998-12-15 07:32:11 +00:00
|
|
|
|
|
2011-02-08 18:49:16 +00:00
|
|
|
|
if (_gtk_module_has_mixed_deps (NULL))
|
2019-04-05 05:07:32 +00:00
|
|
|
|
g_error ("GTK 2/3 symbols detected. Using GTK 2/3 and GTK 4 in the same process is not supported");
|
2010-06-19 02:27:26 +00:00
|
|
|
|
|
2016-11-24 00:31:16 +00:00
|
|
|
|
gdk_pre_parse ();
|
2011-02-08 18:49:16 +00:00
|
|
|
|
|
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
2002-01-08 00:04:57 +00:00
|
|
|
|
env_string = g_getenv ("GTK_DEBUG");
|
1998-10-25 19:30:02 +00:00
|
|
|
|
if (env_string != NULL)
|
|
|
|
|
{
|
2019-10-02 19:35:20 +00:00
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
2016-05-05 22:51:30 +00:00
|
|
|
|
debug_flags[0].flags = g_parse_debug_string (env_string,
|
|
|
|
|
gtk_debug_keys,
|
|
|
|
|
G_N_ELEMENTS (gtk_debug_keys));
|
2018-07-07 09:37:24 +00:00
|
|
|
|
any_display_debug_flags_set = debug_flags[0].flags > 0;
|
2019-10-02 19:35:20 +00:00
|
|
|
|
#else
|
|
|
|
|
g_warning ("GTK_DEBUG set but ignored because gtk isn't built with G_ENABLE_DEBUG");
|
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
1998-10-25 19:30:02 +00:00
|
|
|
|
env_string = NULL;
|
|
|
|
|
}
|
1998-02-19 18:02:03 +00:00
|
|
|
|
|
2016-03-14 10:38:23 +00:00
|
|
|
|
env_string = g_getenv ("GTK_SLOWDOWN");
|
|
|
|
|
if (env_string)
|
|
|
|
|
{
|
|
|
|
|
slowdown = g_ascii_strtod (env_string, NULL);
|
|
|
|
|
_gtk_set_slowdown (slowdown);
|
|
|
|
|
}
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
}
|
1998-10-25 19:30:02 +00:00
|
|
|
|
|
2005-08-01 13:52:29 +00:00
|
|
|
|
static void
|
|
|
|
|
gettext_initialization (void)
|
|
|
|
|
{
|
2008-06-11 23:40:35 +00:00
|
|
|
|
setlocale_initialization ();
|
|
|
|
|
|
2005-08-01 13:52:29 +00:00
|
|
|
|
#ifdef ENABLE_NLS
|
2011-10-22 06:48:13 +00:00
|
|
|
|
bindtextdomain (GETTEXT_PACKAGE, _gtk_get_localedir ());
|
|
|
|
|
bindtextdomain (GETTEXT_PACKAGE "-properties", _gtk_get_localedir ());
|
2005-08-01 13:52:29 +00:00
|
|
|
|
# ifdef HAVE_BIND_TEXTDOMAIN_CODESET
|
|
|
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
|
|
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE "-properties", "UTF-8");
|
|
|
|
|
# endif
|
2016-12-28 13:49:37 +00:00
|
|
|
|
#endif
|
2005-08-01 13:52:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 04:16:39 +00:00
|
|
|
|
static void
|
|
|
|
|
default_display_notify_cb (GdkDisplayManager *dm)
|
|
|
|
|
{
|
2018-03-06 23:57:16 +00:00
|
|
|
|
debug_flags[0].display = gdk_display_get_default ();
|
2015-01-09 04:16:39 +00:00
|
|
|
|
_gtk_accessibility_init ();
|
|
|
|
|
}
|
|
|
|
|
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
static void
|
2016-12-28 13:49:37 +00:00
|
|
|
|
do_post_parse_initialization (void)
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
{
|
2015-10-06 22:00:35 +00:00
|
|
|
|
GdkDisplayManager *display_manager;
|
|
|
|
|
|
2005-05-02 13:41:32 +00:00
|
|
|
|
if (gtk_initialized)
|
|
|
|
|
return;
|
|
|
|
|
|
2005-08-01 13:52:29 +00:00
|
|
|
|
gettext_initialization ();
|
|
|
|
|
|
2009-10-06 11:53:22 +00:00
|
|
|
|
#ifdef SIGPIPE
|
2009-10-01 15:41:17 +00:00
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
2009-10-06 11:53:22 +00:00
|
|
|
|
#endif
|
2009-10-01 15:41:17 +00:00
|
|
|
|
|
2013-12-10 21:27:24 +00:00
|
|
|
|
gtk_widget_set_default_direction (gtk_get_locale_direction ());
|
2000-10-22 13:00:13 +00:00
|
|
|
|
|
2017-01-18 21:41:20 +00:00
|
|
|
|
gsk_ensure_resources ();
|
2013-03-24 08:16:20 +00:00
|
|
|
|
_gtk_ensure_resources ();
|
2012-01-12 18:14:33 +00:00
|
|
|
|
|
2008-06-24 19:11:30 +00:00
|
|
|
|
_gtk_accel_map_init ();
|
2004-09-01 20:30:24 +00:00
|
|
|
|
|
1998-06-10 07:32:52 +00:00
|
|
|
|
gtk_initialized = TRUE;
|
1998-08-17 02:41:42 +00:00
|
|
|
|
|
2019-05-27 12:59:36 +00:00
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
|
gtk_print_backends_init ();
|
|
|
|
|
#endif
|
|
|
|
|
gtk_im_modules_init ();
|
|
|
|
|
gtk_media_file_extension_init ();
|
|
|
|
|
|
2015-10-06 22:00:35 +00:00
|
|
|
|
display_manager = gdk_display_manager_get ();
|
|
|
|
|
if (gdk_display_manager_get_default_display (display_manager) != NULL)
|
2018-02-18 09:34:52 +00:00
|
|
|
|
default_display_notify_cb (display_manager);
|
2015-10-06 22:00:35 +00:00
|
|
|
|
|
|
|
|
|
g_signal_connect (display_manager, "notify::default-display",
|
2015-01-09 04:16:39 +00:00
|
|
|
|
G_CALLBACK (default_display_notify_cb),
|
|
|
|
|
NULL);
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-11 05:16:35 +00:00
|
|
|
|
guint
|
|
|
|
|
gtk_get_display_debug_flags (GdkDisplay *display)
|
|
|
|
|
{
|
2016-05-05 22:51:30 +00:00
|
|
|
|
gint i;
|
|
|
|
|
|
2020-02-19 00:20:19 +00:00
|
|
|
|
if (display == NULL)
|
|
|
|
|
display = gdk_display_get_default ();
|
|
|
|
|
|
2016-05-05 22:51:30 +00:00
|
|
|
|
for (i = 0; i < N_DEBUG_DISPLAYS; i++)
|
|
|
|
|
{
|
|
|
|
|
if (debug_flags[i].display == display)
|
|
|
|
|
return debug_flags[i].flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
2016-03-11 05:16:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-07 09:37:24 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_get_any_display_debug_flag_set (void)
|
|
|
|
|
{
|
|
|
|
|
return any_display_debug_flags_set;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-11 05:16:35 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_set_display_debug_flags (GdkDisplay *display,
|
|
|
|
|
guint flags)
|
|
|
|
|
{
|
2016-05-05 22:51:30 +00:00
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < N_DEBUG_DISPLAYS; i++)
|
|
|
|
|
{
|
|
|
|
|
if (debug_flags[i].display == NULL)
|
|
|
|
|
debug_flags[i].display = display;
|
|
|
|
|
|
|
|
|
|
if (debug_flags[i].display == display)
|
|
|
|
|
{
|
|
|
|
|
debug_flags[i].flags = flags;
|
2018-07-07 09:37:24 +00:00
|
|
|
|
if (flags > 0)
|
|
|
|
|
any_display_debug_flags_set = TRUE;
|
|
|
|
|
|
2016-05-05 22:51:30 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-11 05:16:35 +00:00
|
|
|
|
}
|
Make gtk argument parsing use goption. Add gtk_get_option_group and
2004-09-05 Anders Carlsson <andersca@gnome.org>
* gdk/gdk.c: (gdk_arg_class_cb), (gdk_arg_name_cb),
(gdk_add_option_entries_libgtk_only), (gdk_pre_parse_libgtk_only),
(gdk_parse_args):
* gdk/gdk.h:
* gdk/gdkinternals.h:
* gdk/linux-fb/gdkmain-fb.c: (_gdk_windowing_init):
* gdk/win32/gdkmain-win32.c: (_gdk_windowing_init):
* gdk/x11/gdkdisplay-x11.c: (gdk_display_open):
* gdk/x11/gdkmain-x11.c: (_gdk_windowing_init):
* gtk/gtkmain.c: (gtk_arg_debug_cb), (gtk_arg_no_debug_cb),
(gtk_arg_module_cb), (gtk_arg_warnings_cb),
(do_pre_parse_initialization), (do_post_parse_initialization),
(pre_parse_hook), (post_parse_hook), (gtk_get_option_group),
(gtk_init_with_args), (gtk_parse_args):
* gtk/gtkmain.h:
Make gtk argument parsing use goption. Add gtk_get_option_group and
gtk_init_with_args.
* tests/testtreemodel.c: (main):
Use gtk_init_with_args.
2004-09-05 15:09:55 +00:00
|
|
|
|
|
2010-09-08 15:17:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_debug_flags:
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns the GTK debug flags.
|
2010-12-17 19:27:48 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* This function is intended for GTK modules that want
|
|
|
|
|
* to adjust their debug output based on GTK debug flags.
|
2010-12-17 19:27:48 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Returns: the GTK debug flags.
|
2010-09-08 15:17:57 +00:00
|
|
|
|
*/
|
|
|
|
|
guint
|
|
|
|
|
gtk_get_debug_flags (void)
|
|
|
|
|
{
|
2019-05-25 15:38:26 +00:00
|
|
|
|
if (gtk_get_any_display_debug_flag_set ())
|
|
|
|
|
return gtk_get_display_debug_flags (gdk_display_get_default ());
|
|
|
|
|
|
|
|
|
|
return 0;
|
2010-09-08 15:17:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_set_debug_flags:
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Sets the GTK debug flags.
|
2010-09-08 15:17:57 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_set_debug_flags (guint flags)
|
|
|
|
|
{
|
2016-03-11 05:16:35 +00:00
|
|
|
|
gtk_set_display_debug_flags (gdk_display_get_default (), flags);
|
2010-09-08 15:17:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-31 17:30:05 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_simulate_touchscreen (void)
|
|
|
|
|
{
|
|
|
|
|
static gint test_touchscreen;
|
|
|
|
|
|
|
|
|
|
if (test_touchscreen == 0)
|
|
|
|
|
test_touchscreen = g_getenv ("GTK_TEST_TOUCHSCREEN") != NULL ? 1 : -1;
|
|
|
|
|
|
2016-03-11 05:16:35 +00:00
|
|
|
|
return test_touchscreen > 0 || (gtk_get_debug_flags () & GTK_DEBUG_TOUCHSCREEN) != 0;
|
2015-07-31 17:30:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#ifdef G_PLATFORM_WIN32
|
2002-06-20 23:29:19 +00:00
|
|
|
|
#undef gtk_init_check
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#endif
|
2002-06-20 23:29:19 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_init_check:
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* This function does the same work as gtk_init() with only a single
|
|
|
|
|
* change: It does not terminate the program if the windowing system
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* can’t be initialized. Instead it returns %FALSE on failure.
|
2002-06-20 23:29:19 +00:00
|
|
|
|
*
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* This way the application can fall back to some other means of
|
|
|
|
|
* communication with the user - for example a curses or command line
|
|
|
|
|
* interface.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the windowing system has been successfully
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* initialized, %FALSE otherwise
|
|
|
|
|
*/
|
2002-06-20 23:29:19 +00:00
|
|
|
|
gboolean
|
2016-12-28 13:49:37 +00:00
|
|
|
|
gtk_init_check (void)
|
2002-06-20 23:29:19 +00:00
|
|
|
|
{
|
2014-05-10 17:22:17 +00:00
|
|
|
|
gboolean ret;
|
|
|
|
|
|
2016-12-28 12:46:56 +00:00
|
|
|
|
if (gtk_initialized)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
gettext_initialization ();
|
|
|
|
|
|
|
|
|
|
if (!check_setugid ())
|
2002-06-20 23:29:19 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
2016-12-28 13:49:37 +00:00
|
|
|
|
do_pre_parse_initialization ();
|
|
|
|
|
do_post_parse_initialization ();
|
2016-12-28 12:46:56 +00:00
|
|
|
|
|
2016-11-24 00:31:16 +00:00
|
|
|
|
ret = gdk_display_open_default () != NULL;
|
2014-05-10 17:22:17 +00:00
|
|
|
|
|
2018-03-11 12:14:14 +00:00
|
|
|
|
if (ret && (gtk_get_debug_flags () & GTK_DEBUG_INTERACTIVE))
|
2014-05-10 17:22:17 +00:00
|
|
|
|
gtk_window_set_interactive_debugging (TRUE);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2002-06-20 23:29:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#ifdef G_PLATFORM_WIN32
|
2000-08-19 21:46:05 +00:00
|
|
|
|
#undef gtk_init
|
2004-08-09 15:50:29 +00:00
|
|
|
|
#endif
|
2000-08-19 21:46:05 +00:00
|
|
|
|
|
2002-06-20 23:29:19 +00:00
|
|
|
|
/**
|
2002-08-07 22:23:18 +00:00
|
|
|
|
* gtk_init:
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Call this function before using any other GTK functions in your GUI
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* applications. It will initialize everything needed to operate the
|
2011-01-04 16:18:42 +00:00
|
|
|
|
* toolkit and parses some standard command line options.
|
2004-11-05 07:18:28 +00:00
|
|
|
|
*
|
2016-12-28 13:49:37 +00:00
|
|
|
|
* If you are using #GtkApplication, you don't have to call gtk_init()
|
|
|
|
|
* or gtk_init_check(); the #GtkApplication::startup handler
|
2014-05-13 02:58:47 +00:00
|
|
|
|
* does it for you.
|
|
|
|
|
*
|
2011-01-04 16:18:42 +00:00
|
|
|
|
* This function will terminate your program if it was unable to
|
|
|
|
|
* initialize the windowing system for some reason. If you want
|
|
|
|
|
* your program to fall back to a textual interface you want to
|
|
|
|
|
* call gtk_init_check() instead.
|
2009-10-01 15:41:17 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* GTK calls `signal (SIGPIPE, SIG_IGN)`
|
2009-10-01 15:41:17 +00:00
|
|
|
|
* during initialization, to ignore SIGPIPE signals, since these are
|
|
|
|
|
* almost never wanted in graphical applications. If you do need to
|
|
|
|
|
* handle SIGPIPE for some reason, reset the handler after gtk_init(),
|
|
|
|
|
* but notice that other libraries (e.g. libdbus or gvfs) might do
|
|
|
|
|
* similar things.
|
2011-01-04 16:18:42 +00:00
|
|
|
|
*/
|
1999-02-21 20:55:04 +00:00
|
|
|
|
void
|
2016-12-28 13:49:37 +00:00
|
|
|
|
gtk_init (void)
|
1999-02-21 20:55:04 +00:00
|
|
|
|
{
|
2016-12-28 13:49:37 +00:00
|
|
|
|
if (!gtk_init_check ())
|
1999-02-21 20:55:04 +00:00
|
|
|
|
{
|
2017-11-01 17:26:34 +00:00
|
|
|
|
const char *display_name_arg = NULL;
|
2007-10-15 13:26:34 +00:00
|
|
|
|
if (display_name_arg == NULL)
|
2016-12-28 12:46:56 +00:00
|
|
|
|
display_name_arg = getenv ("DISPLAY");
|
2007-10-15 13:26:34 +00:00
|
|
|
|
g_warning ("cannot open display: %s", display_name_arg ? display_name_arg : "");
|
2001-07-12 17:50:14 +00:00
|
|
|
|
exit (1);
|
1999-02-21 20:55:04 +00:00
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-11 15:13:34 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
|
|
|
|
|
/* This is relevant when building with gcc for Windows (MinGW),
|
|
|
|
|
* where we want to be struct packing compatible with MSVC,
|
|
|
|
|
* i.e. use the -mms-bitfields switch.
|
|
|
|
|
* For Cygwin there should be no need to be compatible with MSVC,
|
|
|
|
|
* so no need to use G_PLATFORM_WIN32.
|
|
|
|
|
*/
|
2000-08-19 21:46:05 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
check_sizeof_GtkWindow (size_t sizeof_GtkWindow)
|
|
|
|
|
{
|
|
|
|
|
if (sizeof_GtkWindow != sizeof (GtkWindow))
|
|
|
|
|
g_error ("Incompatible build!\n"
|
2019-04-05 05:07:32 +00:00
|
|
|
|
"The code using GTK thinks GtkWindow is of different\n"
|
|
|
|
|
"size than it actually is in this build of GTK.\n"
|
2011-01-04 22:32:12 +00:00
|
|
|
|
"On Windows, this probably means that you have compiled\n"
|
|
|
|
|
"your code with gcc without the -mms-bitfields switch,\n"
|
|
|
|
|
"or that you are using an unsupported compiler.");
|
2002-04-18 11:21:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 05:07:32 +00:00
|
|
|
|
/* In GTK 2.0 the GtkWindow struct actually is the same size in
|
2002-04-18 11:21:21 +00:00
|
|
|
|
* gcc-compiled code on Win32 whether compiled with -fnative-struct or
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* not. Unfortunately this wan’t noticed until after GTK 2.0.1. So,
|
|
|
|
|
* from GTK 2.0.2 on, check some other struct, too, where the use of
|
2002-04-18 11:21:21 +00:00
|
|
|
|
* -fnative-struct still matters. GtkBox is one such.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
check_sizeof_GtkBox (size_t sizeof_GtkBox)
|
|
|
|
|
{
|
|
|
|
|
if (sizeof_GtkBox != sizeof (GtkBox))
|
|
|
|
|
g_error ("Incompatible build!\n"
|
2019-04-05 05:07:32 +00:00
|
|
|
|
"The code using GTK thinks GtkBox is of different\n"
|
|
|
|
|
"size than it actually is in this build of GTK.\n"
|
2011-01-04 22:32:12 +00:00
|
|
|
|
"On Windows, this probably means that you have compiled\n"
|
|
|
|
|
"your code with gcc without the -mms-bitfields switch,\n"
|
|
|
|
|
"or that you are using an unsupported compiler.");
|
2000-08-19 21:46:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* These two functions might get more checks added later, thus pass
|
|
|
|
|
* in the number of extra args.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2017-01-20 10:38:53 +00:00
|
|
|
|
gtk_init_abi_check (int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
|
2000-08-19 21:46:05 +00:00
|
|
|
|
{
|
|
|
|
|
check_sizeof_GtkWindow (sizeof_GtkWindow);
|
2002-04-18 11:21:21 +00:00
|
|
|
|
if (num_checks >= 2)
|
|
|
|
|
check_sizeof_GtkBox (sizeof_GtkBox);
|
2017-01-20 10:38:53 +00:00
|
|
|
|
gtk_init ();
|
2000-08-19 21:46:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gboolean
|
2017-01-20 10:38:53 +00:00
|
|
|
|
gtk_init_check_abi_check (int num_checks, size_t sizeof_GtkWindow, size_t sizeof_GtkBox)
|
2000-08-19 21:46:05 +00:00
|
|
|
|
{
|
|
|
|
|
check_sizeof_GtkWindow (sizeof_GtkWindow);
|
2002-04-18 11:21:21 +00:00
|
|
|
|
if (num_checks >= 2)
|
|
|
|
|
check_sizeof_GtkBox (sizeof_GtkBox);
|
2017-01-20 10:38:53 +00:00
|
|
|
|
return gtk_init_check ();
|
2000-08-19 21:46:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-06-08 17:03:22 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_is_initialized:
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Use this function to check if GTK has been initialized with gtk_init()
|
2018-06-08 17:03:22 +00:00
|
|
|
|
* or gtk_init_check().
|
|
|
|
|
*
|
|
|
|
|
* Returns: the initialization status
|
|
|
|
|
*/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_is_initialized (void)
|
|
|
|
|
{
|
|
|
|
|
return gtk_initialized;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 17:10:59 +00:00
|
|
|
|
|
2013-12-10 21:27:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_locale_direction:
|
|
|
|
|
*
|
|
|
|
|
* Get the direction of the current locale. This is the expected
|
|
|
|
|
* reading direction for text and UI.
|
|
|
|
|
*
|
|
|
|
|
* This function depends on the current locale being set with
|
|
|
|
|
* setlocale() and will default to setting the %GTK_TEXT_DIR_LTR
|
|
|
|
|
* direction otherwise. %GTK_TEXT_DIR_NONE will never be returned.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* GTK sets the default text direction according to the locale
|
2013-12-10 21:27:24 +00:00
|
|
|
|
* during gtk_init(), and you should normally use
|
|
|
|
|
* gtk_widget_get_direction() or gtk_widget_get_default_direction()
|
|
|
|
|
* to obtain the current direcion.
|
|
|
|
|
*
|
|
|
|
|
* This function is only needed rare cases when the locale is
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* changed after GTK has already been initialized. In this case,
|
2013-12-10 21:27:24 +00:00
|
|
|
|
* you can use it to update the default text direction as follows:
|
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2013-12-10 21:27:24 +00:00
|
|
|
|
* setlocale (LC_ALL, new_locale);
|
|
|
|
|
* direction = gtk_get_locale_direction ();
|
|
|
|
|
* gtk_widget_set_default_direction (direction);
|
|
|
|
|
* ]|
|
|
|
|
|
*
|
|
|
|
|
* Returns: the #GtkTextDirection of the current locale
|
|
|
|
|
*/
|
|
|
|
|
GtkTextDirection
|
|
|
|
|
gtk_get_locale_direction (void)
|
|
|
|
|
{
|
|
|
|
|
/* Translate to default:RTL if you want your widgets
|
|
|
|
|
* to be RTL, otherwise translate to default:LTR.
|
|
|
|
|
* Do *not* translate it to "predefinito:LTR", if it
|
|
|
|
|
* it isn't default:LTR or default:RTL it will not work
|
|
|
|
|
*/
|
2013-12-11 01:01:48 +00:00
|
|
|
|
gchar *e = _("default:LTR");
|
|
|
|
|
GtkTextDirection dir = GTK_TEXT_DIR_LTR;
|
|
|
|
|
|
2013-12-10 21:27:24 +00:00
|
|
|
|
if (g_strcmp0 (e, "default:RTL") == 0)
|
|
|
|
|
dir = GTK_TEXT_DIR_RTL;
|
|
|
|
|
else if (g_strcmp0 (e, "default:LTR") != 0)
|
2016-02-28 16:06:25 +00:00
|
|
|
|
g_warning ("Whoever translated default:LTR did so wrongly. Defaulting to LTR.");
|
2013-12-10 21:27:24 +00:00
|
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-20 23:52:16 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_default_language:
|
|
|
|
|
*
|
|
|
|
|
* Returns the #PangoLanguage for the default language currently in
|
|
|
|
|
* effect. (Note that this can change over the life of an
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* application.) The default language is derived from the current
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* locale. It determines, for example, whether GTK uses the
|
Bug 340141 – Update to Pango 1.16 API
2006-12-24 Behdad Esfahbod <behdad@gnome.org>
Bug 340141 – Update to Pango 1.16 API
* gdk/gdkpango.c (layout_iter_get_line_clip_region),
(gdk_pango_layout_line_get_clip_region):
* gtk/gtkcalendar.c (gtk_calendar_size_request):
* gtk/gtkentry.c (gtk_entry_get_pixel_ranges),
(get_layout_position), (gtk_entry_find_position),
(gtk_entry_adjust_scroll):
* gtk/gtkiconview.c (get_pango_text_offsets):
* gtk/gtklabel.c (get_cursor_direction):
* gtk/gtkstyle.c (get_insensitive_layout):
* gtk/gtktextdisplay.c (render_para):
* gtk/gtktextlayout.c (allocate_child_widgets),
(find_display_line_below), (find_display_line_above),
(gtk_text_layout_move_iter_to_previous_line),
(gtk_text_layout_move_iter_to_next_line),
(gtk_text_layout_move_iter_to_line_end),
(gtk_text_layout_iter_starts_line),
(gtk_text_layout_move_iter_to_x):
* gtk/gtktextutil.c (limit_layout_lines):
Use the _readonly version of pango_layout_iter_get_line(),
pango_layout_iter_get_run(), pango_layout_get_line(), and
pango_layout_get_lines().
* gtk/gtkmain.c (gtk_get_default_language): Use
pango_get_default_language().
2006-12-24 05:29:25 +00:00
|
|
|
|
* right-to-left or left-to-right text direction.
|
|
|
|
|
*
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* This function is equivalent to pango_language_get_default().
|
|
|
|
|
* See that function for details.
|
|
|
|
|
*
|
2014-08-21 21:10:32 +00:00
|
|
|
|
* Returns: (transfer none): the default language as a #PangoLanguage,
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* must not be freed
|
|
|
|
|
*/
|
2003-09-20 23:52:16 +00:00
|
|
|
|
PangoLanguage *
|
|
|
|
|
gtk_get_default_language (void)
|
|
|
|
|
{
|
Bug 340141 – Update to Pango 1.16 API
2006-12-24 Behdad Esfahbod <behdad@gnome.org>
Bug 340141 – Update to Pango 1.16 API
* gdk/gdkpango.c (layout_iter_get_line_clip_region),
(gdk_pango_layout_line_get_clip_region):
* gtk/gtkcalendar.c (gtk_calendar_size_request):
* gtk/gtkentry.c (gtk_entry_get_pixel_ranges),
(get_layout_position), (gtk_entry_find_position),
(gtk_entry_adjust_scroll):
* gtk/gtkiconview.c (get_pango_text_offsets):
* gtk/gtklabel.c (get_cursor_direction):
* gtk/gtkstyle.c (get_insensitive_layout):
* gtk/gtktextdisplay.c (render_para):
* gtk/gtktextlayout.c (allocate_child_widgets),
(find_display_line_below), (find_display_line_above),
(gtk_text_layout_move_iter_to_previous_line),
(gtk_text_layout_move_iter_to_next_line),
(gtk_text_layout_move_iter_to_line_end),
(gtk_text_layout_iter_starts_line),
(gtk_text_layout_move_iter_to_x):
* gtk/gtktextutil.c (limit_layout_lines):
Use the _readonly version of pango_layout_iter_get_line(),
pango_layout_iter_get_run(), pango_layout_get_line(), and
pango_layout_get_lines().
* gtk/gtkmain.c (gtk_get_default_language): Use
pango_get_default_language().
2006-12-24 05:29:25 +00:00
|
|
|
|
return pango_language_get_default ();
|
2000-06-21 20:41:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-30 00:05:02 +00:00
|
|
|
|
typedef struct {
|
|
|
|
|
GMainLoop *store_loop;
|
|
|
|
|
guint n_clipboards;
|
2020-01-10 23:04:44 +00:00
|
|
|
|
guint timeout_id;
|
2017-11-30 00:05:02 +00:00
|
|
|
|
} ClipboardStore;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
clipboard_store_finished (GObject *source,
|
|
|
|
|
GAsyncResult *result,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
ClipboardStore *store;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
|
|
if (!gdk_clipboard_store_finish (GDK_CLIPBOARD (source), result, &error))
|
|
|
|
|
{
|
|
|
|
|
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
|
|
|
|
|
{
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_error_free (error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
store = data;
|
|
|
|
|
store->n_clipboards--;
|
|
|
|
|
if (store->n_clipboards == 0)
|
|
|
|
|
g_main_loop_quit (store->store_loop);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 23:04:44 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
sync_timed_out_cb (ClipboardStore *store)
|
|
|
|
|
{
|
|
|
|
|
store->timeout_id = 0;
|
|
|
|
|
g_main_loop_quit (store->store_loop);
|
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-29 23:09:37 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_main_sync (void)
|
|
|
|
|
{
|
2017-11-30 00:05:02 +00:00
|
|
|
|
ClipboardStore store = { NULL, };
|
|
|
|
|
GSList *displays, *l;
|
|
|
|
|
GCancellable *cancel;
|
|
|
|
|
|
|
|
|
|
/* Try storing all clipboard data we have */
|
|
|
|
|
displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
|
2020-01-10 23:00:10 +00:00
|
|
|
|
if (displays == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-11-30 00:05:02 +00:00
|
|
|
|
cancel = g_cancellable_new ();
|
|
|
|
|
|
|
|
|
|
for (l = displays; l; l = l->next)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display = l->data;
|
|
|
|
|
GdkClipboard *clipboard = gdk_display_get_clipboard (display);
|
|
|
|
|
|
|
|
|
|
gdk_clipboard_store_async (clipboard,
|
|
|
|
|
G_PRIORITY_HIGH,
|
|
|
|
|
cancel,
|
|
|
|
|
clipboard_store_finished,
|
|
|
|
|
&store);
|
|
|
|
|
store.n_clipboards++;
|
|
|
|
|
}
|
|
|
|
|
g_slist_free (displays);
|
|
|
|
|
|
|
|
|
|
store.store_loop = g_main_loop_new (NULL, TRUE);
|
2020-01-10 23:04:44 +00:00
|
|
|
|
store.timeout_id = g_timeout_add_seconds (10, (GSourceFunc) sync_timed_out_cb, &store);
|
|
|
|
|
g_source_set_name_by_id (store.timeout_id, "[gtk] gtk_main_sync clipboard store timeout");
|
2017-11-30 00:05:02 +00:00
|
|
|
|
|
|
|
|
|
if (g_main_loop_is_running (store.store_loop))
|
2018-02-02 15:34:40 +00:00
|
|
|
|
g_main_loop_run (store.store_loop);
|
2017-11-30 00:05:02 +00:00
|
|
|
|
|
|
|
|
|
g_cancellable_cancel (cancel);
|
|
|
|
|
g_object_unref (cancel);
|
2020-01-10 23:04:44 +00:00
|
|
|
|
g_clear_handle_id (&store.timeout_id, g_source_remove);
|
|
|
|
|
g_clear_pointer (&store.store_loop, g_main_loop_unref);
|
2017-11-30 00:05:02 +00:00
|
|
|
|
|
2017-11-29 23:09:37 +00:00
|
|
|
|
/* Synchronize the recent manager singleton */
|
|
|
|
|
_gtk_recent_manager_sync ();
|
1997-11-28 01:22:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-03 15:04:56 +00:00
|
|
|
|
static GdkEvent *
|
2018-03-20 14:14:10 +00:00
|
|
|
|
rewrite_event_for_surface (GdkEvent *event,
|
2018-03-21 10:49:14 +00:00
|
|
|
|
GdkSurface *new_surface)
|
2002-03-02 20:37:07 +00:00
|
|
|
|
{
|
2020-02-15 19:06:43 +00:00
|
|
|
|
double x, y;
|
|
|
|
|
|
|
|
|
|
if (!gdk_event_get_coords (event, &x, &y) ||
|
|
|
|
|
!gdk_surface_translate_coordinates (event->any.surface, new_surface, &x, &y))
|
|
|
|
|
{
|
|
|
|
|
x = y = 0;
|
|
|
|
|
}
|
2002-03-02 20:37:07 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
switch ((guint) event->any.type)
|
2002-03-02 20:37:07 +00:00
|
|
|
|
{
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return gdk_event_button_new (event->any.type,
|
|
|
|
|
new_surface,
|
|
|
|
|
event->any.device,
|
|
|
|
|
event->any.source_device,
|
|
|
|
|
event->button.tool,
|
|
|
|
|
event->button.time,
|
|
|
|
|
event->button.state,
|
|
|
|
|
event->button.button,
|
|
|
|
|
x, y,
|
|
|
|
|
NULL); // FIXME copy axes
|
2002-03-02 20:37:07 +00:00
|
|
|
|
case GDK_MOTION_NOTIFY:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return gdk_event_motion_new (new_surface,
|
|
|
|
|
event->any.device,
|
|
|
|
|
event->any.source_device,
|
|
|
|
|
event->motion.tool,
|
|
|
|
|
event->motion.time,
|
|
|
|
|
event->motion.state,
|
|
|
|
|
x, y,
|
|
|
|
|
NULL); // FIXME copy axes
|
2011-12-28 23:06:45 +00:00
|
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
|
case GDK_TOUCH_UPDATE:
|
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
|
case GDK_TOUCH_CANCEL:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return gdk_event_touch_new (event->any.type,
|
|
|
|
|
event->touch.sequence,
|
|
|
|
|
new_surface,
|
|
|
|
|
event->any.device,
|
|
|
|
|
event->any.source_device,
|
|
|
|
|
event->touch.time,
|
|
|
|
|
event->touch.state,
|
|
|
|
|
x, y,
|
|
|
|
|
NULL, // FIXME copy axes
|
|
|
|
|
event->touch.emulating_pointer);
|
2015-07-09 16:47:02 +00:00
|
|
|
|
case GDK_TOUCHPAD_SWIPE:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return gdk_event_touchpad_swipe_new (new_surface,
|
|
|
|
|
event->any.device,
|
|
|
|
|
event->any.source_device,
|
|
|
|
|
event->touchpad_swipe.time,
|
|
|
|
|
event->touchpad_swipe.state,
|
|
|
|
|
event->touchpad_swipe.phase,
|
|
|
|
|
x, y,
|
|
|
|
|
event->touchpad_swipe.n_fingers,
|
|
|
|
|
event->touchpad_swipe.dx,
|
|
|
|
|
event->touchpad_swipe.dy);
|
2015-07-09 16:47:02 +00:00
|
|
|
|
case GDK_TOUCHPAD_PINCH:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return gdk_event_touchpad_pinch_new (new_surface,
|
|
|
|
|
event->any.device,
|
|
|
|
|
event->any.source_device,
|
|
|
|
|
event->touchpad_pinch.time,
|
|
|
|
|
event->touchpad_pinch.state,
|
|
|
|
|
event->touchpad_pinch.phase,
|
|
|
|
|
x, y,
|
|
|
|
|
event->touchpad_pinch.n_fingers,
|
|
|
|
|
event->touchpad_pinch.dx,
|
|
|
|
|
event->touchpad_pinch.dy,
|
|
|
|
|
event->touchpad_pinch.scale,
|
|
|
|
|
event->touchpad_pinch.angle_delta);
|
2002-03-02 20:37:07 +00:00
|
|
|
|
default:
|
2020-02-15 19:06:43 +00:00
|
|
|
|
break;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 19:06:43 +00:00
|
|
|
|
return NULL;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If there is a pointer or keyboard grab in effect with owner_events = TRUE,
|
|
|
|
|
* then what X11 does is deliver the event normally if it was going to this
|
2018-03-20 14:14:10 +00:00
|
|
|
|
* client, otherwise, delivers it in terms of the grab surface. This function
|
2002-03-02 20:37:07 +00:00
|
|
|
|
* rewrites events to the effect that events going to the same window group
|
|
|
|
|
* are delivered normally, otherwise, the event is delivered in terms of the
|
|
|
|
|
* grab window.
|
|
|
|
|
*/
|
|
|
|
|
static GdkEvent *
|
|
|
|
|
rewrite_event_for_grabs (GdkEvent *event)
|
|
|
|
|
{
|
2018-03-20 14:14:10 +00:00
|
|
|
|
GdkSurface *grab_surface;
|
2002-03-02 21:01:20 +00:00
|
|
|
|
GtkWidget *event_widget, *grab_widget;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
gboolean owner_events;
|
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
Mon Apr 29 18:28:00 2002 Owen Taylor <otaylor@redhat.com>
Integrate Erwann Chenede's multihead changes for the gtk/ directory.
* gtk/gtkclipboard.[ch]: Add gtk_clipboard_get_for_display(),
make internals multihead aware.
* gtk/gtkcolorsel.[ch]: Add
gtk_color_selection_set_change_palette_with_screen_hook () [ugh!]
make up for non-multihead safety of
gtk_color_selection_set_change_palette_hook()
* gtk/gtkinvisible.[ch] gtk/gtkmenu.[ch] gtkwindow.[ch]: Add
gtk_{invisible,menu,window}_set_screen(); add "screen" properties
for GtkWindow and GtkMenu.
* gtk/gtkplug.[ch]: Add gtk_plug_construct_for_display(),
gtk_plug_new_for_display(). Multihead fixes.
* gtk/gtkselection.[ch]: Add gtk_selection_owner_set_for_display(),
make internals multihead aware.
* gtk/gtksettings.[ch]: Add gtk_settings_get_for_screen(), get
rid of now-useless gtk_settings_constructor().
* gtk/gtkstyle.[ch]: Add gtk_style_get_font_for_display(), fix
check/radio button indicators bitmap handling to be multihead
safe.
* gtk/gtkwidget.[ch]: Add gtk_widget_get_screen(), gtk_widget_has_screen(),
gtk_widget_get_display(), gtk_widget_get_clipboard(),
gtk_widget_get_root_window().
* gtk/gtkbindings.c gtk/gtkbutton.c gtk/gtkclist.c gtk/gtkcombo.c
gtk/gtkctree.c gtk/gtkdnd.c gtk/gtkfilesel.c gtk/gtkgamma.c
gtk/gtkhandlebox.c gtk/gtkhsv.c gtk/gtkimcontext.c gtk/gtklabel.c
gtk/gtklist.c gtk/gtkmain.c gtk/gtkmenuitem.c gtk/gtkmenushell.c
gtk/gtknotebook.c gtk/gtkoldeditable.c gtk/gtkoptionmenu.c
gtk/gtkpaned.c gtk/gtkpreview.c gtk/gtksocket.c gtk/gtktext.c
gtk/gtktextbuffer.c gtk/gtktextview.c gtk/gtktipsquery.c
gtk/gtktooltips.c gtk/gtktreeview.c gtk/gtktreeviewcolumn.c:
misc mechanical multihead-safety fixes.
* gtk/gtkclipboard.c: Use a GtkImage rather than a pixmap for
the dropper, look up the color palette only at realization time,
other multihead fixes.
* gtk/gtkcombo.c (gtk_combo_unrealize): Popdown the list when
unrealizing.
* gtk/gtkentry.c: Only claim ownership of the primary selection
when realized, misc multihead fixes.
* gtk/gtkfontsel.c: Only fill in fonts when attached to a screen,
fix gtk_font_selection_get_font() for multihead.
* gtk/gtkgc.c: make the depth => drawable hash per-screen.
* gtk/gtkinvisible.c: Add a constructor that realizes the
widget, so we get a realized widget with g_object_new() as
well gtk_invisible_new() as before.
* gtk/gtkmain.c: Get rid of unused gtk_visual/gtk_colormap
variables.
* gtk/gtktextdisplay.c: Add warnings if stipple bitmaps
are used on the wrong screen.
* gtk/gtktoolbar.c: Make handling of GtkSettings-based layout
read properties and connect to settings when the screen is changed,
rather than on init/finalize.
* gtk/gtkwindow.c: Fix icon handing to be multihead safe ...
default icon pixmaps/mask are only shared between windows on the
same screen. Misc multihead fixes.
Sat Apr 27 13:49:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkclipboard.c (gtk_clipboard_get_for_display):
Update docs to reference GDK_SELECTION_CLIPBOARD rather GDK_NONE.
2002-04-29 Alex Larsson <alexl@redhat.com>
* gdk/linux-fb/gdkproperty-fb.c (gdk_property_get):
Fix silly bug, noticed by Sven Neumann.
Sun Apr 28 22:43:55 2002 Jonathan Blandford <jrb@gnome.org>
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): Fix
so that you can set a new sort func.
2002-04-29 22:53:45 +00:00
|
|
|
|
GdkDisplay *display;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
switch ((guint) event->any.type)
|
2002-03-02 20:37:07 +00:00
|
|
|
|
{
|
|
|
|
|
case GDK_SCROLL:
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
|
case GDK_PROXIMITY_IN:
|
|
|
|
|
case GDK_PROXIMITY_OUT:
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
|
case GDK_KEY_RELEASE:
|
2011-12-28 23:06:45 +00:00
|
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
|
case GDK_TOUCH_UPDATE:
|
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
|
case GDK_TOUCH_CANCEL:
|
2015-07-09 16:47:02 +00:00
|
|
|
|
case GDK_TOUCHPAD_SWIPE:
|
|
|
|
|
case GDK_TOUCHPAD_PINCH:
|
2018-03-20 14:14:10 +00:00
|
|
|
|
display = gdk_surface_get_display (event->any.surface);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
device = gdk_event_get_device (event);
|
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
|
if (!gdk_device_grab_info (display, device, &grab_surface, &owner_events) ||
|
2011-01-04 22:32:12 +00:00
|
|
|
|
!owner_events)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
return NULL;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
2019-05-26 18:02:55 +00:00
|
|
|
|
grab_widget = gtk_native_get_for_surface (grab_surface);
|
2002-03-02 20:37:07 +00:00
|
|
|
|
|
|
|
|
|
if (grab_widget &&
|
|
|
|
|
gtk_main_get_window_group (grab_widget) != gtk_main_get_window_group (event_widget))
|
2018-03-20 14:14:10 +00:00
|
|
|
|
return rewrite_event_for_surface (event, grab_surface);
|
2002-03-02 20:37:07 +00:00
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-15 12:07:40 +00:00
|
|
|
|
static GtkWidget *
|
|
|
|
|
widget_get_popover_ancestor (GtkWidget *widget,
|
|
|
|
|
GtkWindow *window)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *parent = gtk_widget_get_parent (widget);
|
|
|
|
|
|
|
|
|
|
while (parent && parent != GTK_WIDGET (window))
|
|
|
|
|
{
|
|
|
|
|
widget = parent;
|
|
|
|
|
parent = gtk_widget_get_parent (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!parent || parent != GTK_WIDGET (window))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (_gtk_window_is_popover_widget (GTK_WINDOW (window), widget))
|
|
|
|
|
return widget;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
check_event_in_child_popover (GtkWidget *event_widget,
|
|
|
|
|
GtkWidget *grab_widget)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *window, *popover = NULL, *popover_parent = NULL;
|
|
|
|
|
|
|
|
|
|
if (grab_widget == event_widget)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
window = gtk_widget_get_ancestor (event_widget, GTK_TYPE_WINDOW);
|
|
|
|
|
|
|
|
|
|
if (!window)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
popover = widget_get_popover_ancestor (event_widget, GTK_WINDOW (window));
|
|
|
|
|
|
|
|
|
|
if (!popover)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
popover_parent = _gtk_window_get_popover_parent (GTK_WINDOW (window), popover);
|
|
|
|
|
|
|
|
|
|
if (!popover_parent)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return (popover_parent == grab_widget || gtk_widget_is_ancestor (popover_parent, grab_widget));
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-22 20:33:53 +00:00
|
|
|
|
static gboolean
|
2020-02-16 01:47:23 +00:00
|
|
|
|
translate_event_coordinates (GdkEvent *event,
|
|
|
|
|
double *x,
|
|
|
|
|
double *y,
|
|
|
|
|
GtkWidget *widget)
|
2017-03-31 15:38:38 +00:00
|
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
graphene_point_t p;
|
|
|
|
|
double event_x, event_y;
|
2019-03-07 03:25:31 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
*x = *y = 0;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
if (!gdk_event_get_coords (event, &event_x, &event_y))
|
|
|
|
|
return FALSE;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
if (!gtk_widget_compute_point (event_widget,
|
|
|
|
|
widget,
|
|
|
|
|
&GRAPHENE_POINT_INIT (event_x, event_y),
|
|
|
|
|
&p))
|
|
|
|
|
return FALSE;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
*x = p.x;
|
|
|
|
|
*y = p.y;
|
2019-03-08 18:52:46 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
return TRUE;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-07 04:39:53 +00:00
|
|
|
|
void
|
2019-03-16 07:06:29 +00:00
|
|
|
|
gtk_synthesize_crossing_events (GtkRoot *toplevel,
|
2017-05-24 23:50:38 +00:00
|
|
|
|
GtkWidget *old_target,
|
|
|
|
|
GtkWidget *new_target,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
GdkCrossingMode mode)
|
|
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
|
GtkCrossingData crossing;
|
|
|
|
|
GtkWidget *widget;
|
|
|
|
|
GList *list, *l;
|
|
|
|
|
double x, y;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
crossing.type = GTK_CROSSING_POINTER;
|
|
|
|
|
crossing.mode = mode;
|
|
|
|
|
crossing.old_target = old_target;
|
|
|
|
|
crossing.new_target = new_target;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
crossing.direction = GTK_CROSSING_OUT;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
widget = old_target;
|
|
|
|
|
while (widget)
|
2017-03-31 15:38:38 +00:00
|
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
|
translate_event_coordinates (event, &x, &y, widget);
|
|
|
|
|
gtk_widget_handle_crossing (widget, &crossing, x, y);
|
|
|
|
|
gtk_widget_unset_state_flags (widget, GTK_STATE_FLAG_PRELIGHT);
|
|
|
|
|
widget = gtk_widget_get_parent (widget);
|
2017-03-31 15:38:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
list = NULL;
|
|
|
|
|
widget = new_target;
|
|
|
|
|
while (widget)
|
2017-03-31 15:38:38 +00:00
|
|
|
|
{
|
2020-02-16 01:47:23 +00:00
|
|
|
|
list = g_list_prepend (list, widget);
|
|
|
|
|
widget = gtk_widget_get_parent (widget);
|
|
|
|
|
}
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
crossing.direction = GTK_CROSSING_IN;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
for (l = list; l; l = l->next)
|
|
|
|
|
{
|
|
|
|
|
widget = l->data;
|
|
|
|
|
translate_event_coordinates (event, &x, &y, widget);
|
|
|
|
|
gtk_widget_handle_crossing (widget, &crossing, x, y);
|
|
|
|
|
gtk_widget_set_state_flags (widget, GTK_STATE_FLAG_PRELIGHT, FALSE);
|
2017-03-31 15:38:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
g_list_free (list);
|
|
|
|
|
}
|
2019-03-07 03:25:31 +00:00
|
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
|
update_pointer_focus_state (GtkWindow *toplevel,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
GtkWidget *new_target)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *old_target = NULL;
|
|
|
|
|
GdkEventSequence *sequence;
|
|
|
|
|
GdkDevice *device;
|
|
|
|
|
gdouble x, y;
|
|
|
|
|
|
|
|
|
|
device = gdk_event_get_device (event);
|
|
|
|
|
sequence = gdk_event_get_event_sequence (event);
|
|
|
|
|
old_target = gtk_window_lookup_pointer_focus_widget (toplevel, device, sequence);
|
|
|
|
|
if (old_target == new_target)
|
|
|
|
|
return old_target;
|
|
|
|
|
|
|
|
|
|
gdk_event_get_coords (event, &x, &y);
|
|
|
|
|
gtk_window_update_pointer_focus (toplevel, device, sequence,
|
|
|
|
|
new_target, x, y);
|
|
|
|
|
|
|
|
|
|
return old_target;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 15:38:38 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
is_pointing_event (GdkEvent *event)
|
|
|
|
|
{
|
2017-10-11 13:55:19 +00:00
|
|
|
|
switch ((guint) event->any.type)
|
2017-03-31 15:38:38 +00:00
|
|
|
|
{
|
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
|
case GDK_SCROLL:
|
|
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
|
case GDK_TOUCH_UPDATE:
|
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
|
case GDK_TOUCH_CANCEL:
|
|
|
|
|
case GDK_TOUCHPAD_PINCH:
|
|
|
|
|
case GDK_TOUCHPAD_SWIPE:
|
|
|
|
|
return TRUE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-17 23:41:26 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
is_key_event (GdkEvent *event)
|
|
|
|
|
{
|
|
|
|
|
switch ((guint) event->any.type)
|
|
|
|
|
{
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
|
case GDK_KEY_RELEASE:
|
|
|
|
|
return TRUE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-09 14:09:20 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
is_focus_event (GdkEvent *event)
|
|
|
|
|
{
|
|
|
|
|
switch ((guint) event->any.type)
|
|
|
|
|
{
|
|
|
|
|
case GDK_FOCUS_CHANGE:
|
|
|
|
|
return TRUE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
is_dnd_event (GdkEvent *event)
|
|
|
|
|
{
|
|
|
|
|
switch ((guint) event->any.type)
|
|
|
|
|
{
|
|
|
|
|
case GDK_DRAG_ENTER:
|
|
|
|
|
case GDK_DRAG_LEAVE:
|
|
|
|
|
case GDK_DRAG_MOTION:
|
|
|
|
|
case GDK_DROP_START:
|
|
|
|
|
return TRUE;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-09 14:09:20 +00:00
|
|
|
|
|
2019-01-25 04:39:04 +00:00
|
|
|
|
static inline void
|
|
|
|
|
set_widget_active_state (GtkWidget *target,
|
|
|
|
|
const gboolean release)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *w;
|
|
|
|
|
|
|
|
|
|
w = target;
|
|
|
|
|
while (w)
|
|
|
|
|
{
|
|
|
|
|
if (release)
|
|
|
|
|
gtk_widget_unset_state_flags (w, GTK_STATE_FLAG_ACTIVE);
|
|
|
|
|
else
|
|
|
|
|
gtk_widget_set_state_flags (w, GTK_STATE_FLAG_ACTIVE, FALSE);
|
|
|
|
|
|
|
|
|
|
w = gtk_widget_get_parent (w);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 15:38:38 +00:00
|
|
|
|
static GtkWidget *
|
|
|
|
|
handle_pointing_event (GdkEvent *event)
|
|
|
|
|
{
|
2019-02-03 04:37:13 +00:00
|
|
|
|
GtkWidget *target = NULL, *old_target = NULL, *event_widget;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
GtkWindow *toplevel;
|
|
|
|
|
GdkEventSequence *sequence;
|
|
|
|
|
GdkDevice *device;
|
|
|
|
|
gdouble x, y;
|
2019-03-17 23:41:26 +00:00
|
|
|
|
GtkWidget *native;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2019-02-03 04:37:13 +00:00
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
2017-03-31 15:38:38 +00:00
|
|
|
|
device = gdk_event_get_device (event);
|
|
|
|
|
if (!device || !gdk_event_get_coords (event, &x, &y))
|
2019-02-03 04:37:13 +00:00
|
|
|
|
return event_widget;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2019-03-17 23:41:26 +00:00
|
|
|
|
toplevel = GTK_WINDOW (gtk_widget_get_root (event_widget));
|
2019-05-02 21:33:53 +00:00
|
|
|
|
native = GTK_WIDGET (gtk_widget_get_native (event_widget));
|
2017-06-26 10:00:20 +00:00
|
|
|
|
|
2017-03-31 15:38:38 +00:00
|
|
|
|
sequence = gdk_event_get_event_sequence (event);
|
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
switch ((guint) event->any.type)
|
2017-03-31 15:38:38 +00:00
|
|
|
|
{
|
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
2020-02-07 00:02:47 +00:00
|
|
|
|
if (event->crossing.mode == GDK_CROSSING_NORMAL &&
|
|
|
|
|
gtk_window_lookup_pointer_focus_implicit_grab (toplevel, device, NULL))
|
|
|
|
|
{
|
|
|
|
|
/* We have an implicit grab, wait for the corresponding
|
|
|
|
|
* GDK_CROSSING_UNGRAB.
|
|
|
|
|
*/
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-01-26 14:09:33 +00:00
|
|
|
|
G_GNUC_FALLTHROUGH;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
|
case GDK_TOUCH_CANCEL:
|
|
|
|
|
old_target = update_pointer_focus_state (toplevel, event, NULL);
|
2017-09-19 16:18:07 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
if (event->any.type == GDK_LEAVE_NOTIFY)
|
2019-03-16 07:06:29 +00:00
|
|
|
|
gtk_synthesize_crossing_events (GTK_ROOT (toplevel), old_target, NULL,
|
2017-09-19 16:18:07 +00:00
|
|
|
|
event, event->crossing.mode);
|
2017-03-31 15:38:38 +00:00
|
|
|
|
break;
|
2017-05-04 11:45:30 +00:00
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
|
if (event->crossing.mode == GDK_CROSSING_GRAB ||
|
|
|
|
|
event->crossing.mode == GDK_CROSSING_UNGRAB)
|
|
|
|
|
break;
|
2019-01-26 14:09:33 +00:00
|
|
|
|
G_GNUC_FALLTHROUGH;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
case GDK_TOUCH_BEGIN:
|
|
|
|
|
case GDK_TOUCH_UPDATE:
|
|
|
|
|
case GDK_MOTION_NOTIFY:
|
2019-02-05 14:13:01 +00:00
|
|
|
|
target = gtk_window_lookup_pointer_focus_implicit_grab (toplevel, device, sequence);
|
|
|
|
|
|
|
|
|
|
if (!target)
|
2019-03-17 23:41:26 +00:00
|
|
|
|
target = gtk_widget_pick (native, x, y, GTK_PICK_DEFAULT);
|
2019-02-05 14:13:01 +00:00
|
|
|
|
|
|
|
|
|
if (!target)
|
2019-03-17 23:41:26 +00:00
|
|
|
|
target = GTK_WIDGET (native);
|
2019-02-05 14:13:01 +00:00
|
|
|
|
|
2017-03-31 15:38:38 +00:00
|
|
|
|
old_target = update_pointer_focus_state (toplevel, event, target);
|
2017-05-24 23:50:38 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
if (event->any.type == GDK_MOTION_NOTIFY || event->any.type == GDK_ENTER_NOTIFY)
|
2017-05-24 23:50:38 +00:00
|
|
|
|
{
|
2017-05-24 23:57:22 +00:00
|
|
|
|
if (!gtk_window_lookup_pointer_focus_implicit_grab (toplevel, device,
|
|
|
|
|
sequence))
|
|
|
|
|
{
|
2019-03-16 07:06:29 +00:00
|
|
|
|
gtk_synthesize_crossing_events (GTK_ROOT (toplevel), old_target, target,
|
2017-05-24 23:57:22 +00:00
|
|
|
|
event, GDK_CROSSING_NORMAL);
|
|
|
|
|
}
|
2017-05-24 23:50:38 +00:00
|
|
|
|
|
|
|
|
|
gtk_window_maybe_update_cursor (toplevel, NULL, device);
|
|
|
|
|
}
|
2017-03-31 15:38:38 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
if (event->any.type == GDK_TOUCH_BEGIN)
|
2017-03-31 15:55:49 +00:00
|
|
|
|
gtk_window_set_pointer_focus_grab (toplevel, device, sequence, target);
|
|
|
|
|
|
2017-03-31 15:38:38 +00:00
|
|
|
|
/* Let it take the effective pointer focus anyway, as it may change due
|
|
|
|
|
* to implicit grabs.
|
|
|
|
|
*/
|
|
|
|
|
target = NULL;
|
|
|
|
|
break;
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
2017-03-31 15:55:49 +00:00
|
|
|
|
target = gtk_window_lookup_effective_pointer_focus_widget (toplevel,
|
|
|
|
|
device,
|
|
|
|
|
sequence);
|
|
|
|
|
gtk_window_set_pointer_focus_grab (toplevel, device, sequence,
|
2017-10-11 13:55:19 +00:00
|
|
|
|
event->any.type == GDK_BUTTON_PRESS ?
|
2017-03-31 15:55:49 +00:00
|
|
|
|
target : NULL);
|
2017-05-24 23:45:18 +00:00
|
|
|
|
|
2017-10-11 13:55:19 +00:00
|
|
|
|
if (event->any.type == GDK_BUTTON_RELEASE)
|
2017-05-24 23:57:22 +00:00
|
|
|
|
{
|
2018-10-04 11:08:14 +00:00
|
|
|
|
GtkWidget *new_target;
|
2019-03-17 23:41:26 +00:00
|
|
|
|
new_target = gtk_widget_pick (GTK_WIDGET (native), x, y, GTK_PICK_DEFAULT);
|
2018-10-04 11:08:14 +00:00
|
|
|
|
if (new_target == NULL)
|
|
|
|
|
new_target = GTK_WIDGET (toplevel);
|
2020-02-16 01:47:23 +00:00
|
|
|
|
gtk_synthesize_crossing_events (GTK_ROOT (toplevel), target, new_target,
|
|
|
|
|
event, GDK_CROSSING_UNGRAB);
|
2017-05-24 23:57:22 +00:00
|
|
|
|
gtk_window_maybe_update_cursor (toplevel, NULL, device);
|
|
|
|
|
}
|
2019-01-25 04:39:04 +00:00
|
|
|
|
|
|
|
|
|
set_widget_active_state (target, event->any.type == GDK_BUTTON_RELEASE);
|
|
|
|
|
|
2017-03-31 15:55:49 +00:00
|
|
|
|
break;
|
2017-03-31 15:38:38 +00:00
|
|
|
|
case GDK_SCROLL:
|
|
|
|
|
case GDK_TOUCHPAD_PINCH:
|
|
|
|
|
case GDK_TOUCHPAD_SWIPE:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!target)
|
|
|
|
|
target = gtk_window_lookup_effective_pointer_focus_widget (toplevel,
|
|
|
|
|
device,
|
|
|
|
|
sequence);
|
|
|
|
|
return target ? target : old_target;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-17 23:41:26 +00:00
|
|
|
|
static GtkWidget *
|
|
|
|
|
handle_key_event (GdkEvent *event)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
GtkWidget *focus_widget;
|
|
|
|
|
|
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
|
|
|
|
|
|
|
|
|
focus_widget = gtk_root_get_focus (gtk_widget_get_root (event_widget));
|
|
|
|
|
return focus_widget ? focus_widget : event_widget;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
|
static GtkWidget *
|
|
|
|
|
handle_dnd_event (GdkEvent *event)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *event_widget;
|
|
|
|
|
GtkWidget *target;
|
|
|
|
|
gdouble x, y;
|
|
|
|
|
GtkWidget *native;
|
|
|
|
|
|
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
|
|
|
|
|
|
|
|
|
if (!gdk_event_get_coords (event, &x, &y))
|
|
|
|
|
return event_widget;
|
|
|
|
|
|
|
|
|
|
native = GTK_WIDGET (gtk_widget_get_native (event_widget));
|
|
|
|
|
target = gtk_widget_pick (native, x, y, GTK_PICK_DEFAULT);
|
|
|
|
|
|
|
|
|
|
return target;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
void
|
1998-12-15 07:32:11 +00:00
|
|
|
|
gtk_main_do_event (GdkEvent *event)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
|
|
|
|
GtkWidget *event_widget;
|
2019-01-29 04:33:38 +00:00
|
|
|
|
GtkWidget *target_widget;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GtkWidget *grab_widget = NULL;
|
2001-06-14 21:44:01 +00:00
|
|
|
|
GtkWindowGroup *window_group;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
GdkEvent *rewritten_event = NULL;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device;
|
1997-12-18 02:17:14 +00:00
|
|
|
|
GList *tmp_list;
|
1998-12-15 07:32:11 +00:00
|
|
|
|
|
2019-02-24 04:06:00 +00:00
|
|
|
|
if (gtk_inspector_handle_event (event))
|
|
|
|
|
return;
|
|
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
|
/* Find the widget which got the event. We store the widget
|
2018-03-20 10:40:08 +00:00
|
|
|
|
* in the user_data field of GdkSurface's. Ignore the event
|
2019-01-29 04:29:57 +00:00
|
|
|
|
* if we don't have a widget for it.
|
1998-12-15 07:32:11 +00:00
|
|
|
|
*/
|
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
|
|
|
|
if (!event_widget)
|
2017-12-13 23:43:19 +00:00
|
|
|
|
return;
|
2002-03-02 20:37:07 +00:00
|
|
|
|
|
2019-01-29 04:33:38 +00:00
|
|
|
|
target_widget = event_widget;
|
|
|
|
|
|
2002-03-02 20:37:07 +00:00
|
|
|
|
/* If pointer or keyboard grabs are in effect, munge the events
|
|
|
|
|
* so that each window group looks like a separate app.
|
|
|
|
|
*/
|
|
|
|
|
rewritten_event = rewrite_event_for_grabs (event);
|
|
|
|
|
if (rewritten_event)
|
|
|
|
|
{
|
|
|
|
|
event = rewritten_event;
|
2019-01-29 04:33:38 +00:00
|
|
|
|
target_widget = gtk_get_event_widget (event);
|
2002-03-02 20:37:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-05 17:21:40 +00:00
|
|
|
|
/* Push the event onto a stack of current events for
|
|
|
|
|
* gtk_current_event_get().
|
|
|
|
|
*/
|
|
|
|
|
current_events = g_list_prepend (current_events, event);
|
|
|
|
|
|
2017-05-04 11:48:27 +00:00
|
|
|
|
if (is_pointing_event (event))
|
2019-01-29 04:33:38 +00:00
|
|
|
|
target_widget = handle_pointing_event (event);
|
2019-03-17 23:41:26 +00:00
|
|
|
|
else if (is_key_event (event))
|
2018-03-07 16:59:22 +00:00
|
|
|
|
{
|
2018-03-11 12:47:11 +00:00
|
|
|
|
if (event->any.type == GDK_KEY_PRESS &&
|
2019-03-03 22:42:36 +00:00
|
|
|
|
GTK_IS_WINDOW (target_widget) &&
|
2019-01-29 04:33:38 +00:00
|
|
|
|
gtk_window_activate_key (GTK_WINDOW (target_widget), (GdkEventKey *) event))
|
2018-03-11 12:47:11 +00:00
|
|
|
|
goto cleanup;
|
|
|
|
|
|
2019-03-17 23:41:26 +00:00
|
|
|
|
target_widget = handle_key_event (event);
|
2018-03-07 16:59:22 +00:00
|
|
|
|
}
|
2019-06-09 14:09:20 +00:00
|
|
|
|
else if (is_focus_event (event))
|
|
|
|
|
{
|
|
|
|
|
if (!GTK_IS_WINDOW (target_widget))
|
|
|
|
|
{
|
|
|
|
|
g_message ("Ignoring an unexpected focus event from GDK on a non-toplevel surface.");
|
|
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-06 04:49:22 +00:00
|
|
|
|
else if (is_dnd_event (event))
|
|
|
|
|
target_widget = handle_dnd_event (event);
|
2017-05-04 11:48:27 +00:00
|
|
|
|
|
2019-01-29 04:33:38 +00:00
|
|
|
|
if (!target_widget)
|
2017-05-04 11:48:27 +00:00
|
|
|
|
goto cleanup;
|
|
|
|
|
|
2019-03-08 16:27:16 +00:00
|
|
|
|
gdk_event_set_target (event, G_OBJECT (target_widget));
|
2018-01-11 10:58:05 +00:00
|
|
|
|
|
2019-01-29 04:33:38 +00:00
|
|
|
|
window_group = gtk_main_get_window_group (target_widget);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
device = gdk_event_get_device (event);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
/* check whether there is a (device) grab in effect... */
|
2010-06-15 17:06:51 +00:00
|
|
|
|
if (device)
|
|
|
|
|
grab_widget = gtk_window_group_get_current_device_grab (window_group, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2010-12-18 01:41:16 +00:00
|
|
|
|
if (!grab_widget)
|
|
|
|
|
grab_widget = gtk_window_group_get_current_grab (window_group);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2010-06-15 17:06:51 +00:00
|
|
|
|
/* If the grab widget is an ancestor of the event widget
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* then we send the event to the original event widget.
|
|
|
|
|
* This is the key to implementing modality.
|
2010-06-15 17:06:51 +00:00
|
|
|
|
*/
|
|
|
|
|
if (!grab_widget ||
|
2019-01-29 04:33:38 +00:00
|
|
|
|
((gtk_widget_is_sensitive (target_widget) || event->any.type == GDK_SCROLL) &&
|
|
|
|
|
gtk_widget_is_ancestor (target_widget, grab_widget)))
|
|
|
|
|
grab_widget = target_widget;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2015-06-15 12:07:40 +00:00
|
|
|
|
/* popovers are not really a "child" of their "parent" in the widget/window
|
|
|
|
|
* hierarchy sense, we however want to interact with popovers spawn by widgets
|
|
|
|
|
* within grab_widget. If this is the case, we let the event go through
|
|
|
|
|
* unaffected by the grab.
|
|
|
|
|
*/
|
2019-01-29 04:33:38 +00:00
|
|
|
|
if (check_event_in_child_popover (target_widget, grab_widget))
|
|
|
|
|
grab_widget = target_widget;
|
2015-06-15 12:07:40 +00:00
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
/* If the widget receiving events is actually blocked by another
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* device GTK grab
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
2010-05-25 22:38:44 +00:00
|
|
|
|
if (device &&
|
|
|
|
|
_gtk_window_group_widget_is_blocked_for_device (window_group, grab_widget, device))
|
2015-06-05 17:21:40 +00:00
|
|
|
|
goto cleanup;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
|
/* Not all events get sent to the grabbing widget.
|
|
|
|
|
* The delete, destroy, expose, focus change and resize
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* events still get sent to the event widget because
|
|
|
|
|
* 1) these events have no meaning for the grabbing widget
|
|
|
|
|
* and 2) redirecting these events to the grabbing widget
|
|
|
|
|
* could cause the display to be messed up.
|
|
|
|
|
*
|
1998-12-15 07:32:11 +00:00
|
|
|
|
* Drag events are also not redirected, since it isn't
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* clear what the semantics of that would be.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*/
|
2018-07-19 21:31:20 +00:00
|
|
|
|
switch ((guint)event->any.type)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
1998-12-15 07:32:11 +00:00
|
|
|
|
case GDK_DELETE:
|
2019-01-29 04:33:38 +00:00
|
|
|
|
g_object_ref (target_widget);
|
2018-06-07 14:47:44 +00:00
|
|
|
|
if (!gtk_window_group_get_current_grab (window_group) ||
|
2019-03-17 23:41:26 +00:00
|
|
|
|
GTK_WIDGET (gtk_widget_get_root (gtk_window_group_get_current_grab (window_group))) == target_widget)
|
2018-06-07 14:47:44 +00:00
|
|
|
|
{
|
2019-01-29 04:33:38 +00:00
|
|
|
|
if (!GTK_IS_WINDOW (target_widget) ||
|
|
|
|
|
!gtk_window_emit_close_request (GTK_WINDOW (target_widget)))
|
|
|
|
|
gtk_widget_destroy (target_widget);
|
2018-06-07 14:47:44 +00:00
|
|
|
|
}
|
2019-01-29 04:33:38 +00:00
|
|
|
|
g_object_unref (target_widget);
|
1998-12-15 07:32:11 +00:00
|
|
|
|
break;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2018-06-07 14:47:44 +00:00
|
|
|
|
case GDK_FOCUS_CHANGE:
|
2005-06-25 07:10:40 +00:00
|
|
|
|
case GDK_GRAB_BROKEN:
|
2020-02-16 07:20:34 +00:00
|
|
|
|
if (!_gtk_widget_captured_event (target_widget, event, target_widget))
|
|
|
|
|
gtk_widget_event (target_widget, event, target_widget);
|
1998-12-15 07:32:11 +00:00
|
|
|
|
break;
|
1999-01-28 00:57:18 +00:00
|
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
|
case GDK_KEY_RELEASE:
|
2014-06-29 22:52:50 +00:00
|
|
|
|
case GDK_SCROLL:
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_TOUCH_BEGIN:
|
1998-12-15 07:32:11 +00:00
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
|
case GDK_PROXIMITY_IN:
|
|
|
|
|
case GDK_PROXIMITY_OUT:
|
2011-12-28 23:06:45 +00:00
|
|
|
|
case GDK_TOUCH_UPDATE:
|
|
|
|
|
case GDK_TOUCH_END:
|
|
|
|
|
case GDK_TOUCH_CANCEL:
|
2015-07-09 16:47:02 +00:00
|
|
|
|
case GDK_TOUCHPAD_SWIPE:
|
|
|
|
|
case GDK_TOUCHPAD_PINCH:
|
2016-08-04 17:17:21 +00:00
|
|
|
|
case GDK_PAD_BUTTON_PRESS:
|
|
|
|
|
case GDK_PAD_BUTTON_RELEASE:
|
|
|
|
|
case GDK_PAD_RING:
|
|
|
|
|
case GDK_PAD_STRIP:
|
|
|
|
|
case GDK_PAD_GROUP_MODE:
|
2017-05-29 12:55:37 +00:00
|
|
|
|
gtk_propagate_event (grab_widget, event);
|
1998-12-15 07:32:11 +00:00
|
|
|
|
break;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
2017-04-13 13:42:48 +00:00
|
|
|
|
/* Crossing event propagation happens during picking */
|
1998-12-15 07:32:11 +00:00
|
|
|
|
break;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
|
case GDK_DRAG_MOTION:
|
|
|
|
|
case GDK_DROP_START:
|
2020-01-06 04:49:22 +00:00
|
|
|
|
if (gtk_propagate_event (target_widget, event))
|
|
|
|
|
break;
|
|
|
|
|
G_GNUC_FALLTHROUGH;
|
|
|
|
|
|
|
|
|
|
case GDK_DRAG_ENTER:
|
|
|
|
|
case GDK_DRAG_LEAVE:
|
|
|
|
|
gtk_drag_dest_handle_event (target_widget, event);
|
1998-12-15 07:32:11 +00:00
|
|
|
|
break;
|
2020-01-06 04:49:22 +00:00
|
|
|
|
|
2017-10-06 19:19:42 +00:00
|
|
|
|
case GDK_EVENT_LAST:
|
2001-04-29 03:08:32 +00:00
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
break;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2020-02-16 01:47:23 +00:00
|
|
|
|
_gtk_tooltip_handle_event (target_widget, event);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2015-06-05 17:21:40 +00:00
|
|
|
|
cleanup:
|
1998-12-15 07:32:11 +00:00
|
|
|
|
tmp_list = current_events;
|
|
|
|
|
current_events = g_list_remove_link (current_events, tmp_list);
|
|
|
|
|
g_list_free_1 (tmp_list);
|
2002-03-02 20:37:07 +00:00
|
|
|
|
|
|
|
|
|
if (rewritten_event)
|
2020-02-15 20:07:24 +00:00
|
|
|
|
gdk_event_unref (rewritten_event);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-14 21:44:01 +00:00
|
|
|
|
static GtkWindowGroup *
|
2011-01-04 22:32:12 +00:00
|
|
|
|
gtk_main_get_window_group (GtkWidget *widget)
|
2001-06-14 21:44:01 +00:00
|
|
|
|
{
|
|
|
|
|
GtkWidget *toplevel = NULL;
|
|
|
|
|
|
|
|
|
|
if (widget)
|
2019-05-20 04:47:50 +00:00
|
|
|
|
toplevel = GTK_WIDGET (gtk_widget_get_root (widget));
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2008-02-06 09:53:34 +00:00
|
|
|
|
if (GTK_IS_WINDOW (toplevel))
|
2006-01-10 04:33:30 +00:00
|
|
|
|
return gtk_window_get_group (GTK_WINDOW (toplevel));
|
2001-06-14 21:44:01 +00:00
|
|
|
|
else
|
2006-01-10 04:33:30 +00:00
|
|
|
|
return gtk_window_get_group (NULL);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
2002-01-16 01:07:11 +00:00
|
|
|
|
GtkWidget *old_grab_widget;
|
|
|
|
|
GtkWidget *new_grab_widget;
|
2006-04-06 01:58:38 +00:00
|
|
|
|
gboolean was_grabbed;
|
|
|
|
|
gboolean is_grabbed;
|
2008-08-01 03:30:50 +00:00
|
|
|
|
gboolean from_grab;
|
2018-03-21 10:49:14 +00:00
|
|
|
|
GList *notified_surfaces;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device;
|
2001-06-14 21:44:01 +00:00
|
|
|
|
} GrabNotifyInfo;
|
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
static void
|
|
|
|
|
synth_crossing_for_grab_notify (GtkWidget *from,
|
|
|
|
|
GtkWidget *to,
|
|
|
|
|
GrabNotifyInfo *info,
|
|
|
|
|
GList *devices,
|
|
|
|
|
GdkCrossingMode mode)
|
|
|
|
|
{
|
|
|
|
|
while (devices)
|
|
|
|
|
{
|
|
|
|
|
GdkDevice *device = devices->data;
|
2018-03-21 10:49:14 +00:00
|
|
|
|
GdkSurface *from_surface, *to_surface;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
|
|
/* Do not propagate events more than once to
|
2018-03-21 10:49:14 +00:00
|
|
|
|
* the same surfaces if non-multidevice aware.
|
2010-05-25 22:38:44 +00:00
|
|
|
|
*/
|
|
|
|
|
if (!from)
|
2018-03-21 10:49:14 +00:00
|
|
|
|
from_surface = NULL;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
|
from_surface = _gtk_widget_get_device_surface (from, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
if (from_surface &&
|
|
|
|
|
!gdk_surface_get_support_multidevice (from_surface) &&
|
|
|
|
|
g_list_find (info->notified_surfaces, from_surface))
|
|
|
|
|
from_surface = NULL;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!to)
|
2018-03-21 10:49:14 +00:00
|
|
|
|
to_surface = NULL;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
|
to_surface = _gtk_widget_get_device_surface (to, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
if (to_surface &&
|
|
|
|
|
!gdk_surface_get_support_multidevice (to_surface) &&
|
|
|
|
|
g_list_find (info->notified_surfaces, to_surface))
|
|
|
|
|
to_surface = NULL;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
if (from_surface || to_surface)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
{
|
2018-03-21 10:49:14 +00:00
|
|
|
|
_gtk_widget_synthesize_crossing ((from_surface) ? from : NULL,
|
|
|
|
|
(to_surface) ? to : NULL,
|
2010-05-25 22:38:44 +00:00
|
|
|
|
device, mode);
|
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
if (from_surface)
|
|
|
|
|
info->notified_surfaces = g_list_prepend (info->notified_surfaces, from_surface);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
if (to_surface)
|
|
|
|
|
info->notified_surfaces = g_list_prepend (info->notified_surfaces, to_surface);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
devices = devices->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-14 21:44:01 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_grab_notify_foreach (GtkWidget *child,
|
2011-01-04 22:32:12 +00:00
|
|
|
|
gpointer data)
|
2001-06-14 21:44:01 +00:00
|
|
|
|
{
|
|
|
|
|
GrabNotifyInfo *info = data;
|
2006-04-06 01:58:38 +00:00
|
|
|
|
gboolean was_grabbed, is_grabbed, was_shadowed, is_shadowed;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GList *devices;
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
was_grabbed = info->was_grabbed;
|
|
|
|
|
is_grabbed = info->is_grabbed;
|
2004-05-10 13:18:14 +00:00
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
info->was_grabbed = info->was_grabbed || (child == info->old_grab_widget);
|
|
|
|
|
info->is_grabbed = info->is_grabbed || (child == info->new_grab_widget);
|
|
|
|
|
|
|
|
|
|
was_shadowed = info->old_grab_widget && !info->was_grabbed;
|
|
|
|
|
is_shadowed = info->new_grab_widget && !info->is_grabbed;
|
|
|
|
|
|
|
|
|
|
g_object_ref (child);
|
2008-08-01 03:30:50 +00:00
|
|
|
|
|
2016-12-04 11:48:50 +00:00
|
|
|
|
if (was_shadowed || is_shadowed)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *p;
|
|
|
|
|
|
|
|
|
|
for (p = _gtk_widget_get_first_child (child);
|
|
|
|
|
p != NULL;
|
|
|
|
|
p = _gtk_widget_get_next_sibling (p))
|
|
|
|
|
{
|
|
|
|
|
gtk_grab_notify_foreach (p, info);
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
|
|
if (info->device &&
|
2018-03-21 10:49:14 +00:00
|
|
|
|
_gtk_widget_get_device_surface (child, info->device))
|
2010-05-25 22:38:44 +00:00
|
|
|
|
{
|
|
|
|
|
/* Device specified and is on widget */
|
|
|
|
|
devices = g_list_prepend (NULL, info->device);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
devices = _gtk_widget_list_devices (child);
|
|
|
|
|
|
2008-08-01 03:30:50 +00:00
|
|
|
|
if (is_shadowed)
|
|
|
|
|
{
|
2010-09-18 23:57:32 +00:00
|
|
|
|
_gtk_widget_set_shadowed (child, TRUE);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
if (!was_shadowed && devices &&
|
2011-01-04 22:32:12 +00:00
|
|
|
|
gtk_widget_is_sensitive (child))
|
2010-05-25 22:38:44 +00:00
|
|
|
|
synth_crossing_for_grab_notify (child, info->new_grab_widget,
|
|
|
|
|
info, devices,
|
|
|
|
|
GDK_CROSSING_GTK_GRAB);
|
2008-08-01 03:30:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2010-09-18 23:57:32 +00:00
|
|
|
|
_gtk_widget_set_shadowed (child, FALSE);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
if (was_shadowed && devices &&
|
|
|
|
|
gtk_widget_is_sensitive (child))
|
|
|
|
|
synth_crossing_for_grab_notify (info->old_grab_widget, child,
|
|
|
|
|
info, devices,
|
|
|
|
|
info->from_grab ? GDK_CROSSING_GTK_GRAB :
|
|
|
|
|
GDK_CROSSING_GTK_UNGRAB);
|
2008-08-01 03:30:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
if (was_shadowed != is_shadowed)
|
|
|
|
|
_gtk_widget_grab_notify (child, was_shadowed);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
g_object_unref (child);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
g_list_free (devices);
|
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
info->was_grabbed = was_grabbed;
|
|
|
|
|
info->is_grabbed = is_grabbed;
|
2001-06-14 21:44:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_grab_notify (GtkWindowGroup *group,
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device,
|
2011-01-04 22:32:12 +00:00
|
|
|
|
GtkWidget *old_grab_widget,
|
|
|
|
|
GtkWidget *new_grab_widget,
|
|
|
|
|
gboolean from_grab)
|
2001-06-14 21:44:01 +00:00
|
|
|
|
{
|
|
|
|
|
GList *toplevels;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GrabNotifyInfo info = { 0 };
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
if (old_grab_widget == new_grab_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
info.old_grab_widget = old_grab_widget;
|
|
|
|
|
info.new_grab_widget = new_grab_widget;
|
2008-08-01 03:30:50 +00:00
|
|
|
|
info.from_grab = from_grab;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
info.device = device;
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
|
|
|
|
g_object_ref (group);
|
|
|
|
|
|
|
|
|
|
toplevels = gtk_window_list_toplevels ();
|
|
|
|
|
g_list_foreach (toplevels, (GFunc)g_object_ref, NULL);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2001-06-14 21:44:01 +00:00
|
|
|
|
while (toplevels)
|
|
|
|
|
{
|
|
|
|
|
GtkWindow *toplevel = toplevels->data;
|
|
|
|
|
toplevels = g_list_delete_link (toplevels, toplevels);
|
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
info.was_grabbed = FALSE;
|
|
|
|
|
info.is_grabbed = FALSE;
|
|
|
|
|
|
2006-01-10 04:33:30 +00:00
|
|
|
|
if (group == gtk_window_get_group (toplevel))
|
2011-01-04 22:32:12 +00:00
|
|
|
|
gtk_grab_notify_foreach (GTK_WIDGET (toplevel), &info);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
g_object_unref (toplevel);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 10:49:14 +00:00
|
|
|
|
g_list_free (info.notified_surfaces);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
g_object_unref (group);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
/**
|
2011-02-03 14:20:23 +00:00
|
|
|
|
* gtk_grab_add: (method)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* @widget: The widget that grabs keyboard and pointer events
|
|
|
|
|
*
|
|
|
|
|
* Makes @widget the current grabbed widget.
|
|
|
|
|
*
|
|
|
|
|
* This means that interaction with other widgets in the same
|
|
|
|
|
* application is blocked and mouse as well as keyboard events
|
|
|
|
|
* are delivered to this widget.
|
|
|
|
|
*
|
|
|
|
|
* If @widget is not sensitive, it is not set as the current
|
|
|
|
|
* grabbed widget and this function does nothing.
|
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_grab_add (GtkWidget *widget)
|
|
|
|
|
{
|
2001-06-14 21:44:01 +00:00
|
|
|
|
GtkWindowGroup *group;
|
2006-04-06 01:58:38 +00:00
|
|
|
|
GtkWidget *old_grab_widget;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
1998-01-19 08:23:24 +00:00
|
|
|
|
g_return_if_fail (widget != NULL);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2010-02-27 04:24:24 +00:00
|
|
|
|
if (!gtk_widget_has_grab (widget) && gtk_widget_is_sensitive (widget))
|
1998-01-19 08:23:24 +00:00
|
|
|
|
{
|
2010-04-11 21:19:42 +00:00
|
|
|
|
_gtk_widget_set_has_grab (widget, TRUE);
|
2010-12-18 01:41:16 +00:00
|
|
|
|
|
2001-06-14 21:44:01 +00:00
|
|
|
|
group = gtk_main_get_window_group (widget);
|
|
|
|
|
|
2010-12-18 01:41:16 +00:00
|
|
|
|
old_grab_widget = gtk_window_group_get_current_grab (group);
|
2006-04-06 01:58:38 +00:00
|
|
|
|
|
2002-10-09 00:38:22 +00:00
|
|
|
|
g_object_ref (widget);
|
2010-12-18 01:41:16 +00:00
|
|
|
|
_gtk_window_group_add_grab (group, widget);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
gtk_grab_notify (group, NULL, old_grab_widget, widget, TRUE);
|
1998-01-19 08:23:24 +00:00
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-21 04:18:11 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_grab_get_current:
|
|
|
|
|
*
|
|
|
|
|
* Queries the current grab of the default window group.
|
|
|
|
|
*
|
2015-09-15 07:19:31 +00:00
|
|
|
|
* Returns: (transfer none) (nullable): The widget which currently
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* has the grab or %NULL if no grab is active
|
|
|
|
|
*/
|
1998-02-17 06:03:40 +00:00
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_grab_get_current (void)
|
|
|
|
|
{
|
2001-06-14 21:44:01 +00:00
|
|
|
|
GtkWindowGroup *group;
|
|
|
|
|
|
|
|
|
|
group = gtk_main_get_window_group (NULL);
|
|
|
|
|
|
2010-12-18 01:41:16 +00:00
|
|
|
|
return gtk_window_group_get_current_grab (group);
|
1998-02-17 06:03:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
|
/**
|
2011-02-03 14:20:23 +00:00
|
|
|
|
* gtk_grab_remove: (method)
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* @widget: The widget which gives up the grab
|
|
|
|
|
*
|
|
|
|
|
* Removes the grab from the given widget.
|
|
|
|
|
*
|
|
|
|
|
* You have to pair calls to gtk_grab_add() and gtk_grab_remove().
|
|
|
|
|
*
|
|
|
|
|
* If @widget does not have the grab, this function does nothing.
|
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_grab_remove (GtkWidget *widget)
|
|
|
|
|
{
|
2001-06-14 21:44:01 +00:00
|
|
|
|
GtkWindowGroup *group;
|
2006-04-06 01:58:38 +00:00
|
|
|
|
GtkWidget *new_grab_widget;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
1998-01-19 08:23:24 +00:00
|
|
|
|
g_return_if_fail (widget != NULL);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2010-01-04 02:07:11 +00:00
|
|
|
|
if (gtk_widget_has_grab (widget))
|
1998-01-19 08:23:24 +00:00
|
|
|
|
{
|
2010-04-11 21:19:42 +00:00
|
|
|
|
_gtk_widget_set_has_grab (widget, FALSE);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
|
|
|
|
group = gtk_main_get_window_group (widget);
|
2010-12-18 01:41:16 +00:00
|
|
|
|
_gtk_window_group_remove_grab (group, widget);
|
|
|
|
|
new_grab_widget = gtk_window_group_get_current_grab (group);
|
2001-06-14 21:44:01 +00:00
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
gtk_grab_notify (group, NULL, widget, new_grab_widget, FALSE);
|
2010-12-18 01:41:16 +00:00
|
|
|
|
|
2006-04-06 01:58:38 +00:00
|
|
|
|
g_object_unref (widget);
|
1998-01-19 08:23:24 +00:00
|
|
|
|
}
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_device_grab_add:
|
|
|
|
|
* @widget: a #GtkWidget
|
2012-07-02 06:19:06 +00:00
|
|
|
|
* @device: a #GdkDevice to grab on.
|
2010-05-25 22:38:44 +00:00
|
|
|
|
* @block_others: %TRUE to prevent other devices to interact with @widget.
|
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Adds a GTK grab on @device, so all the events on @device and its
|
2010-05-25 22:38:44 +00:00
|
|
|
|
* associated pointer or keyboard (if any) are delivered to @widget.
|
|
|
|
|
* If the @block_others parameter is %TRUE, any other devices will be
|
|
|
|
|
* unable to interact with @widget during the grab.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
2010-05-25 22:38:44 +00:00
|
|
|
|
void
|
2011-01-04 22:32:12 +00:00
|
|
|
|
gtk_device_grab_add (GtkWidget *widget,
|
|
|
|
|
GdkDevice *device,
|
|
|
|
|
gboolean block_others)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
{
|
|
|
|
|
GtkWindowGroup *group;
|
|
|
|
|
GtkWidget *old_grab_widget;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (widget));
|
|
|
|
|
g_return_if_fail (GDK_IS_DEVICE (device));
|
|
|
|
|
|
|
|
|
|
group = gtk_main_get_window_group (widget);
|
|
|
|
|
old_grab_widget = gtk_window_group_get_current_device_grab (group, device);
|
|
|
|
|
|
|
|
|
|
if (old_grab_widget != widget)
|
|
|
|
|
_gtk_window_group_add_device_grab (group, widget, device, block_others);
|
|
|
|
|
|
|
|
|
|
gtk_grab_notify (group, device, old_grab_widget, widget, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_device_grab_remove:
|
|
|
|
|
* @widget: a #GtkWidget
|
|
|
|
|
* @device: a #GdkDevice
|
|
|
|
|
*
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* Removes a device grab from the given widget.
|
|
|
|
|
*
|
|
|
|
|
* You have to pair calls to gtk_device_grab_add() and
|
|
|
|
|
* gtk_device_grab_remove().
|
|
|
|
|
*/
|
2010-05-25 22:38:44 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_device_grab_remove (GtkWidget *widget,
|
|
|
|
|
GdkDevice *device)
|
|
|
|
|
{
|
|
|
|
|
GtkWindowGroup *group;
|
|
|
|
|
GtkWidget *new_grab_widget;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (widget));
|
|
|
|
|
g_return_if_fail (GDK_IS_DEVICE (device));
|
|
|
|
|
|
|
|
|
|
group = gtk_main_get_window_group (widget);
|
|
|
|
|
_gtk_window_group_remove_device_grab (group, widget, device);
|
|
|
|
|
new_grab_widget = gtk_window_group_get_current_device_grab (group, device);
|
|
|
|
|
|
|
|
|
|
gtk_grab_notify (group, device, widget, new_grab_widget, FALSE);
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_current_event:
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2019-04-05 05:07:32 +00:00
|
|
|
|
* Obtains a reference of the event currently being processed by GTK.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
|
|
|
|
* For example, if you are handling a #GtkButton::clicked signal,
|
|
|
|
|
* the current event will be the #GdkEventButton that triggered
|
|
|
|
|
* the ::clicked signal.
|
|
|
|
|
*
|
2017-10-31 13:03:35 +00:00
|
|
|
|
* Returns: (transfer full) (nullable): a reference of the current event, or
|
2011-01-18 09:01:17 +00:00
|
|
|
|
* %NULL if there is no current event. The returned event must be
|
2017-10-31 12:45:41 +00:00
|
|
|
|
* freed with g_object_unref().
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
1998-12-16 06:03:14 +00:00
|
|
|
|
GdkEvent*
|
1998-05-03 22:41:32 +00:00
|
|
|
|
gtk_get_current_event (void)
|
1997-12-18 02:17:14 +00:00
|
|
|
|
{
|
|
|
|
|
if (current_events)
|
2020-02-15 20:07:24 +00:00
|
|
|
|
return gdk_event_ref (current_events->data);
|
1997-12-18 02:17:14 +00:00
|
|
|
|
else
|
|
|
|
|
return NULL;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
Remove g_convert (moved to glib) and now useless utf_to_latin1()
Thu Sep 14 12:21:12 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktexttypes.[ch]: Remove g_convert (moved to
glib) and now useless utf_to_latin1() latin1_to_utf()
* gtk/gtktextview.[ch]: Change ::move_insert and
::delete_text action signals to ::move and ::delete;
create the signals with the right enumeration type,
not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
C-v bindings, change Home, End to move to beginning/end
of line, Add C-Home C-End to move to beginning/end
of buffer. Change ::cut_text to ::cut_clipboard, etc;
combine ::scroll_text into ::move; use new GtkSelectionData
functions to simplify DND text handling.
* gtk/gtkenums.h gtk/gtktextview.h: Move movement,
deletion enumerations here, rename enumeration values to
be consistently plural.
* gtk/gtktextbuffer.c: Use new clipboard interfaces
for cut/copy/paste and primary selection.
* gtk/gtktextbuffer.[ch]: Remove excess time and
'interactive' arguments from cut/copy/paste;
rename cut to cut_clipboard, etc; remove
gtk_text_buffer_get_clipboard_contents().
* gtk/gtktextlayout.[ch]: Add
gtk_text_layout_move_iter_to_line_end() to move the iter to
line ends.
* gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
Functions to set or get a UTF-8 string on the selection
data.
* gtk/gtkclipboard.[ch]: New, simplified selection handling
interfaces.
* gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
created widgets - one of these is useless if we don't.
* gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
a public function clear all targets registered for the
widget.
* gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
Never call gtk_widget_realize() - that was just asking
for bizarre side-effects.
* gtk/gtkselection.c (gtk_selection_owner_set): Call
gdk_selection_owner_set even if the widget is the
same so that we reliably update the timestamp on
the server.
* gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a
gdk_x11_get_server_time() function.
* gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
Add some tricky filtering on serial numbers for
selection clear events to fix up long-standard
race condition FIXME's in gtkselection.c.
* gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
routines to convert from utf8 to compound text or
STRING and from a text property to UTF-8.
* gtk/gtkmain.[ch] (gtk_get_current_event_time): Add
a convenience function gdk_get_current_event_time().
* gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
and free selection_data->data properly
2000-09-14 16:41:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_current_event_time:
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
|
|
|
|
* If there is a current event and it has a timestamp,
|
|
|
|
|
* return that timestamp, otherwise return %GDK_CURRENT_TIME.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the timestamp from the current event,
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* or %GDK_CURRENT_TIME.
|
|
|
|
|
*/
|
Remove g_convert (moved to glib) and now useless utf_to_latin1()
Thu Sep 14 12:21:12 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktexttypes.[ch]: Remove g_convert (moved to
glib) and now useless utf_to_latin1() latin1_to_utf()
* gtk/gtktextview.[ch]: Change ::move_insert and
::delete_text action signals to ::move and ::delete;
create the signals with the right enumeration type,
not GTK_TYPE_ENUM so that bindings work. Add C-d, M-d,
C-v bindings, change Home, End to move to beginning/end
of line, Add C-Home C-End to move to beginning/end
of buffer. Change ::cut_text to ::cut_clipboard, etc;
combine ::scroll_text into ::move; use new GtkSelectionData
functions to simplify DND text handling.
* gtk/gtkenums.h gtk/gtktextview.h: Move movement,
deletion enumerations here, rename enumeration values to
be consistently plural.
* gtk/gtktextbuffer.c: Use new clipboard interfaces
for cut/copy/paste and primary selection.
* gtk/gtktextbuffer.[ch]: Remove excess time and
'interactive' arguments from cut/copy/paste;
rename cut to cut_clipboard, etc; remove
gtk_text_buffer_get_clipboard_contents().
* gtk/gtktextlayout.[ch]: Add
gtk_text_layout_move_iter_to_line_end() to move the iter to
line ends.
* gtk/gtkselection.[ch] (gtk_selection_data_set/get_text):
Functions to set or get a UTF-8 string on the selection
data.
* gtk/gtkclipboard.[ch]: New, simplified selection handling
interfaces.
* gtk/gtkinvisible.c (gtk_invisible_new): Realize newly
created widgets - one of these is useless if we don't.
* gtk/gtkselection.[ch] (gtk_selection_clear_targets): Export
a public function clear all targets registered for the
widget.
* gtk/gtkselection.c (gtk_selection_owner_set) docs/Changes-2.0.txt:
Never call gtk_widget_realize() - that was just asking
for bizarre side-effects.
* gtk/gtkselection.c (gtk_selection_owner_set): Call
gdk_selection_owner_set even if the widget is the
same so that we reliably update the timestamp on
the server.
* gdk/x11/gdkevents-x11.c gdk/x11/gdkx.h: Add a
gdk_x11_get_server_time() function.
* gdk/x11/gdkevents-x11.c gdk/x11/gdkprivate-x11.h
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.h:
Add some tricky filtering on serial numbers for
selection clear events to fix up long-standard
race condition FIXME's in gtkselection.c.
* gdk/gdkproperty.h gdk/x11/gdkselection-x11.h: Add
routines to convert from utf8 to compound text or
STRING and from a text property to UTF-8.
* gtk/gtkmain.[ch] (gtk_get_current_event_time): Add
a convenience function gdk_get_current_event_time().
* gtk/gtkselection.c (gtk_selection_data_copy/free): Copy
and free selection_data->data properly
2000-09-14 16:41:20 +00:00
|
|
|
|
guint32
|
|
|
|
|
gtk_get_current_event_time (void)
|
|
|
|
|
{
|
|
|
|
|
if (current_events)
|
|
|
|
|
return gdk_event_get_time (current_events->data);
|
|
|
|
|
else
|
|
|
|
|
return GDK_CURRENT_TIME;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_current_event_state:
|
2011-01-18 09:10:30 +00:00
|
|
|
|
* @state: (out): a location to store the state of the current event
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2001-02-03 01:09:41 +00:00
|
|
|
|
* If there is a current event and it has a state field, place
|
|
|
|
|
* that state field in @state and return %TRUE, otherwise return
|
|
|
|
|
* %FALSE.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if there was a current event and it
|
2011-01-04 22:32:12 +00:00
|
|
|
|
* had a state field
|
|
|
|
|
*/
|
Adapt to uscore-ification of gtktextiterprivate
2001-01-03 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
* gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use
of private functions; remove inclusion of private headers.
* gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this
function, so we don't need private functions in gtktextdisplay.c
* gtk/gtktextiterprivate.h: underscore-ification
* gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
to instead say "only useful to implement widgets"
* gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
* gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
This function was completely broken
* gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
* gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
* gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
* gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
* gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
* gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
gtk_paint_layout
* gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
gtk_paint_layout
* gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
Progress on bug 40103. Add draw_layout to draw a PangoLayout.
(struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
which were not implemented.
* gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
insert_pixbuf signal. Rename delete_text to delete_range since it
also deletes pixbufs and child anchors. This almost closes bug
40245 (still need to deal with child anchors)
* gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
insert_pixbuf, change signal names as appropriate, change types of
signals taking marks/tags to have the specific type, not just
G_TYPE_OBJECT
* gtk/gtkmain.c (gtk_get_current_event_state): Add this function;
closes bug 40051
* gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
unnecessary remove_contents() call
(gtk_option_menu_class_init): add a "changed" signal, closes
bug 40039
(gtk_option_menu_update_contents): emit "changed" if the
active menu item changes
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
cast to GtkObject, reported by Jonas Borgstrom
(gdk_pixbuf_loader_finalize): don't close the loader on finalize;
we can't do stuff with side effects in finalize. Instead, spew a
warning if the loader isn't closed.
* gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
colormap in here, non-X ports probably need to sync to this change
* gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove
assertion that colormap != NULL, you can set the colormap to NULL
if you like.
* Makefile.am: remove gtk-config-2.0
* configure.in: Use pkg-config to locate GLib. Remove
separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
Use pkg-config to locate Pango. Output correct Pango libs to
gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
* Makefile.am (pkgconfig_DATA): install only target-specific pc
files
(install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
X11 pc files
* gtk+-2.0.pc.in (Requires): require the GDK for the current target
unref from here
2001-01-04 17:48:43 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_get_current_event_state (GdkModifierType *state)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (state != NULL, FALSE);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
Adapt to uscore-ification of gtktextiterprivate
2001-01-03 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c: Adapt to uscore-ification of gtktextiterprivate
* gtk/gtktextdisplay.c (gtk_text_layout_draw): remove use
of private functions; remove inclusion of private headers.
* gtk/gtktextlayout.c (gtk_text_layout_get_iter_at_line): Add this
function, so we don't need private functions in gtktextdisplay.c
* gtk/gtktextiterprivate.h: underscore-ification
* gtk/gtkwidget.c: Clean up a bunch of docs that said "INTERNAL"
to instead say "only useful to implement widgets"
* gtk/gtkenums.h (GtkMovementStep): Rename GTK_MOVEMENT_CHARS,
GTK_MOVEMENT_POSITIONS to GTK_MOVEMENT_LOGICAL_POSITIONS,
GTK_MOVEMENT_VISUAL_POSITIONS. Resolves bug 40249.
* gdk/x11/gdkwindow-x11.c (gdk_window_impl_x11_set_colormap):
This function was completely broken
* gtk/testtext.c (line_numbers_expose): use gtk_paint_layout
* gtk/gtkvscale.c (gtk_vscale_draw_value): use gtk_paint_layout
* gtk/gtkvruler.c (gtk_vruler_draw_ticks): use gtk_paint_layout
* gtk/gtklabel.c (gtk_label_expose): use gtk_paint_layout
* gtk/gtkhscale.c (gtk_hscale_draw_value): use gtk_paint_layout
* gtk/gtkhruler.c (gtk_hruler_draw_ticks): use gtk_paint_layout
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): use
gtk_paint_layout
* gtk/gtkaccellabel.c (gtk_accel_label_expose_event): use
gtk_paint_layout
* gtk/gtkstyle.h: Add draw/paint expander to draw tree expanders.
Progress on bug 40103. Add draw_layout to draw a PangoLayout.
(struct _GtkStyleClass): Remove draw_cross, draw_oval, draw_ramp,
which were not implemented.
* gtk/gtktextbuffer.h (struct _GtkTextBufferClass): Add
insert_pixbuf signal. Rename delete_text to delete_range since it
also deletes pixbufs and child anchors. This almost closes bug
40245 (still need to deal with child anchors)
* gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add
insert_pixbuf, change signal names as appropriate, change types of
signals taking marks/tags to have the specific type, not just
G_TYPE_OBJECT
* gtk/gtkmain.c (gtk_get_current_event_state): Add this function;
closes bug 40051
* gtk/gtkoptionmenu.c (gtk_option_menu_set_history): clean up
unnecessary remove_contents() call
(gtk_option_menu_class_init): add a "changed" signal, closes
bug 40039
(gtk_option_menu_update_contents): emit "changed" if the
active menu item changes
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done): fix bad
cast to GtkObject, reported by Jonas Borgstrom
(gdk_pixbuf_loader_finalize): don't close the loader on finalize;
we can't do stuff with side effects in finalize. Instead, spew a
warning if the loader isn't closed.
* gdk/x11/gdkdrawable-x11.c (gdk_drawable_impl_x11_finalize): free
colormap in here, non-X ports probably need to sync to this change
* gdk/x11/gdkdrawable-x11.c (gdk_x11_set_colormap): remove
assertion that colormap != NULL, you can set the colormap to NULL
if you like.
* Makefile.am: remove gtk-config-2.0
* configure.in: Use pkg-config to locate GLib. Remove
separated-out GMODULE_LIBS, GMODULE_CFLAGS; these were not used,
and the gmodule libs/cflags were in GLIB_LIBS GLIB_CFLAGS anyhow.
Use pkg-config to locate Pango. Output correct Pango libs to
gdk-2.0.pc.in. Fix test for FREETYPE_CONFIG (typo fix).
* Makefile.am (pkgconfig_DATA): install only target-specific pc
files
(install-data-local): symlink gtk+-2.0.pc and gdk-2.0.pc to the
X11 pc files
* gtk+-2.0.pc.in (Requires): require the GDK for the current target
unref from here
2001-01-04 17:48:43 +00:00
|
|
|
|
if (current_events)
|
|
|
|
|
return gdk_event_get_state (current_events->data, state);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*state = 0;
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_current_event_device:
|
|
|
|
|
*
|
|
|
|
|
* If there is a current event and it has a device, return that
|
|
|
|
|
* device, otherwise return %NULL.
|
|
|
|
|
*
|
2015-09-15 07:19:31 +00:00
|
|
|
|
* Returns: (transfer none) (nullable): a #GdkDevice, or %NULL
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *
|
|
|
|
|
gtk_get_current_event_device (void)
|
|
|
|
|
{
|
|
|
|
|
if (current_events)
|
|
|
|
|
return gdk_event_get_device (current_events->data);
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_get_event_widget:
|
|
|
|
|
* @event: a #GdkEvent
|
|
|
|
|
*
|
|
|
|
|
* If @event is %NULL or the event was not associated with any widget,
|
|
|
|
|
* returns %NULL, otherwise returns the widget that received the event
|
|
|
|
|
* originally.
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*
|
2015-09-15 07:19:31 +00:00
|
|
|
|
* Returns: (transfer none) (nullable): the widget that originally
|
2010-09-21 04:18:11 +00:00
|
|
|
|
* received @event, or %NULL
|
2011-01-04 22:32:12 +00:00
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
GtkWidget*
|
2017-05-10 16:03:10 +00:00
|
|
|
|
gtk_get_event_widget (const GdkEvent *event)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
|
|
|
|
GtkWidget *widget;
|
1998-01-30 23:47:09 +00:00
|
|
|
|
|
|
|
|
|
widget = NULL;
|
2018-03-20 14:14:10 +00:00
|
|
|
|
if (event && event->any.surface &&
|
2020-02-15 16:19:59 +00:00
|
|
|
|
(!gdk_surface_is_destroyed (event->any.surface)))
|
2019-05-26 18:02:55 +00:00
|
|
|
|
widget = gtk_native_get_for_surface (event->any.surface);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
return widget;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
propagate_event_up (GtkWidget *widget,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
GtkWidget *topmost)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2011-02-08 13:49:31 +00:00
|
|
|
|
gboolean handled_event = FALSE;
|
2020-02-16 07:20:34 +00:00
|
|
|
|
GtkWidget *target = widget;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
/* Propagate event up the widget tree so that
|
|
|
|
|
* parents can see the button and motion
|
|
|
|
|
* events of the children.
|
|
|
|
|
*/
|
|
|
|
|
while (TRUE)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *tmp;
|
|
|
|
|
|
|
|
|
|
g_object_ref (widget);
|
|
|
|
|
|
|
|
|
|
/* Scroll events are special cased here because it
|
|
|
|
|
* feels wrong when scrolling a GtkViewport, say,
|
|
|
|
|
* to have children of the viewport eat the scroll
|
|
|
|
|
* event
|
|
|
|
|
*/
|
|
|
|
|
if (!gtk_widget_is_sensitive (widget))
|
2017-10-11 13:55:19 +00:00
|
|
|
|
handled_event = event->any.type != GDK_SCROLL;
|
2018-12-08 00:18:35 +00:00
|
|
|
|
else if (gtk_widget_get_realized (widget))
|
2020-02-16 07:20:34 +00:00
|
|
|
|
handled_event = gtk_widget_event (widget, event, target);
|
2011-02-08 13:49:31 +00:00
|
|
|
|
|
2018-12-17 17:04:10 +00:00
|
|
|
|
handled_event |= !gtk_widget_get_realized (widget);
|
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
tmp = gtk_widget_get_parent (widget);
|
|
|
|
|
g_object_unref (widget);
|
|
|
|
|
|
|
|
|
|
if (widget == topmost)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
widget = tmp;
|
|
|
|
|
|
|
|
|
|
if (handled_event || !widget)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return handled_event;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
propagate_event_down (GtkWidget *widget,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
GtkWidget *topmost)
|
|
|
|
|
{
|
|
|
|
|
gint handled_event = FALSE;
|
|
|
|
|
GList *widgets = NULL;
|
|
|
|
|
GList *l;
|
2020-02-16 07:20:34 +00:00
|
|
|
|
GtkWidget *target = widget;
|
2011-02-08 13:49:31 +00:00
|
|
|
|
|
|
|
|
|
widgets = g_list_prepend (widgets, g_object_ref (widget));
|
|
|
|
|
while (widget && widget != topmost)
|
|
|
|
|
{
|
|
|
|
|
widget = gtk_widget_get_parent (widget);
|
|
|
|
|
if (!widget)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
widgets = g_list_prepend (widgets, g_object_ref (widget));
|
|
|
|
|
|
|
|
|
|
if (widget == topmost)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-19 23:15:30 +00:00
|
|
|
|
for (l = widgets; l && !handled_event; l = l->next)
|
2011-02-08 13:49:31 +00:00
|
|
|
|
{
|
|
|
|
|
widget = (GtkWidget *)l->data;
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
if (!gtk_widget_is_sensitive (widget))
|
2012-11-22 12:37:58 +00:00
|
|
|
|
{
|
|
|
|
|
/* stop propagating on SCROLL, but don't handle the event, so it
|
|
|
|
|
* can propagate up again and reach its handling widget
|
|
|
|
|
*/
|
2017-10-11 13:55:19 +00:00
|
|
|
|
if (event->any.type == GDK_SCROLL)
|
2012-11-22 12:37:58 +00:00
|
|
|
|
break;
|
|
|
|
|
else
|
|
|
|
|
handled_event = TRUE;
|
|
|
|
|
}
|
2018-12-08 00:18:35 +00:00
|
|
|
|
else if (gtk_widget_get_realized (widget))
|
2020-02-16 07:20:34 +00:00
|
|
|
|
handled_event = _gtk_widget_captured_event (widget, event, target);
|
2018-12-17 17:04:10 +00:00
|
|
|
|
|
|
|
|
|
handled_event |= !gtk_widget_get_realized (widget);
|
2011-02-08 13:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
g_list_free_full (widgets, (GDestroyNotify)g_object_unref);
|
1998-03-27 05:17:11 +00:00
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
return handled_event;
|
|
|
|
|
}
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
|
gboolean
|
2017-05-29 12:55:37 +00:00
|
|
|
|
gtk_propagate_event_internal (GtkWidget *widget,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
GtkWidget *topmost)
|
|
|
|
|
{
|
|
|
|
|
/* Propagate the event down and up */
|
2020-01-06 04:49:22 +00:00
|
|
|
|
if (propagate_event_down (widget, event, topmost))
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
if (propagate_event_up (widget, event, topmost))
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
2017-05-29 12:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 13:49:31 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_propagate_event:
|
|
|
|
|
* @widget: a #GtkWidget
|
|
|
|
|
* @event: an event
|
|
|
|
|
*
|
|
|
|
|
* Sends an event to a widget, propagating the event to parent widgets
|
2017-05-29 12:55:37 +00:00
|
|
|
|
* if the event remains unhandled. This function will emit the event
|
|
|
|
|
* through all the hierarchy of @widget through all propagation phases.
|
2011-02-08 13:49:31 +00:00
|
|
|
|
*
|
2020-02-09 15:45:33 +00:00
|
|
|
|
* Events received by GTK from GDK normally begin at a #GtkRoot widget.
|
2011-02-08 13:49:31 +00:00
|
|
|
|
* Depending on the type of event, existence of modal dialogs, grabs, etc.,
|
|
|
|
|
* the event may be propagated; if so, this function is used.
|
|
|
|
|
*
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* All that said, you most likely don’t want to use any of these
|
2011-02-08 13:49:31 +00:00
|
|
|
|
* functions; synthesizing events is rarely needed. There are almost
|
|
|
|
|
* certainly better ways to achieve your goals. For example, use
|
2016-10-19 20:33:26 +00:00
|
|
|
|
* gtk_widget_queue_draw() instead
|
2011-02-08 13:49:31 +00:00
|
|
|
|
* of making up expose events.
|
2020-01-06 04:49:22 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the event was handled
|
2011-02-08 13:49:31 +00:00
|
|
|
|
*/
|
2020-01-06 04:49:22 +00:00
|
|
|
|
gboolean
|
2011-02-08 13:49:31 +00:00
|
|
|
|
gtk_propagate_event (GtkWidget *widget,
|
|
|
|
|
GdkEvent *event)
|
|
|
|
|
{
|
2017-05-29 12:55:37 +00:00
|
|
|
|
GtkWindowGroup *window_group;
|
|
|
|
|
GtkWidget *event_widget, *topmost = NULL;
|
|
|
|
|
GdkDevice *device;
|
|
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
|
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2017-05-29 12:55:37 +00:00
|
|
|
|
event_widget = gtk_get_event_widget (event);
|
|
|
|
|
window_group = gtk_main_get_window_group (event_widget);
|
|
|
|
|
device = gdk_event_get_device (event);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
|
2017-05-29 12:55:37 +00:00
|
|
|
|
/* check whether there is a (device) grab in effect... */
|
|
|
|
|
if (device)
|
|
|
|
|
topmost = gtk_window_group_get_current_device_grab (window_group, device);
|
|
|
|
|
if (!topmost)
|
|
|
|
|
topmost = gtk_window_group_get_current_grab (window_group);
|
|
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
|
return gtk_propagate_event_internal (widget, event, topmost);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|