mirror of
https://github.com/NickHu/sway
synced 2024-12-27 21:58:11 +01:00
use previous outputs
This commit is contained in:
parent
930d136196
commit
da79bd65de
2 changed files with 26 additions and 1 deletions
|
@ -94,6 +94,7 @@ swayc_t *swayc_focus_by_layout(swayc_t *container, enum swayc_layouts);
|
|||
|
||||
|
||||
swayc_t *swayc_by_handle(wlc_handle handle);
|
||||
swayc_t *swayc_by_name(const char *name);
|
||||
swayc_t *swayc_active_output(void);
|
||||
swayc_t *swayc_active_workspace(void);
|
||||
swayc_t *swayc_active_workspace_for(swayc_t *view);
|
||||
|
|
|
@ -57,6 +57,19 @@ static void free_swayc(swayc_t *cont) {
|
|||
swayc_t *new_output(wlc_handle handle) {
|
||||
const struct wlc_size *size = wlc_output_get_resolution(handle);
|
||||
const char *name = wlc_output_get_name(handle);
|
||||
// Find current outputs to see if this already exists
|
||||
{
|
||||
int i, len = root_container.children->length;
|
||||
for (i = 0; i < len; ++i) {
|
||||
swayc_t *op = root_container.children->items[i];
|
||||
const char *op_name = op->name;
|
||||
if (op_name && name && strcmp(op_name, name) == 0) {
|
||||
sway_log(L_DEBUG, "restoring output %lu:%s", handle, op_name);
|
||||
return op;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
sway_log(L_DEBUG, "Added output %lu:%s", handle, name);
|
||||
|
||||
struct output_config *oc = NULL;
|
||||
|
@ -329,7 +342,7 @@ swayc_t *destroy_workspace(swayc_t *workspace) {
|
|||
|
||||
// Do not destroy if there are children
|
||||
if (workspace->children->length == 0 && workspace->floating->length == 0) {
|
||||
sway_log(L_DEBUG, "'%s'", workspace->name);
|
||||
sway_log(L_DEBUG, "destroying '%s'", workspace->name);
|
||||
swayc_t *parent = workspace->parent;
|
||||
free_swayc(workspace);
|
||||
return parent;
|
||||
|
@ -396,6 +409,17 @@ swayc_t *swayc_by_test(swayc_t *container, bool (*test)(swayc_t *view, void *dat
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static bool test_name(swayc_t *view, void *data) {
|
||||
if (!view && !view->name) {
|
||||
return false;
|
||||
}
|
||||
return strcmp(view->name, data) == 0;
|
||||
}
|
||||
|
||||
swayc_t *swayc_by_name(const char *name) {
|
||||
return swayc_by_test(&root_container, test_name, (void *)name);
|
||||
}
|
||||
|
||||
swayc_t *swayc_parent_by_type(swayc_t *container, enum swayc_types type) {
|
||||
if (!ASSERT_NONNULL(container)) {
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue