2015-11-19 04:01:22 +01:00
|
|
|
#ifndef _SWAY_EXTENSIONS_H
|
|
|
|
#define _SWAY_EXTENSIONS_H
|
|
|
|
|
2015-12-10 23:04:09 +01:00
|
|
|
#include <wayland-server.h>
|
2015-12-03 14:35:22 +01:00
|
|
|
#include <wlc/wlc-wayland.h>
|
2015-11-29 18:03:13 +01:00
|
|
|
#include "wayland-desktop-shell-server-protocol.h"
|
2015-11-19 04:14:57 +01:00
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
struct background_config {
|
2016-07-05 05:18:56 +02: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-17 17:55:05 +02:00
|
|
|
struct wl_client *client;
|
|
|
|
wlc_handle handle;
|
2015-11-19 04:14:57 +01:00
|
|
|
};
|
|
|
|
|
2015-11-29 18:03:13 +01:00
|
|
|
struct panel_config {
|
2016-07-05 05:18:56 +02: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-04 23:53:03 +02:00
|
|
|
struct wl_client *client;
|
2016-07-06 07:28:14 +02:00
|
|
|
// wlc handle for this panel's surface, not set until panel is created
|
|
|
|
wlc_handle handle;
|
2015-11-29 18:03:13 +01:00
|
|
|
};
|
|
|
|
|
2015-11-19 04:14:57 +01:00
|
|
|
struct desktop_shell_state {
|
2016-07-05 05:18:56 +02:00
|
|
|
list_t *backgrounds;
|
|
|
|
list_t *panels;
|
|
|
|
list_t *lock_surfaces;
|
|
|
|
bool is_locked;
|
2015-11-19 04:14:57 +01:00
|
|
|
};
|
|
|
|
|
2015-12-03 14:35:22 +01:00
|
|
|
struct swaylock_state {
|
2016-07-05 05:18:56 +02:00
|
|
|
bool active;
|
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
2015-12-03 14:35:22 +01:00
|
|
|
};
|
|
|
|
|
2015-11-19 04:14:57 +01:00
|
|
|
extern struct desktop_shell_state desktop_shell;
|
|
|
|
|
2015-11-19 04:01:22 +01:00
|
|
|
void register_extensions(void);
|
|
|
|
|
|
|
|
#endif
|