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 {
|
|
|
|
wlc_handle output;
|
2015-11-19 13:23:11 +01:00
|
|
|
wlc_resource surface;
|
2015-12-20 12:42:10 +01:00
|
|
|
// we need the wl_resource of the surface in the destructor
|
|
|
|
struct wl_resource *wl_surface_res;
|
2015-11-19 04:14:57 +01:00
|
|
|
};
|
|
|
|
|
2015-11-29 18:03:13 +01:00
|
|
|
struct panel_config {
|
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
2015-12-20 12:42:10 +01:00
|
|
|
// we need the wl_resource of the surface in the destructor
|
|
|
|
struct wl_resource *wl_surface_res;
|
2015-11-29 18:03:13 +01:00
|
|
|
};
|
|
|
|
|
2015-11-19 04:14:57 +01:00
|
|
|
struct desktop_shell_state {
|
|
|
|
list_t *backgrounds;
|
2015-11-29 18:03:13 +01:00
|
|
|
list_t *panels;
|
2015-12-18 14:49:04 +01:00
|
|
|
list_t *lock_surfaces;
|
|
|
|
bool is_locked;
|
2015-11-29 18:03:13 +01:00
|
|
|
enum desktop_shell_panel_position panel_position;
|
|
|
|
struct wlc_size panel_size;
|
2015-11-19 04:14:57 +01:00
|
|
|
};
|
|
|
|
|
2015-12-03 14:35:22 +01:00
|
|
|
struct swaylock_state {
|
|
|
|
bool active;
|
|
|
|
wlc_handle output;
|
|
|
|
wlc_resource surface;
|
|
|
|
};
|
|
|
|
|
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
|