2008-07-01 22:57:50 +00:00
|
|
|
|
/* GDK - The GIMP Drawing Kit
|
2000-03-28 01:24:44 +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
|
2000-03-28 01:24:44 +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
|
2010-12-11 05:14:53 +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.
|
2000-03-28 01:24:44 +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/>.
|
2000-03-28 01:24:44 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
2000-03-28 01:24:44 +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/.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Uninstalled header defining types and functions internal to GDK */
|
|
|
|
|
|
2008-02-16 04:33:48 +00:00
|
|
|
|
#ifndef __GDK_INTERNALS_H__
|
|
|
|
|
#define __GDK_INTERNALS_H__
|
|
|
|
|
|
2017-11-17 05:34:04 +00:00
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2010-12-11 05:14:53 +00:00
|
|
|
|
#include "gdkdisplay.h"
|
2017-08-05 13:34:39 +00:00
|
|
|
|
#include "gdkeventsprivate.h"
|
2019-04-22 01:14:46 +00:00
|
|
|
|
#include "gdksurfaceprivate.h"
|
2017-11-17 05:34:04 +00:00
|
|
|
|
#include "gdkenumtypes.h"
|
2018-07-02 11:39:09 +00:00
|
|
|
|
#include "gdkdragprivate.h"
|
2020-04-05 15:29:12 +00:00
|
|
|
|
#include "gdkkeysprivate.h"
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
2007-06-19 18:37:14 +00:00
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
/**********************
|
|
|
|
|
* General Facilities *
|
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
|
|
/* Debugging support */
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2018-01-11 13:53:57 +00:00
|
|
|
|
GDK_DEBUG_MISC = 1 << 0,
|
|
|
|
|
GDK_DEBUG_EVENTS = 1 << 1,
|
|
|
|
|
GDK_DEBUG_DND = 1 << 2,
|
|
|
|
|
GDK_DEBUG_INPUT = 1 << 3,
|
|
|
|
|
GDK_DEBUG_EVENTLOOP = 1 << 4,
|
|
|
|
|
GDK_DEBUG_FRAMES = 1 << 5,
|
|
|
|
|
GDK_DEBUG_SETTINGS = 1 << 6,
|
|
|
|
|
GDK_DEBUG_OPENGL = 1 << 7,
|
|
|
|
|
GDK_DEBUG_VULKAN = 1 << 8,
|
|
|
|
|
GDK_DEBUG_SELECTION = 1 << 9,
|
|
|
|
|
GDK_DEBUG_CLIPBOARD = 1 << 10,
|
|
|
|
|
/* flags below are influencing behavior */
|
|
|
|
|
GDK_DEBUG_NOGRABS = 1 << 11,
|
|
|
|
|
GDK_DEBUG_GL_DISABLE = 1 << 12,
|
2018-01-13 00:49:27 +00:00
|
|
|
|
GDK_DEBUG_GL_SOFTWARE = 1 << 13,
|
|
|
|
|
GDK_DEBUG_GL_TEXTURE_RECT = 1 << 14,
|
|
|
|
|
GDK_DEBUG_GL_LEGACY = 1 << 15,
|
|
|
|
|
GDK_DEBUG_GL_GLES = 1 << 16,
|
2019-04-24 13:23:32 +00:00
|
|
|
|
GDK_DEBUG_GL_DEBUG = 1 << 17,
|
|
|
|
|
GDK_DEBUG_VULKAN_DISABLE = 1 << 18,
|
2020-02-03 14:11:35 +00:00
|
|
|
|
GDK_DEBUG_VULKAN_VALIDATE = 1 << 19,
|
|
|
|
|
GDK_DEBUG_DEFAULT_SETTINGS= 1 << 20
|
2018-01-11 13:53:57 +00:00
|
|
|
|
} GdkDebugFlags;
|
2016-11-29 14:35:04 +00:00
|
|
|
|
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
|
extern guint _gdk_debug_flags;
|
2018-01-11 13:53:57 +00:00
|
|
|
|
|
2018-01-12 00:48:27 +00:00
|
|
|
|
GdkDebugFlags gdk_display_get_debug_flags (GdkDisplay *display);
|
|
|
|
|
void gdk_display_set_debug_flags (GdkDisplay *display,
|
|
|
|
|
GdkDebugFlags flags);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
|
|
2018-01-12 00:48:27 +00:00
|
|
|
|
#define GDK_DISPLAY_DEBUG_CHECK(display,type) \
|
|
|
|
|
G_UNLIKELY (gdk_display_get_debug_flags (display) & GDK_DEBUG_##type)
|
|
|
|
|
#define GDK_DISPLAY_NOTE(display,type,action) G_STMT_START { \
|
|
|
|
|
if (GDK_DISPLAY_DEBUG_CHECK (display,type)) \
|
|
|
|
|
{ action; }; } G_STMT_END
|
2018-01-11 13:53:57 +00:00
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
#else /* !G_ENABLE_DEBUG */
|
|
|
|
|
|
2018-01-11 13:53:57 +00:00
|
|
|
|
#define GDK_DISPLAY_DEBUG_CHECK(display,type) 0
|
2018-01-12 00:48:27 +00:00
|
|
|
|
#define GDK_DISPLAY_NOTE(display,type,action)
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
|
|
|
|
|
2018-01-12 00:48:27 +00:00
|
|
|
|
#define GDK_DEBUG_CHECK(type) GDK_DISPLAY_DEBUG_CHECK (NULL,type)
|
|
|
|
|
#define GDK_NOTE(type,action) GDK_DISPLAY_NOTE (NULL,type,action)
|
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
/* Event handling */
|
|
|
|
|
|
2002-08-24 22:03:46 +00:00
|
|
|
|
typedef struct _GdkEventPrivate GdkEventPrivate;
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
/* Following flag is set for events on the event queue during
|
|
|
|
|
* translation and cleared afterwards.
|
|
|
|
|
*/
|
2011-12-28 00:37:01 +00:00
|
|
|
|
GDK_EVENT_PENDING = 1 << 0,
|
|
|
|
|
|
2013-11-11 23:04:34 +00:00
|
|
|
|
/* When we are ready to draw a frame, we pause event delivery,
|
|
|
|
|
* mark all events in the queue with this flag, and deliver
|
|
|
|
|
* only those events until we finish the frame.
|
|
|
|
|
*/
|
|
|
|
|
GDK_EVENT_FLUSHED = 1 << 2
|
2002-08-24 22:03:46 +00:00
|
|
|
|
} GdkEventFlags;
|
|
|
|
|
|
2018-03-20 10:40:08 +00:00
|
|
|
|
typedef struct _GdkSurfacePaint GdkSurfacePaint;
|
2009-02-18 11:49:34 +00:00
|
|
|
|
|
2018-03-20 11:05:26 +00:00
|
|
|
|
#define GDK_SURFACE_TYPE(d) ((((GdkSurface *)(d)))->surface_type)
|
2018-03-20 10:40:08 +00:00
|
|
|
|
#define GDK_SURFACE_DESTROYED(d) (((GdkSurface *)(d))->destroyed)
|
2009-02-18 11:49:34 +00:00
|
|
|
|
|
2002-10-31 21:12:23 +00:00
|
|
|
|
extern gint _gdk_screen_number;
|
2002-04-25 22:29:14 +00:00
|
|
|
|
|
|
|
|
|
GdkEvent* _gdk_event_unqueue (GdkDisplay *display);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
2010-12-02 09:59:37 +00:00
|
|
|
|
void _gdk_event_emit (GdkEvent *event);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
GList* _gdk_event_queue_find_first (GdkDisplay *display);
|
|
|
|
|
void _gdk_event_queue_remove_link (GdkDisplay *display,
|
2010-12-11 05:14:53 +00:00
|
|
|
|
GList *node);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
GList* _gdk_event_queue_append (GdkDisplay *display,
|
2010-12-11 05:14:53 +00:00
|
|
|
|
GdkEvent *event);
|
2019-02-05 15:05:06 +00:00
|
|
|
|
void _gdk_event_queue_insert_after (GdkDisplay *display,
|
2008-07-18 13:03:42 +00:00
|
|
|
|
GdkEvent *after_event,
|
|
|
|
|
GdkEvent *event);
|
2019-02-05 15:05:06 +00:00
|
|
|
|
void _gdk_event_queue_insert_before(GdkDisplay *display,
|
2008-07-18 13:03:42 +00:00
|
|
|
|
GdkEvent *after_event,
|
|
|
|
|
GdkEvent *event);
|
2012-09-26 14:28:06 +00:00
|
|
|
|
|
|
|
|
|
void _gdk_event_queue_handle_motion_compression (GdkDisplay *display);
|
2013-11-11 23:04:34 +00:00
|
|
|
|
void _gdk_event_queue_flush (GdkDisplay *display);
|
2012-09-26 14:28:06 +00:00
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
|
void _gdk_event_button_generate (GdkDisplay *display,
|
2010-12-11 05:14:53 +00:00
|
|
|
|
GdkEvent *event);
|
2002-04-25 22:29:14 +00:00
|
|
|
|
|
2020-02-16 16:09:02 +00:00
|
|
|
|
void _gdk_windowing_event_data_copy (GdkEvent *src,
|
2008-05-06 22:35:13 +00:00
|
|
|
|
GdkEvent *dst);
|
|
|
|
|
void _gdk_windowing_event_data_free (GdkEvent *event);
|
2008-05-06 21:00:06 +00:00
|
|
|
|
|
2014-10-09 07:58:36 +00:00
|
|
|
|
gboolean _gdk_cairo_surface_extents (cairo_surface_t *surface,
|
|
|
|
|
GdkRectangle *extents);
|
2014-10-09 08:45:44 +00:00
|
|
|
|
void gdk_gl_texture_from_surface (cairo_surface_t *surface,
|
|
|
|
|
cairo_region_t *region);
|
2014-11-22 17:39:18 +00:00
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
float x1, y1, x2, y2;
|
|
|
|
|
float u1, v1, u2, v2;
|
|
|
|
|
} GdkTexturedQuad;
|
|
|
|
|
|
2014-11-22 17:47:35 +00:00
|
|
|
|
void gdk_gl_texture_quads (GdkGLContext *paint_context,
|
|
|
|
|
guint texture_target,
|
|
|
|
|
int n_quads,
|
2016-04-25 12:38:22 +00:00
|
|
|
|
GdkTexturedQuad *quads,
|
|
|
|
|
gboolean flip_colors);
|
2014-11-22 17:39:18 +00:00
|
|
|
|
|
2016-12-21 21:11:25 +00:00
|
|
|
|
void gdk_cairo_surface_paint_pixbuf (cairo_surface_t *surface,
|
|
|
|
|
const GdkPixbuf *pixbuf);
|
|
|
|
|
|
2014-10-09 07:58:36 +00:00
|
|
|
|
cairo_region_t *gdk_cairo_region_from_clip (cairo_t *cr);
|
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
/*************************************
|
|
|
|
|
* Interfaces used by windowing code *
|
|
|
|
|
*************************************/
|
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
|
void _gdk_surface_destroy (GdkSurface *surface,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
gboolean foreign_destroy);
|
2019-04-21 18:08:05 +00:00
|
|
|
|
void gdk_surface_invalidate_rect (GdkSurface *surface,
|
|
|
|
|
const GdkRectangle *rect);
|
|
|
|
|
void gdk_surface_invalidate_region (GdkSurface *surface,
|
|
|
|
|
const cairo_region_t *region);
|
2018-03-20 14:14:10 +00:00
|
|
|
|
void _gdk_surface_clear_update_area (GdkSurface *surface);
|
|
|
|
|
void _gdk_surface_update_size (GdkSurface *surface);
|
|
|
|
|
gboolean _gdk_surface_update_viewable (GdkSurface *surface);
|
|
|
|
|
GdkGLContext * gdk_surface_get_paint_gl_context (GdkSurface *surface,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
GError **error);
|
2018-03-20 14:14:10 +00:00
|
|
|
|
void gdk_surface_get_unscaled_size (GdkSurface *surface,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
int *unscaled_width,
|
|
|
|
|
int *unscaled_height);
|
2018-07-16 00:11:56 +00:00
|
|
|
|
gboolean gdk_surface_handle_event (GdkEvent *event);
|
2020-03-30 14:55:05 +00:00
|
|
|
|
GdkSeat * gdk_surface_get_seat_from_event (GdkSurface *surface,
|
|
|
|
|
GdkEvent *event);
|
2018-07-16 00:11:56 +00:00
|
|
|
|
|
2017-11-29 03:36:17 +00:00
|
|
|
|
void gdk_surface_enter_monitor (GdkSurface *surface,
|
|
|
|
|
GdkMonitor *monitor);
|
|
|
|
|
void gdk_surface_leave_monitor (GdkSurface *surface,
|
|
|
|
|
GdkMonitor *monitor);
|
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
|
/*****************************************
|
|
|
|
|
* Interfaces provided by windowing code *
|
|
|
|
|
*****************************************/
|
|
|
|
|
|
|
|
|
|
/* Font/string functions implemented in module-specific code */
|
|
|
|
|
|
|
|
|
|
void _gdk_cursor_destroy (GdkCursor *cursor);
|
|
|
|
|
|
2006-04-03 20:36:52 +00:00
|
|
|
|
extern const GOptionEntry _gdk_windowing_args[];
|
2002-10-31 21:12:23 +00:00
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
|
void _gdk_windowing_got_event (GdkDisplay *display,
|
2010-12-11 05:14:53 +00:00
|
|
|
|
GList *event_link,
|
|
|
|
|
GdkEvent *event,
|
|
|
|
|
gulong serial);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
|
#define GDK_SURFACE_IS_MAPPED(surface) (((surface)->state & GDK_SURFACE_STATE_WITHDRAWN) == 0)
|
2001-02-27 20:40:15 +00:00
|
|
|
|
|
2009-06-18 18:58:13 +00:00
|
|
|
|
void _gdk_synthesize_crossing_events (GdkDisplay *display,
|
2018-03-20 10:40:08 +00:00
|
|
|
|
GdkSurface *src,
|
|
|
|
|
GdkSurface *dest,
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device,
|
2010-12-13 01:12:43 +00:00
|
|
|
|
GdkDevice *source_device,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
GdkCrossingMode mode,
|
|
|
|
|
gdouble toplevel_x,
|
|
|
|
|
gdouble toplevel_y,
|
|
|
|
|
GdkModifierType mask,
|
|
|
|
|
guint32 time_,
|
|
|
|
|
GdkEvent *event_in_queue,
|
|
|
|
|
gulong serial,
|
|
|
|
|
gboolean non_linear);
|
2018-03-20 11:05:26 +00:00
|
|
|
|
void _gdk_display_set_surface_under_pointer (GdkDisplay *display,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
GdkDevice *device,
|
|
|
|
|
GdkSurface *surface);
|
2008-12-15 13:02:52 +00:00
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
|
void gdk_surface_destroy_notify (GdkSurface *surface);
|
2017-11-17 05:34:04 +00:00
|
|
|
|
|
2018-03-20 14:14:10 +00:00
|
|
|
|
void gdk_synthesize_surface_state (GdkSurface *surface,
|
2018-03-21 08:06:31 +00:00
|
|
|
|
GdkSurfaceState unset_flags,
|
|
|
|
|
GdkSurfaceState set_flags);
|
2017-11-17 05:34:04 +00:00
|
|
|
|
|
2020-04-03 13:19:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* GdkGrabStatus:
|
|
|
|
|
* @GDK_GRAB_SUCCESS: the resource was successfully grabbed.
|
|
|
|
|
* @GDK_GRAB_ALREADY_GRABBED: the resource is actively grabbed by another client.
|
|
|
|
|
* @GDK_GRAB_INVALID_TIME: the resource was grabbed more recently than the
|
|
|
|
|
* specified time.
|
|
|
|
|
* @GDK_GRAB_NOT_VIEWABLE: the grab surface or the @confine_to surface are not
|
|
|
|
|
* viewable.
|
|
|
|
|
* @GDK_GRAB_FROZEN: the resource is frozen by an active grab of another client.
|
|
|
|
|
* @GDK_GRAB_FAILED: the grab failed for some other reason
|
|
|
|
|
*
|
|
|
|
|
* Returned by gdk_device_grab() to indicate success or the reason for the
|
|
|
|
|
* failure of the grab attempt.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
GDK_GRAB_SUCCESS = 0,
|
|
|
|
|
GDK_GRAB_ALREADY_GRABBED = 1,
|
|
|
|
|
GDK_GRAB_INVALID_TIME = 2,
|
|
|
|
|
GDK_GRAB_NOT_VIEWABLE = 3,
|
|
|
|
|
GDK_GRAB_FROZEN = 4,
|
|
|
|
|
GDK_GRAB_FAILED = 5
|
|
|
|
|
} GdkGrabStatus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GdkGrabOwnership:
|
|
|
|
|
* @GDK_OWNERSHIP_NONE: All other devices’ events are allowed.
|
|
|
|
|
* @GDK_OWNERSHIP_SURFACE: Other devices’ events are blocked for the grab surface.
|
|
|
|
|
* @GDK_OWNERSHIP_APPLICATION: Other devices’ events are blocked for the whole application.
|
|
|
|
|
*
|
|
|
|
|
* Defines how device grabs interact with other devices.
|
|
|
|
|
*/
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
GDK_OWNERSHIP_NONE,
|
|
|
|
|
GDK_OWNERSHIP_SURFACE,
|
|
|
|
|
GDK_OWNERSHIP_APPLICATION
|
|
|
|
|
} GdkGrabOwnership;
|
|
|
|
|
|
2019-03-29 15:31:13 +00:00
|
|
|
|
GdkGrabStatus gdk_device_grab (GdkDevice *device,
|
|
|
|
|
GdkSurface *surface,
|
|
|
|
|
GdkGrabOwnership grab_ownership,
|
|
|
|
|
gboolean owner_events,
|
|
|
|
|
GdkEventMask event_mask,
|
|
|
|
|
GdkCursor *cursor,
|
|
|
|
|
guint32 time_);
|
|
|
|
|
void gdk_device_ungrab (GdkDevice *device,
|
|
|
|
|
guint32 time_);
|
2019-05-29 11:44:17 +00:00
|
|
|
|
void gdk_device_get_position (GdkDevice *device,
|
|
|
|
|
double *x,
|
|
|
|
|
double *y);
|
|
|
|
|
|
|
|
|
|
|
2019-03-25 03:09:48 +00:00
|
|
|
|
void gdk_surface_get_root_coords (GdkSurface *surface,
|
|
|
|
|
gint x,
|
|
|
|
|
gint y,
|
|
|
|
|
gint *root_x,
|
|
|
|
|
gint *root_y);
|
2019-05-29 06:05:40 +00:00
|
|
|
|
void gdk_surface_get_origin (GdkSurface *surface,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y);
|
|
|
|
|
|
2019-03-29 15:31:13 +00:00
|
|
|
|
|
2019-03-25 04:00:14 +00:00
|
|
|
|
void gdk_surface_get_geometry (GdkSurface *surface,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y,
|
|
|
|
|
gint *width,
|
|
|
|
|
gint *height);
|
|
|
|
|
|
2019-06-04 21:26:28 +00:00
|
|
|
|
GdkGLContext *gdk_surface_get_shared_data_gl_context (GdkSurface *surface);
|
|
|
|
|
|
2020-04-19 02:48:02 +00:00
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
GDK_HINT_POS = 1 << 0,
|
|
|
|
|
GDK_HINT_MIN_SIZE = 1 << 1,
|
|
|
|
|
GDK_HINT_MAX_SIZE = 1 << 2,
|
|
|
|
|
GDK_HINT_BASE_SIZE = 1 << 3,
|
|
|
|
|
GDK_HINT_ASPECT = 1 << 4,
|
|
|
|
|
GDK_HINT_RESIZE_INC = 1 << 5,
|
|
|
|
|
GDK_HINT_WIN_GRAVITY = 1 << 6,
|
|
|
|
|
GDK_HINT_USER_POS = 1 << 7,
|
|
|
|
|
GDK_HINT_USER_SIZE = 1 << 8
|
|
|
|
|
} GdkSurfaceHints;
|
|
|
|
|
|
2020-04-19 02:48:02 +00:00
|
|
|
|
struct _GdkGeometry
|
|
|
|
|
{
|
|
|
|
|
gint min_width;
|
|
|
|
|
gint min_height;
|
|
|
|
|
gint max_width;
|
|
|
|
|
gint max_height;
|
|
|
|
|
gint base_width;
|
|
|
|
|
gint base_height;
|
|
|
|
|
gint width_inc;
|
|
|
|
|
gint height_inc;
|
|
|
|
|
gdouble min_aspect;
|
|
|
|
|
gdouble max_aspect;
|
|
|
|
|
GdkGravity win_gravity;
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-19 02:48:02 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
|
void gdk_surface_constrain_size (GdkGeometry *geometry,
|
|
|
|
|
GdkSurfaceHints flags,
|
|
|
|
|
gint width,
|
|
|
|
|
gint height,
|
|
|
|
|
gint *new_width,
|
|
|
|
|
gint *new_height);
|
2017-11-29 03:36:17 +00:00
|
|
|
|
|
2020-02-22 03:18:05 +00:00
|
|
|
|
/*
|
|
|
|
|
* GdkSeatGrabPrepareFunc:
|
|
|
|
|
* @seat: the #GdkSeat being grabbed
|
|
|
|
|
* @surface: the #GdkSurface being grabbed
|
|
|
|
|
* @user_data: user data passed in gdk_seat_grab()
|
|
|
|
|
*
|
|
|
|
|
* Type of the callback used to set up @surface so it can be
|
|
|
|
|
* grabbed. A typical action would be ensuring the surface is
|
|
|
|
|
* visible, although there's room for other initialization
|
|
|
|
|
* actions.
|
|
|
|
|
*/
|
|
|
|
|
typedef void (* GdkSeatGrabPrepareFunc) (GdkSeat *seat,
|
|
|
|
|
GdkSurface *surface,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
2019-12-28 14:12:33 +00:00
|
|
|
|
GdkGrabStatus gdk_seat_grab (GdkSeat *seat,
|
|
|
|
|
GdkSurface *surface,
|
|
|
|
|
GdkSeatCapabilities capabilities,
|
|
|
|
|
gboolean owner_events,
|
|
|
|
|
GdkCursor *cursor,
|
2020-02-16 16:09:02 +00:00
|
|
|
|
GdkEvent *event,
|
2019-12-28 14:12:33 +00:00
|
|
|
|
GdkSeatGrabPrepareFunc prepare_func,
|
|
|
|
|
gpointer prepare_func_data);
|
|
|
|
|
void gdk_seat_ungrab (GdkSeat *seat);
|
2019-12-30 06:24:05 +00:00
|
|
|
|
GdkSurface * gdk_surface_new_temp (GdkDisplay *display,
|
|
|
|
|
const GdkRectangle *position);
|
2019-12-28 14:12:33 +00:00
|
|
|
|
|
2020-04-05 15:29:12 +00:00
|
|
|
|
GdkKeymap * gdk_display_get_keymap (GdkDisplay *display);
|
2020-02-29 17:05:42 +00:00
|
|
|
|
|
2005-06-12 05:32:25 +00:00
|
|
|
|
G_END_DECLS
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
|
|
#endif /* __GDK_INTERNALS_H__ */
|