2015-08-06 14:24:14 +02:00
|
|
|
#ifndef _SWAY_HANDLERS_H
|
|
|
|
#define _SWAY_HANDLERS_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
|
|
|
|
bool handle_output_created(wlc_handle output);
|
|
|
|
void handle_output_destroyed(wlc_handle output);
|
|
|
|
void handle_output_resolution_change(wlc_handle output, const struct wlc_size *from, const struct wlc_size *to);
|
|
|
|
|
|
|
|
bool handle_view_created(wlc_handle view);
|
|
|
|
void handle_view_destroyed(wlc_handle view);
|
|
|
|
void handle_view_focus(wlc_handle view, bool focus);
|
2015-08-09 00:22:22 +02:00
|
|
|
void handle_view_geometry_request(wlc_handle view, const struct wlc_geometry* geometry);
|
2015-08-06 14:24:14 +02:00
|
|
|
|
|
|
|
#endif
|