mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
67 lines
2.2 KiB
C
67 lines
2.2 KiB
C
#ifndef __GDK__PRIVATE_H__
|
|
#define __GDK__PRIVATE_H__
|
|
|
|
#include "gdk/gdktypes.h"
|
|
|
|
/* Private API for use in GTK+ */
|
|
|
|
GdkDisplay * gdk_display_open_default (void);
|
|
|
|
gboolean gdk_device_grab_info (GdkDisplay *display,
|
|
GdkDevice *device,
|
|
GdkSurface **grab_surface,
|
|
gboolean *owner_events);
|
|
|
|
void gdk_pre_parse (void);
|
|
|
|
gboolean gdk_surface_supports_edge_constraints (GdkSurface *surface);
|
|
|
|
void gdk_display_set_double_click_time (GdkDisplay *display,
|
|
guint msec);
|
|
void gdk_display_set_double_click_distance (GdkDisplay *display,
|
|
guint distance);
|
|
void gdk_display_set_cursor_theme (GdkDisplay *display,
|
|
const char *theme,
|
|
int size);
|
|
gboolean gdk_running_in_sandbox (void);
|
|
gboolean gdk_should_use_portal (void);
|
|
|
|
const char * gdk_get_startup_notification_id (void);
|
|
|
|
PangoDirection gdk_unichar_direction (gunichar ch) G_GNUC_CONST;
|
|
PangoDirection gdk_find_base_dir (const char *text,
|
|
int len);
|
|
|
|
typedef struct
|
|
{
|
|
const char *key;
|
|
guint value;
|
|
const char *help;
|
|
gboolean always_enabled;
|
|
} GdkDebugKey;
|
|
|
|
guint gdk_parse_debug_var (const char *variable,
|
|
const GdkDebugKey *keys,
|
|
guint nkeys);
|
|
|
|
/* Backward compatibility shim, to avoid bumping up the minimum
|
|
* required version of GLib; most of our uses of g_memdup() are
|
|
* safe, and those that aren't have been fixed
|
|
*/
|
|
#if !GLIB_CHECK_VERSION (2, 67, 3)
|
|
# define g_memdup2(mem,size) g_memdup((mem),(size))
|
|
#endif
|
|
|
|
void gdk_source_set_static_name_by_id (guint tag,
|
|
const char *name);
|
|
|
|
#if !GLIB_CHECK_VERSION(2, 69, 1)
|
|
#define g_source_set_static_name(source, name) g_source_set_name ((source), (name))
|
|
#endif
|
|
|
|
#ifndef I_
|
|
#define I_(string) g_intern_static_string (string)
|
|
#endif
|
|
|
|
#endif /* __GDK__PRIVATE_H__ */
|