mirror of
https://github.com/swaywm/sway.git
synced 2026-04-19 06:46:40 -04:00
Merge 52d0f4d6ca into 7e74a49142
This commit is contained in:
commit
5c1b9a7a13
9 changed files with 207 additions and 0 deletions
|
|
@ -104,6 +104,7 @@ struct sway_container *container_find_resize_parent(struct sway_container *con,
|
|||
sway_cmd cmd_exec_validate;
|
||||
sway_cmd cmd_exec_process;
|
||||
|
||||
sway_cmd cmd_action;
|
||||
sway_cmd cmd_assign;
|
||||
sway_cmd cmd_bar;
|
||||
sway_cmd cmd_bindcode;
|
||||
|
|
|
|||
|
|
@ -116,6 +116,10 @@ struct sway_server {
|
|||
|
||||
struct wl_listener request_set_cursor_shape;
|
||||
|
||||
struct wlr_action_binder_v1 *action_binder;
|
||||
struct wl_listener action_binder_bind;
|
||||
struct wl_listener action_binder_destroy;
|
||||
|
||||
struct wl_list pending_launcher_ctxs; // launcher_ctx::link
|
||||
|
||||
// The timeout for transactions, after which a transaction is applied
|
||||
|
|
@ -179,6 +183,9 @@ void xdg_activation_v1_handle_request_activate(struct wl_listener *listener,
|
|||
void *data);
|
||||
void xdg_activation_v1_handle_new_token(struct wl_listener *listener,
|
||||
void *data);
|
||||
void action_binder_v1_bind(struct wl_listener *listener, void *data);
|
||||
void action_binder_v1_unbind(struct wl_listener *listener, void *data);
|
||||
void action_binder_v1_delete(struct wl_listener *listener, void *data);
|
||||
|
||||
void set_rr_scheduling(void);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue