Keep track of window names
This commit is contained in:
parent
56d29bbec5
commit
2b1a0728b8
|
@ -116,6 +116,9 @@ void init_layout() {
|
||||||
void free_swayc(swayc_t *container) {
|
void free_swayc(swayc_t *container) {
|
||||||
// NOTE: Does not handle moving children into a different container
|
// NOTE: Does not handle moving children into a different container
|
||||||
list_free(container->children);
|
list_free(container->children);
|
||||||
|
if (container->name) {
|
||||||
|
free(container->name);
|
||||||
|
}
|
||||||
free(container);
|
free(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,13 +150,14 @@ swayc_t *get_focused_container(swayc_t *parent) {
|
||||||
|
|
||||||
void add_view(wlc_handle view_handle) {
|
void add_view(wlc_handle view_handle) {
|
||||||
const uint32_t type = wlc_view_get_type(view_handle);
|
const uint32_t type = wlc_view_get_type(view_handle);
|
||||||
if (type & WLC_BIT_UNMANAGED) {
|
const char *title = wlc_view_get_title(view_handle);
|
||||||
sway_log(L_DEBUG, "Leaving view %d alone (unmanaged)", view_handle);
|
if ((type & WLC_BIT_UNMANAGED) || (type & WLC_BIT_POPUP) || (type & WLC_BIT_MODAL) || (type & WLC_BIT_SPLASH)) {
|
||||||
|
sway_log(L_DEBUG, "Leaving view %d:%s alone (unmanaged)", view_handle, title);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
swayc_t *parent = get_focused_container(&root_container);
|
swayc_t *parent = get_focused_container(&root_container);
|
||||||
sway_log(L_DEBUG, "Adding new view %d under container %p %d", view_handle, parent, parent->type);
|
sway_log(L_DEBUG, "Adding new view %d:%s under container %p %d", view_handle, title, parent, parent->type);
|
||||||
|
|
||||||
while (parent->type == C_VIEW) {
|
while (parent->type == C_VIEW) {
|
||||||
parent = parent->parent;
|
parent = parent->parent;
|
||||||
|
@ -165,6 +169,8 @@ void add_view(wlc_handle view_handle) {
|
||||||
view->handle = view_handle;
|
view->handle = view_handle;
|
||||||
view->parent = parent;
|
view->parent = parent;
|
||||||
view->type = C_VIEW;
|
view->type = C_VIEW;
|
||||||
|
view->name = malloc(strlen(title) + 1);
|
||||||
|
strcpy(view->name, title);
|
||||||
add_child(parent, view);
|
add_child(parent, view);
|
||||||
|
|
||||||
unfocus_all(&root_container);
|
unfocus_all(&root_container);
|
||||||
|
|
Loading…
Reference in a new issue