2010-10-20 11:04:53 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* 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
|
2010-10-20 11:04:53 +00:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
2010-10-20 11:04:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
1998-02-02 04:56:42 +00:00
|
|
|
#ifndef __GTK_PRIVATE_H__
|
|
|
|
#define __GTK_PRIVATE_H__
|
|
|
|
|
2011-11-02 05:15:21 +00:00
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gdk/gdk.h>
|
2018-11-01 17:46:04 +00:00
|
|
|
#include <gdk/gdk-private.h>
|
2011-01-04 22:32:12 +00:00
|
|
|
|
2011-11-25 12:07:43 +00:00
|
|
|
#include "gtkcsstypesprivate.h"
|
2012-07-11 13:51:43 +00:00
|
|
|
#include "gtktexthandleprivate.h"
|
2020-02-21 04:20:58 +00:00
|
|
|
#include "gtkeventcontrollerprivate.h"
|
2020-02-28 21:36:17 +00:00
|
|
|
#include "gtkwindowgroup.h"
|
2011-11-25 12:07:43 +00:00
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
G_BEGIN_DECLS
|
1998-02-02 04:56:42 +00:00
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
#define GTK_PARAM_READABLE G_PARAM_READABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
#define GTK_PARAM_WRITABLE G_PARAM_WRITABLE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
#define GTK_PARAM_READWRITE G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB
|
|
|
|
|
2013-04-29 23:15:01 +00:00
|
|
|
#define OPPOSITE_ORIENTATION(_orientation) (1 - (_orientation))
|
|
|
|
|
2019-08-19 08:54:09 +00:00
|
|
|
#ifndef G_ENABLE_CONSISTENCY_CHECKS
|
|
|
|
/* This is true for buildtypes release and debugoptimized */
|
2012-12-03 12:25:14 +00:00
|
|
|
#define gtk_internal_return_if_fail(__expr) G_STMT_START{ (void)0; }G_STMT_END
|
|
|
|
#define gtk_internal_return_val_if_fail(__expr, __val) G_STMT_START{ (void)0; }G_STMT_END
|
|
|
|
#else
|
2019-08-19 08:54:09 +00:00
|
|
|
/* This is true for debug builds */
|
2012-12-03 12:25:14 +00:00
|
|
|
#define gtk_internal_return_if_fail(__expr) g_return_if_fail(__expr)
|
|
|
|
#define gtk_internal_return_val_if_fail(__expr, __val) g_return_val_if_fail(__expr, __val)
|
|
|
|
#endif
|
|
|
|
|
2020-07-24 18:40:36 +00:00
|
|
|
const char * _gtk_get_datadir (void);
|
|
|
|
const char * _gtk_get_libdir (void);
|
|
|
|
const char * _gtk_get_sysconfdir (void);
|
|
|
|
const char * _gtk_get_localedir (void);
|
|
|
|
const char * _gtk_get_data_prefix (void);
|
2011-10-22 06:48:13 +00:00
|
|
|
|
|
|
|
gboolean _gtk_fnmatch (const char *pattern,
|
|
|
|
const char *string,
|
|
|
|
gboolean no_leading_period);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
2020-07-24 18:40:36 +00:00
|
|
|
char * _gtk_get_lc_ctype (void);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
2013-03-24 08:16:20 +00:00
|
|
|
void _gtk_ensure_resources (void);
|
|
|
|
|
2017-11-29 23:09:37 +00:00
|
|
|
void gtk_main_sync (void);
|
|
|
|
|
2020-02-28 21:36:17 +00:00
|
|
|
GtkWidget * gtk_window_group_get_current_grab (GtkWindowGroup *window_group);
|
|
|
|
void gtk_grab_add (GtkWidget *widget);
|
|
|
|
void gtk_grab_remove (GtkWidget *widget);
|
|
|
|
|
2011-10-22 06:48:13 +00:00
|
|
|
gboolean _gtk_boolean_handled_accumulator (GSignalInvocationHint *ihint,
|
|
|
|
GValue *return_accu,
|
|
|
|
const GValue *handler_return,
|
|
|
|
gpointer dummy);
|
2011-01-04 22:32:12 +00:00
|
|
|
|
2011-10-22 06:48:13 +00:00
|
|
|
gboolean _gtk_single_string_accumulator (GSignalInvocationHint *ihint,
|
|
|
|
GValue *return_accu,
|
|
|
|
const GValue *handler_return,
|
|
|
|
gpointer dummy);
|
2010-09-09 06:02:56 +00:00
|
|
|
|
2020-01-06 04:49:22 +00:00
|
|
|
gboolean gtk_propagate_event_internal (GtkWidget *widget,
|
2011-02-08 13:49:31 +00:00
|
|
|
GdkEvent *event,
|
|
|
|
GtkWidget *topmost);
|
2020-02-09 16:00:53 +00:00
|
|
|
gboolean gtk_propagate_event (GtkWidget *widget,
|
|
|
|
GdkEvent *event);
|
2020-02-09 15:55:56 +00:00
|
|
|
void gtk_main_do_event (GdkEvent *event);
|
2011-02-08 13:49:31 +00:00
|
|
|
|
2020-02-21 04:20:58 +00:00
|
|
|
GtkWidget *gtk_get_event_widget (GdkEvent *event);
|
|
|
|
|
2020-04-11 19:04:52 +00:00
|
|
|
guint32 gtk_get_current_event_time (void);
|
|
|
|
|
2020-02-21 04:20:58 +00:00
|
|
|
void check_crossing_invariants (GtkWidget *widget,
|
|
|
|
GtkCrossingData *crossing);
|
|
|
|
|
2020-07-24 20:32:16 +00:00
|
|
|
double _gtk_get_slowdown (void);
|
|
|
|
void _gtk_set_slowdown (double slowdown_factor);
|
2016-03-14 10:38:23 +00:00
|
|
|
|
2018-08-30 17:05:55 +00:00
|
|
|
char *gtk_get_portal_request_path (GDBusConnection *connection,
|
|
|
|
char **token);
|
|
|
|
char *gtk_get_portal_session_path (GDBusConnection *connection,
|
|
|
|
char **token);
|
2020-03-23 13:56:43 +00:00
|
|
|
guint gtk_get_portal_interface_version (GDBusConnection *connection,
|
|
|
|
const char *interface_name);
|
2016-07-05 00:29:59 +00:00
|
|
|
|
2018-08-15 22:53:05 +00:00
|
|
|
#define PORTAL_BUS_NAME "org.freedesktop.portal.Desktop"
|
|
|
|
#define PORTAL_OBJECT_PATH "/org/freedesktop/portal/desktop"
|
|
|
|
#define PORTAL_REQUEST_INTERFACE "org.freedesktop.portal.Request"
|
2018-08-30 05:06:51 +00:00
|
|
|
#define PORTAL_SESSION_INTERFACE "org.freedesktop.portal.Session"
|
2018-08-15 22:53:05 +00:00
|
|
|
#define PORTAL_FILECHOOSER_INTERFACE "org.freedesktop.portal.FileChooser"
|
|
|
|
#define PORTAL_PRINT_INTERFACE "org.freedesktop.portal.Print"
|
|
|
|
#define PORTAL_SCREENSHOT_INTERFACE "org.freedesktop.portal.Screenshot"
|
|
|
|
#define PORTAL_INHIBIT_INTERFACE "org.freedesktop.portal.Inhibit"
|
|
|
|
|
2014-07-29 08:18:32 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
void _gtk_load_dll_with_libgtk3_manifest (const char *dllname);
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 17:30:05 +00:00
|
|
|
gboolean gtk_simulate_touchscreen (void);
|
|
|
|
|
2016-10-15 20:34:52 +00:00
|
|
|
void gtk_set_display_debug_flags (GdkDisplay *display,
|
|
|
|
guint flags);
|
2016-03-11 05:16:35 +00:00
|
|
|
guint gtk_get_display_debug_flags (GdkDisplay *display);
|
2018-07-07 09:37:24 +00:00
|
|
|
gboolean gtk_get_any_display_debug_flag_set (void);
|
2016-03-11 05:16:35 +00:00
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
|
2018-07-07 09:37:24 +00:00
|
|
|
#define GTK_DISPLAY_DEBUG_CHECK(display,type) (gtk_get_any_display_debug_flag_set () && G_UNLIKELY (gtk_get_display_debug_flags (display) & GTK_DEBUG_##type))
|
2018-01-14 14:54:45 +00:00
|
|
|
#define GTK_DISPLAY_NOTE(display,type,action) \
|
|
|
|
G_STMT_START { \
|
|
|
|
if (GTK_DISPLAY_DEBUG_CHECK (display,type)) { action; }; \
|
|
|
|
} G_STMT_END
|
2016-03-11 05:16:35 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define GTK_DISPLAY_DEBUG_CHECK(display,type) 0
|
2018-01-14 14:54:45 +00:00
|
|
|
#define GTK_DISPLAY_NOTE(display,type,action)
|
2016-03-11 05:16:35 +00:00
|
|
|
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
G_END_DECLS
|
1998-02-02 04:56:42 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_PRIVATE_H__ */
|