mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
1e8a58e367
Move these from GdkSurface to GdkToplevel, where they belong. Update all backends.
63 lines
2.5 KiB
C
63 lines
2.5 KiB
C
#ifndef __GDK_TOPLEVEL_PRIVATE_H__
|
|
#define __GDK_TOPLEVEL_PRIVATE_H__
|
|
|
|
#include "gdktoplevel.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
struct _GdkToplevelInterface
|
|
{
|
|
GTypeInterface g_iface;
|
|
|
|
gboolean (* present) (GdkToplevel *toplevel,
|
|
int width,
|
|
int height,
|
|
GdkToplevelLayout *layout);
|
|
gboolean (* minimize) (GdkToplevel *toplevel);
|
|
gboolean (* lower) (GdkToplevel *toplevel);
|
|
void (* focus) (GdkToplevel *toplevel,
|
|
guint32 timestamp);
|
|
gboolean (* show_window_menu) (GdkToplevel *toplevel,
|
|
GdkEvent *event);
|
|
gboolean (* supports_edge_constraints) (GdkToplevel *toplevel);
|
|
void (* inhibit_system_shortcuts) (GdkToplevel *toplevel,
|
|
GdkEvent *event);
|
|
void (* restore_system_shortcuts) (GdkToplevel *toplevel);
|
|
void (* begin_resize) (GdkToplevel *toplevel,
|
|
GdkSurfaceEdge edge,
|
|
GdkDevice *device,
|
|
int button,
|
|
double x,
|
|
double y,
|
|
guint32 timestamp);
|
|
void (* begin_move) (GdkToplevel *toplevel,
|
|
GdkDevice *device,
|
|
int button,
|
|
double x,
|
|
double y,
|
|
guint32 timestamp);
|
|
};
|
|
|
|
typedef enum
|
|
{
|
|
GDK_TOPLEVEL_PROP_STATE,
|
|
GDK_TOPLEVEL_PROP_TITLE,
|
|
GDK_TOPLEVEL_PROP_STARTUP_ID,
|
|
GDK_TOPLEVEL_PROP_TRANSIENT_FOR,
|
|
GDK_TOPLEVEL_PROP_MODAL,
|
|
GDK_TOPLEVEL_PROP_ICON_LIST,
|
|
GDK_TOPLEVEL_PROP_DECORATED,
|
|
GDK_TOPLEVEL_PROP_DELETABLE,
|
|
GDK_TOPLEVEL_PROP_FULLSCREEN_MODE,
|
|
GDK_TOPLEVEL_PROP_SHORTCUTS_INHIBITED,
|
|
GDK_TOPLEVEL_NUM_PROPERTIES
|
|
} GdkToplevelProperties;
|
|
|
|
guint gdk_toplevel_install_properties (GObjectClass *object_class,
|
|
guint first_prop);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GDK_TOPLEVEL_PRIVATE_H__ */
|