2015-11-19 14:01:22 +11:00
|
|
|
#ifndef _SWAY_EXTENSIONS_H
|
|
|
|
#define _SWAY_EXTENSIONS_H
|
|
|
|
|
2015-12-11 09:04:09 +11:00
|
|
|
#include <wayland-server.h>
|
2015-12-04 00:35:22 +11:00
|
|
|
#include <wlc/wlc-wayland.h>
|
2015-11-30 04:03:13 +11:00
|
|
|
#include "wayland-desktop-shell-server-protocol.h"
|
2015-11-19 14:14:57 +11:00
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
struct background_config {
|
2016-07-05 13:18:56 +10:00
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
|
|
|
// we need the wl_resource of the surface in the destructor
|
|
|
|
struct wl_resource *wl_surface_res;
|
2016-07-18 01:55:05 +10:00
|
|
|
struct wl_client *client;
|
|
|
|
wlc_handle handle;
|
2015-11-19 14:14:57 +11:00
|
|
|
};
|
|
|
|
|
2015-11-30 04:03:13 +11:00
|
|
|
struct panel_config {
|
2016-07-05 13:18:56 +10:00
|
|
|
// wayland resource used in callbacks, is used to track this panel
|
|
|
|
struct wl_resource *wl_resource;
|
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
|
|
|
// we need the wl_resource of the surface in the destructor
|
|
|
|
struct wl_resource *wl_surface_res;
|
|
|
|
enum desktop_shell_panel_position panel_position;
|
|
|
|
// used to determine if client is a panel
|
2016-07-05 07:53:03 +10:00
|
|
|
struct wl_client *client;
|
2016-07-06 15:28:14 +10:00
|
|
|
// wlc handle for this panel's surface, not set until panel is created
|
|
|
|
wlc_handle handle;
|
2015-11-30 04:03:13 +11:00
|
|
|
};
|
|
|
|
|
2015-11-19 14:14:57 +11:00
|
|
|
struct desktop_shell_state {
|
2016-07-05 13:18:56 +10:00
|
|
|
list_t *backgrounds;
|
|
|
|
list_t *panels;
|
|
|
|
list_t *lock_surfaces;
|
|
|
|
bool is_locked;
|
2015-11-19 14:14:57 +11:00
|
|
|
};
|
|
|
|
|
2015-12-04 00:35:22 +11:00
|
|
|
struct swaylock_state {
|
2016-07-05 13:18:56 +10:00
|
|
|
bool active;
|
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
2015-12-04 00:35:22 +11:00
|
|
|
};
|
|
|
|
|
2017-04-29 10:32:05 +10:00
|
|
|
struct decoration_state {
|
|
|
|
list_t *csd_resources;
|
|
|
|
};
|
|
|
|
|
2015-11-19 14:14:57 +11:00
|
|
|
extern struct desktop_shell_state desktop_shell;
|
2017-04-29 10:32:05 +10:00
|
|
|
extern struct decoration_state decoration_state;
|
2015-11-19 14:14:57 +11:00
|
|
|
|
2015-11-19 14:01:22 +11:00
|
|
|
void register_extensions(void);
|
|
|
|
|
2017-04-29 10:32:05 +10:00
|
|
|
void server_decoration_enable_csd(wlc_handle handle);
|
|
|
|
|
2015-11-19 14:01:22 +11:00
|
|
|
#endif
|