* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
- * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
*
* load_layout.c: Restore (parts of) the layout, for example after an inplace
* restart.
static bool parsing_rect;
static bool parsing_window_rect;
static bool parsing_geometry;
+static bool parsing_focus;
struct Match *current_swallow;
+/* This list is used for reordering the focus stack after parsing the 'focus'
+ * array. */
+struct focus_mapping {
+ int old_id;
+ TAILQ_ENTRY(focus_mapping) focus_mappings;
+};
+
+static TAILQ_HEAD(focus_mappings_head, focus_mapping) focus_mappings =
+ TAILQ_HEAD_INITIALIZER(focus_mappings);
+
static int json_start_map(void *ctx) {
LOG("start of map, last_key = %s\n", last_key);
if (parsing_swallows) {
static int json_end_array(void *ctx) {
LOG("end of array\n");
parsing_swallows = false;
+ if (parsing_focus) {
+ /* Clear the list of focus mappings */
+ struct focus_mapping *mapping;
+ TAILQ_FOREACH_REVERSE(mapping, &focus_mappings, focus_mappings_head, focus_mappings) {
+ LOG("focus (reverse) %d\n", mapping->old_id);
+ Con *con;
+ TAILQ_FOREACH(con, &(json_node->focus_head), focused) {
+ if (con->old_id != mapping->old_id)
+ continue;
+ LOG("got it! %p\n", con);
+ /* Move this entry to the top of the focus list. */
+ TAILQ_REMOVE(&(json_node->focus_head), con, focused);
+ TAILQ_INSERT_HEAD(&(json_node->focus_head), con, focused);
+ break;
+ }
+ }
+ while (!TAILQ_EMPTY(&focus_mappings)) {
+ mapping = TAILQ_FIRST(&focus_mappings);
+ TAILQ_REMOVE(&focus_mappings, mapping, focus_mappings);
+ free(mapping);
+ }
+ parsing_focus = false;
+ }
return 1;
}
FREE(last_key);
last_key = scalloc((len+1) * sizeof(char));
memcpy(last_key, val, len);
- if (strcasecmp(last_key, "swallows") == 0) {
+ if (strcasecmp(last_key, "swallows") == 0)
parsing_swallows = true;
- }
+
if (strcasecmp(last_key, "rect") == 0)
parsing_rect = true;
+
if (strcasecmp(last_key, "window_rect") == 0)
parsing_window_rect = true;
+
if (strcasecmp(last_key, "geometry") == 0)
parsing_geometry = true;
+
+ if (strcasecmp(last_key, "focus") == 0)
+ parsing_focus = true;
+
return 1;
}
static int json_int(void *ctx, long val) {
LOG("int %ld for key %s\n", val, last_key);
#endif
- if (strcasecmp(last_key, "type") == 0) {
+ if (strcasecmp(last_key, "type") == 0)
json_node->type = val;
- }
- if (strcasecmp(last_key, "fullscreen_mode") == 0) {
+
+ if (strcasecmp(last_key, "fullscreen_mode") == 0)
json_node->fullscreen_mode = val;
- }
+
if (strcasecmp(last_key, "num") == 0)
json_node->num = val;
+ if (!parsing_swallows && strcasecmp(last_key, "id") == 0)
+ json_node->old_id = val;
+
+ if (parsing_focus) {
+ struct focus_mapping *focus_mapping = scalloc(sizeof(struct focus_mapping));
+ focus_mapping->old_id = val;
+ TAILQ_INSERT_TAIL(&focus_mappings, focus_mapping, focus_mappings);
+ }
+
if (parsing_rect || parsing_window_rect || parsing_geometry) {
Rect *r;
if (parsing_rect)
to_focus = json_node;
}
+ if (parsing_swallows) {
+ if (strcasecmp(last_key, "restart_mode") == 0)
+ current_swallow->restart_mode = val;
+ }
+
return 1;
}
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
- * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
*
* manage.c: Initially managing new windows (or existing ones on restart).
*
DLOG("Initial geometry: (%d, %d, %d, %d)\n", geom->x, geom->y, geom->width, geom->height);
Con *nc = NULL;
- Match *match;
+ Match *match = NULL;
Assignment *assignment;
/* TODO: two matches for one container */
Con *target_output = con_get_output(ws);
if (workspace_is_visible(ws) && current_output == target_output) {
- con_focus(nc);
+ if (!match || !match->restart_mode) {
+ con_focus(nc);
+ } else DLOG("not focusing, matched with restart_mode == true\n");
} else DLOG("workspace not visible, not focusing\n");
} else DLOG("dock, not focusing\n");
} else {
--- /dev/null
+#!perl
+# vim:ts=4:sw=4:expandtab
+#
+# Verifies that i3 survives inplace restarts with fullscreen containers
+#
+use i3test;
+
+my $tmp = fresh_workspace;
+
+open_window(name => 'first');
+open_window(name => 'second');
+
+cmd 'focus left';
+
+my ($nodes, $focus) = get_ws_content($tmp);
+is(scalar @$nodes, 2, 'two tiling nodes on workspace');
+is($nodes->[0]->{name}, 'first', 'first node name ok');
+is($nodes->[1]->{name}, 'second', 'second node name ok');
+is($focus->[0], $nodes->[0]->{id}, 'first node focused');
+is($focus->[1], $nodes->[1]->{id}, 'second node second in focus stack');
+
+cmd 'restart';
+sleep 1;
+
+does_i3_live;
+
+($nodes, $focus) = get_ws_content($tmp);
+is(scalar @$nodes, 2, 'still two tiling nodes on workspace');
+is($nodes->[0]->{name}, 'first', 'first node name ok');
+is($nodes->[1]->{name}, 'second', 'second node name ok');
+is($focus->[0], $nodes->[0]->{id}, 'first node focused');
+is($focus->[1], $nodes->[1]->{id}, 'second node second in focus stack');
+
+done_testing;