mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-02-16 22:05:45 -05:00
Implement foreign-toplevel-info-v1
This commit is contained in:
parent
eb30cde777
commit
e9ae795c2c
5 changed files with 812 additions and 0 deletions
108
include/wlr/types/wlr_ext_foreign_toplevel_info_v1.h
Normal file
108
include/wlr/types/wlr_ext_foreign_toplevel_info_v1.h
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
/*
|
||||
* This an unstable interface of wlroots. No guarantees are made regarding the
|
||||
* future consistency of this API.
|
||||
*/
|
||||
#ifndef WLR_USE_UNSTABLE
|
||||
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
||||
#endif
|
||||
|
||||
#ifndef WLR_TYPES_WLR_FOREIGN_TOPLEVEL_INFO_V1_H
|
||||
#define WLR_TYPES_WLR_FOREIGN_TOPLEVEL_INFO_V1_H
|
||||
|
||||
#include <wayland-server-core.h>
|
||||
#include <wlr/types/wlr_output.h>
|
||||
|
||||
struct wlr_ext_foreign_toplevel_info_v1 {
|
||||
struct wl_event_loop *event_loop;
|
||||
struct wl_global *global;
|
||||
struct wl_list resources; // wl_resource_get_link
|
||||
struct wl_list toplevels; // wlr_ext_foreign_toplevel_handle_v1::link
|
||||
|
||||
struct wl_listener display_destroy;
|
||||
|
||||
struct {
|
||||
struct wl_signal destroy;
|
||||
} events;
|
||||
|
||||
void *data;
|
||||
};
|
||||
|
||||
enum wlr_ext_foreign_toplevel_handle_v1_state {
|
||||
WLR_FOREIGN_TOPLEVEL_HANDLE_V1_STATE_MAXIMIZED = (1 << 0),
|
||||
WLR_FOREIGN_TOPLEVEL_HANDLE_V1_STATE_MINIMIZED = (1 << 1),
|
||||
WLR_FOREIGN_TOPLEVEL_HANDLE_V1_STATE_ACTIVATED = (1 << 2),
|
||||
WLR_FOREIGN_TOPLEVEL_HANDLE_V1_STATE_FULLSCREEN = (1 << 3),
|
||||
};
|
||||
|
||||
struct wlr_ext_foreign_toplevel_handle_v1_output {
|
||||
struct wl_list link; // wlr_ext_foreign_toplevel_handle_v1::outputs
|
||||
struct wl_listener output_destroy;
|
||||
struct wlr_output *output;
|
||||
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel;
|
||||
};
|
||||
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 {
|
||||
struct wlr_ext_foreign_toplevel_info_v1 *info;
|
||||
struct wl_list resources; // wl_resource_get_link
|
||||
struct wl_list link; // wlr_ext_foreign_toplevel_info_v1::toplevels
|
||||
struct wl_event_source *idle_source; // May be NULL
|
||||
|
||||
char *title; // May be NULL
|
||||
char *app_id; // May be NULL
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *parent; // May be NULL
|
||||
struct wl_list outputs; // wlr_ext_foreign_toplevel_handle_v1_output
|
||||
uint32_t state; // wlr_ext_foreign_toplevel_handle_v1_state
|
||||
|
||||
struct {
|
||||
struct wl_signal destroy; // wlr_ext_foreign_toplevel_handle_v1 *
|
||||
} events;
|
||||
|
||||
void *data;
|
||||
};
|
||||
|
||||
struct wlr_ext_foreign_toplevel_info_v1 *wlr_ext_foreign_toplevel_info_v1_create(
|
||||
struct wl_display *display);
|
||||
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *wlr_ext_foreign_toplevel_handle_v1_create(
|
||||
struct wlr_ext_foreign_toplevel_info_v1 *info);
|
||||
|
||||
/* Destroy the given toplevel handle, sending the closed event to any
|
||||
* client. Also, if the destroyed toplevel is set as a parent of any
|
||||
* other valid toplevel, clients still holding a handle to both are
|
||||
* sent a parent signal with NULL parent. If this is not desired, the
|
||||
* caller should ensure that any child toplevels are destroyed before
|
||||
* the parent. */
|
||||
void wlr_ext_foreign_toplevel_handle_v1_destroy(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel);
|
||||
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_title(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, const char *title);
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_app_id(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, const char *app_id);
|
||||
|
||||
void wlr_ext_foreign_toplevel_handle_v1_output_enter(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, struct wlr_output *output);
|
||||
void wlr_ext_foreign_toplevel_handle_v1_output_leave(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, struct wlr_output *output);
|
||||
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_maximized(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, bool maximized);
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_minimized(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, bool minimized);
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_activated(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel, bool activated);
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_fullscreen(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1* toplevel, bool fullscreen);
|
||||
|
||||
/* Set the parent of a toplevel. If the parent changed from its previous
|
||||
* value, also sends a parent event to all clients that hold handles to
|
||||
* both toplevel and parent (no message is sent to clients that have
|
||||
* previously destroyed their parent handle). NULL is allowed as the
|
||||
* parent, meaning no parent exists. */
|
||||
void wlr_ext_foreign_toplevel_handle_v1_set_parent(
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *toplevel,
|
||||
struct wlr_ext_foreign_toplevel_handle_v1 *parent);
|
||||
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue