mirror of
https://github.com/swaywm/sway.git
synced 2025-11-06 13:29:50 -05:00
Merge branch 'wlroots' into split-containers
This commit is contained in:
commit
2187684bd0
13 changed files with 276 additions and 42 deletions
|
|
@ -33,6 +33,23 @@ static list_t *get_bfs_queue() {
|
|||
return bfs_queue;
|
||||
}
|
||||
|
||||
const char *container_type_to_str(enum sway_container_type type) {
|
||||
switch (type) {
|
||||
case C_ROOT:
|
||||
return "C_ROOT";
|
||||
case C_OUTPUT:
|
||||
return "C_OUTPUT";
|
||||
case C_WORKSPACE:
|
||||
return "C_WORKSPACE";
|
||||
case C_CONTAINER:
|
||||
return "C_CONTAINER";
|
||||
case C_VIEW:
|
||||
return "C_VIEW";
|
||||
default:
|
||||
return "C_UNKNOWN";
|
||||
}
|
||||
}
|
||||
|
||||
static void notify_new_container(struct sway_container *container) {
|
||||
wl_signal_emit(&root_container.sway_root->events.new_container, container);
|
||||
ipc_event_window(container, "new");
|
||||
|
|
@ -54,6 +71,7 @@ struct sway_container *container_create(enum sway_container_type type) {
|
|||
}
|
||||
|
||||
wl_signal_init(&c->events.destroy);
|
||||
wl_signal_init(&c->events.reparent);
|
||||
|
||||
return c;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue