2020-02-29 15:07:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2020 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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.1 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
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: Matthias Clasen <mclasen@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2023-03-31 19:11:10 +00:00
|
|
|
#pragma once
|
2020-02-29 15:07:43 +00:00
|
|
|
|
|
|
|
#if !defined(__GDK_H_INSIDE__) && !defined(GTK_COMPILATION)
|
|
|
|
#error "Only <gdk/gdk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2020-03-20 14:17:41 +00:00
|
|
|
#include <gdk/gdkseat.h>
|
2020-02-29 15:07:43 +00:00
|
|
|
#include <gdk/gdksurface.h>
|
|
|
|
#include <gdk/gdktoplevellayout.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2020-09-10 04:44:05 +00:00
|
|
|
/**
|
|
|
|
* GdkSurfaceEdge:
|
|
|
|
* @GDK_SURFACE_EDGE_NORTH_WEST: the top left corner.
|
|
|
|
* @GDK_SURFACE_EDGE_NORTH: the top edge.
|
|
|
|
* @GDK_SURFACE_EDGE_NORTH_EAST: the top right corner.
|
|
|
|
* @GDK_SURFACE_EDGE_WEST: the left edge.
|
|
|
|
* @GDK_SURFACE_EDGE_EAST: the right edge.
|
|
|
|
* @GDK_SURFACE_EDGE_SOUTH_WEST: the lower left corner.
|
|
|
|
* @GDK_SURFACE_EDGE_SOUTH: the lower edge.
|
|
|
|
* @GDK_SURFACE_EDGE_SOUTH_EAST: the lower right corner.
|
|
|
|
*
|
|
|
|
* Determines a surface edge or corner.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GDK_SURFACE_EDGE_NORTH_WEST,
|
|
|
|
GDK_SURFACE_EDGE_NORTH,
|
|
|
|
GDK_SURFACE_EDGE_NORTH_EAST,
|
|
|
|
GDK_SURFACE_EDGE_WEST,
|
|
|
|
GDK_SURFACE_EDGE_EAST,
|
|
|
|
GDK_SURFACE_EDGE_SOUTH_WEST,
|
|
|
|
GDK_SURFACE_EDGE_SOUTH,
|
|
|
|
GDK_SURFACE_EDGE_SOUTH_EAST
|
|
|
|
} GdkSurfaceEdge;
|
|
|
|
|
2020-09-10 04:22:01 +00:00
|
|
|
/**
|
|
|
|
* GdkFullscreenMode:
|
|
|
|
* @GDK_FULLSCREEN_ON_CURRENT_MONITOR: Fullscreen on current monitor only.
|
|
|
|
* @GDK_FULLSCREEN_ON_ALL_MONITORS: Span across all monitors when fullscreen.
|
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Indicates which monitor a surface should span over when in fullscreen mode.
|
|
|
|
*/
|
2020-09-10 04:22:01 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GDK_FULLSCREEN_ON_CURRENT_MONITOR,
|
|
|
|
GDK_FULLSCREEN_ON_ALL_MONITORS
|
|
|
|
} GdkFullscreenMode;
|
|
|
|
|
2020-09-10 04:25:51 +00:00
|
|
|
/**
|
2020-09-10 04:39:03 +00:00
|
|
|
* GdkToplevelState:
|
|
|
|
* @GDK_TOPLEVEL_STATE_MINIMIZED: the surface is minimized
|
|
|
|
* @GDK_TOPLEVEL_STATE_MAXIMIZED: the surface is maximized
|
|
|
|
* @GDK_TOPLEVEL_STATE_STICKY: the surface is sticky
|
|
|
|
* @GDK_TOPLEVEL_STATE_FULLSCREEN: the surface is maximized without decorations
|
|
|
|
* @GDK_TOPLEVEL_STATE_ABOVE: the surface is kept above other surfaces
|
|
|
|
* @GDK_TOPLEVEL_STATE_BELOW: the surface is kept below other surfaces
|
|
|
|
* @GDK_TOPLEVEL_STATE_FOCUSED: the surface is presented as focused (with active decorations)
|
|
|
|
* @GDK_TOPLEVEL_STATE_TILED: the surface is in a tiled state
|
|
|
|
* @GDK_TOPLEVEL_STATE_TOP_TILED: whether the top edge is tiled
|
|
|
|
* @GDK_TOPLEVEL_STATE_TOP_RESIZABLE: whether the top edge is resizable
|
|
|
|
* @GDK_TOPLEVEL_STATE_RIGHT_TILED: whether the right edge is tiled
|
|
|
|
* @GDK_TOPLEVEL_STATE_RIGHT_RESIZABLE: whether the right edge is resizable
|
|
|
|
* @GDK_TOPLEVEL_STATE_BOTTOM_TILED: whether the bottom edge is tiled
|
|
|
|
* @GDK_TOPLEVEL_STATE_BOTTOM_RESIZABLE: whether the bottom edge is resizable
|
|
|
|
* @GDK_TOPLEVEL_STATE_LEFT_TILED: whether the left edge is tiled
|
|
|
|
* @GDK_TOPLEVEL_STATE_LEFT_RESIZABLE: whether the left edge is resizable
|
2020-09-10 04:25:51 +00:00
|
|
|
*
|
|
|
|
* Specifies the state of a toplevel surface.
|
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* On platforms that support information about individual edges, the
|
|
|
|
* %GDK_TOPLEVEL_STATE_TILED state will be set whenever any of the individual
|
|
|
|
* tiled states is set. On platforms that lack that support, the tiled state
|
|
|
|
* will give an indication of tiledness without any of the per-edge states
|
|
|
|
* being set.
|
2020-09-10 04:25:51 +00:00
|
|
|
*/
|
2024-08-24 12:38:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GDK_TOPLEVEL_STATE_SUSPENDED:
|
|
|
|
*
|
|
|
|
* The surface is not visible to the user.
|
|
|
|
*
|
|
|
|
* Since: 4.12
|
|
|
|
*/
|
2020-09-10 04:25:51 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
gdk: Replace 'WITHDRAWN' state with async 'is-mapped' boolean
It was used by all surfaces to track 'is-mapped', but still part of the
GdkToplevelState, and is now replaced with a separate boolean in the
GdkSurface structure.
It also caused issues when a widget was unmapped, and due to that
unmapped a popover which hid its corresponding surface. When this
surface was hidden, it emitted a state change event, which would then go
back into GTK and queue a resize on popover widget, which would travel
back down to the widget that was originally unmapped, causing confusino
when doing future allocations.
To summarize, one should not hide widgets during allocation, and to
avoid this, make this new is-mapped boolean asynchronous when hiding a
surface, meaning the notification event for the changed mapped state
will be emitted in an idle callback. This avoids the above described
reentry issue.
2020-12-07 17:18:38 +00:00
|
|
|
GDK_TOPLEVEL_STATE_MINIMIZED = 1 << 0,
|
|
|
|
GDK_TOPLEVEL_STATE_MAXIMIZED = 1 << 1,
|
|
|
|
GDK_TOPLEVEL_STATE_STICKY = 1 << 2,
|
|
|
|
GDK_TOPLEVEL_STATE_FULLSCREEN = 1 << 3,
|
|
|
|
GDK_TOPLEVEL_STATE_ABOVE = 1 << 4,
|
|
|
|
GDK_TOPLEVEL_STATE_BELOW = 1 << 5,
|
|
|
|
GDK_TOPLEVEL_STATE_FOCUSED = 1 << 6,
|
|
|
|
GDK_TOPLEVEL_STATE_TILED = 1 << 7,
|
|
|
|
GDK_TOPLEVEL_STATE_TOP_TILED = 1 << 8,
|
|
|
|
GDK_TOPLEVEL_STATE_TOP_RESIZABLE = 1 << 9,
|
|
|
|
GDK_TOPLEVEL_STATE_RIGHT_TILED = 1 << 10,
|
|
|
|
GDK_TOPLEVEL_STATE_RIGHT_RESIZABLE = 1 << 11,
|
|
|
|
GDK_TOPLEVEL_STATE_BOTTOM_TILED = 1 << 12,
|
|
|
|
GDK_TOPLEVEL_STATE_BOTTOM_RESIZABLE = 1 << 13,
|
|
|
|
GDK_TOPLEVEL_STATE_LEFT_TILED = 1 << 14,
|
2023-05-24 14:22:42 +00:00
|
|
|
GDK_TOPLEVEL_STATE_LEFT_RESIZABLE = 1 << 15,
|
|
|
|
GDK_TOPLEVEL_STATE_SUSPENDED = 1 << 16
|
2020-09-10 04:39:03 +00:00
|
|
|
} GdkToplevelState;
|
2020-09-10 04:25:51 +00:00
|
|
|
|
2021-11-13 16:33:15 +00:00
|
|
|
/**
|
|
|
|
* GdkTitlebarGesture:
|
2024-05-25 17:21:19 +00:00
|
|
|
* @GDK_TITLEBAR_GESTURE_DOUBLE_CLICK: double click gesture
|
|
|
|
* @GDK_TITLEBAR_GESTURE_RIGHT_CLICK: right click gesture
|
|
|
|
* @GDK_TITLEBAR_GESTURE_MIDDLE_CLICK: middle click gesture
|
|
|
|
*
|
|
|
|
* The kind of title bar gesture to emit with
|
|
|
|
* [method@Gdk.Toplevel.titlebar_gesture].
|
2021-11-13 16:33:15 +00:00
|
|
|
*
|
|
|
|
* Since: 4.4
|
|
|
|
*/
|
2021-07-29 01:55:36 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GDK_TITLEBAR_GESTURE_DOUBLE_CLICK = 1,
|
|
|
|
GDK_TITLEBAR_GESTURE_RIGHT_CLICK = 2,
|
|
|
|
GDK_TITLEBAR_GESTURE_MIDDLE_CLICK = 3
|
|
|
|
} GdkTitlebarGesture;
|
|
|
|
|
2020-09-10 04:25:51 +00:00
|
|
|
|
2020-02-29 15:07:43 +00:00
|
|
|
#define GDK_TYPE_TOPLEVEL (gdk_toplevel_get_type ())
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
G_DECLARE_INTERFACE (GdkToplevel, gdk_toplevel, GDK, TOPLEVEL, GObject)
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-11-20 15:56:36 +00:00
|
|
|
void gdk_toplevel_present (GdkToplevel *toplevel,
|
2020-02-29 15:07:43 +00:00
|
|
|
GdkToplevelLayout *layout);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
gboolean gdk_toplevel_minimize (GdkToplevel *toplevel);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
gboolean gdk_toplevel_lower (GdkToplevel *toplevel);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_focus (GdkToplevel *toplevel,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-09-10 04:39:03 +00:00
|
|
|
GdkToplevelState gdk_toplevel_get_state (GdkToplevel *toplevel);
|
2020-02-29 15:07:43 +00:00
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_title (GdkToplevel *toplevel,
|
|
|
|
const char *title);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_startup_id (GdkToplevel *toplevel,
|
|
|
|
const char *startup_id);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_transient_for (GdkToplevel *toplevel,
|
|
|
|
GdkSurface *parent);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_modal (GdkToplevel *toplevel,
|
|
|
|
gboolean modal);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_icon_list (GdkToplevel *toplevel,
|
|
|
|
GList *surfaces);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
gboolean gdk_toplevel_show_window_menu (GdkToplevel *toplevel,
|
|
|
|
GdkEvent *event);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_decorated (GdkToplevel *toplevel,
|
|
|
|
gboolean decorated);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_set_deletable (GdkToplevel *toplevel,
|
|
|
|
gboolean deletable);
|
2020-03-09 18:38:08 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
gboolean gdk_toplevel_supports_edge_constraints (GdkToplevel *toplevel);
|
|
|
|
|
2020-03-20 14:17:41 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_inhibit_system_shortcuts (GdkToplevel *toplevel,
|
|
|
|
GdkEvent *event);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_restore_system_shortcuts (GdkToplevel *toplevel);
|
|
|
|
|
2020-05-17 15:45:37 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_begin_resize (GdkToplevel *toplevel,
|
|
|
|
GdkSurfaceEdge edge,
|
|
|
|
GdkDevice *device,
|
|
|
|
int button,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gdk_toplevel_begin_move (GdkToplevel *toplevel,
|
|
|
|
GdkDevice *device,
|
|
|
|
int button,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
2021-07-29 01:55:36 +00:00
|
|
|
GDK_AVAILABLE_IN_4_4
|
|
|
|
gboolean gdk_toplevel_titlebar_gesture (GdkToplevel *toplevel,
|
|
|
|
GdkTitlebarGesture gesture);
|
|
|
|
|
2020-02-29 15:07:43 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|