i3
con.c
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * con.c: Functions which deal with containers directly (creating containers,
8  * searching containers, getting specific properties from containers,
9  * …).
10  *
11  */
12 #include "all.h"
13 
14 #include "yajl_utils.h"
15 
16 static void con_on_remove_child(Con *con);
17 
18 /*
19  * force parent split containers to be redrawn
20  *
21  */
23  Con *parent = con;
24 
25  while (parent && parent->type != CT_WORKSPACE && parent->type != CT_DOCKAREA) {
26  if (!con_is_leaf(parent))
27  FREE(parent->deco_render_params);
28  parent = parent->parent;
29  }
30 }
31 
32 /*
33  * Create a new container (and attach it to the given parent, if not NULL).
34  * This function only initializes the data structures.
35  *
36  */
37 Con *con_new_skeleton(Con *parent, i3Window *window) {
38  Con *new = scalloc(1, sizeof(Con));
39  new->on_remove_child = con_on_remove_child;
41  new->type = CT_CON;
42  new->window = window;
43  new->border_style = config.default_border;
44  new->current_border_width = -1;
45  if (window) {
46  new->depth = window->depth;
47  new->window->aspect_ratio = 0.0;
48  } else {
49  new->depth = root_depth;
50  }
51  DLOG("opening window\n");
52 
53  TAILQ_INIT(&(new->floating_head));
54  TAILQ_INIT(&(new->nodes_head));
55  TAILQ_INIT(&(new->focus_head));
56  TAILQ_INIT(&(new->swallow_head));
57  TAILQ_INIT(&(new->marks_head));
58 
59  if (parent != NULL)
60  con_attach(new, parent, false);
61 
62  return new;
63 }
64 
65 /* A wrapper for con_new_skeleton, to retain the old con_new behaviour
66  *
67  */
68 Con *con_new(Con *parent, i3Window *window) {
69  Con *new = con_new_skeleton(parent, window);
70  x_con_init(new);
71  return new;
72 }
73 
74 static void _con_attach(Con *con, Con *parent, Con *previous, bool ignore_focus) {
75  con->parent = parent;
76  Con *loop;
77  Con *current = previous;
78  struct nodes_head *nodes_head = &(parent->nodes_head);
79  struct focus_head *focus_head = &(parent->focus_head);
80 
81  /* Workspaces are handled differently: they need to be inserted at the
82  * right position. */
83  if (con->type == CT_WORKSPACE) {
84  DLOG("it's a workspace. num = %d\n", con->num);
85  if (con->num == -1 || TAILQ_EMPTY(nodes_head)) {
86  TAILQ_INSERT_TAIL(nodes_head, con, nodes);
87  } else {
88  current = TAILQ_FIRST(nodes_head);
89  if (con->num < current->num) {
90  /* we need to insert the container at the beginning */
91  TAILQ_INSERT_HEAD(nodes_head, con, nodes);
92  } else {
93  while (current->num != -1 && con->num > current->num) {
94  current = TAILQ_NEXT(current, nodes);
95  if (current == TAILQ_END(nodes_head)) {
96  current = NULL;
97  break;
98  }
99  }
100  /* we need to insert con after current, if current is not NULL */
101  if (current)
102  TAILQ_INSERT_BEFORE(current, con, nodes);
103  else
104  TAILQ_INSERT_TAIL(nodes_head, con, nodes);
105  }
106  }
107  goto add_to_focus_head;
108  }
109 
110  if (con->type == CT_FLOATING_CON) {
111  DLOG("Inserting into floating containers\n");
112  TAILQ_INSERT_TAIL(&(parent->floating_head), con, floating_windows);
113  } else {
114  if (!ignore_focus) {
115  /* Get the first tiling container in focus stack */
116  TAILQ_FOREACH(loop, &(parent->focus_head), focused) {
117  if (loop->type == CT_FLOATING_CON)
118  continue;
119  current = loop;
120  break;
121  }
122  }
123 
124  /* When the container is not a split container (but contains a window)
125  * and is attached to a workspace, we check if the user configured a
126  * workspace_layout. This is done in workspace_attach_to, which will
127  * provide us with the container to which we should attach (either the
128  * workspace or a new split container with the configured
129  * workspace_layout).
130  */
131  if (con->window != NULL &&
132  parent->type == CT_WORKSPACE &&
133  parent->workspace_layout != L_DEFAULT) {
134  DLOG("Parent is a workspace. Applying default layout...\n");
135  Con *target = workspace_attach_to(parent);
136 
137  /* Attach the original con to this new split con instead */
138  nodes_head = &(target->nodes_head);
139  focus_head = &(target->focus_head);
140  con->parent = target;
141  current = NULL;
142 
143  DLOG("done\n");
144  }
145 
146  /* Insert the container after the tiling container, if found.
147  * When adding to a CT_OUTPUT, just append one after another. */
148  if (current && parent->type != CT_OUTPUT) {
149  DLOG("Inserting con = %p after con %p\n", con, current);
150  TAILQ_INSERT_AFTER(nodes_head, current, con, nodes);
151  } else
152  TAILQ_INSERT_TAIL(nodes_head, con, nodes);
153  }
154 
155 add_to_focus_head:
156  /* We insert to the TAIL because con_focus() will correct this.
157  * This way, we have the option to insert Cons without having
158  * to focus them. */
159  TAILQ_INSERT_TAIL(focus_head, con, focused);
161 }
162 
163 /*
164  * Attaches the given container to the given parent. This happens when moving
165  * a container or when inserting a new container at a specific place in the
166  * tree.
167  *
168  * ignore_focus is to just insert the Con at the end (useful when creating a
169  * new split container *around* some containers, that is, detaching and
170  * attaching them in order without wanting to mess with the focus in between).
171  *
172  */
173 void con_attach(Con *con, Con *parent, bool ignore_focus) {
174  _con_attach(con, parent, NULL, ignore_focus);
175 }
176 
177 /*
178  * Detaches the given container from its current parent
179  *
180  */
181 void con_detach(Con *con) {
183  if (con->type == CT_FLOATING_CON) {
184  TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
185  TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
186  } else {
187  TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
188  TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
189  }
190 }
191 
192 /*
193  * Sets input focus to the given container. Will be updated in X11 in the next
194  * run of x_push_changes().
195  *
196  */
197 void con_focus(Con *con) {
198  assert(con != NULL);
199  DLOG("con_focus = %p\n", con);
200 
201  /* 1: set focused-pointer to the new con */
202  /* 2: exchange the position of the container in focus stack of the parent all the way up */
203  TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
204  TAILQ_INSERT_HEAD(&(con->parent->focus_head), con, focused);
205  if (con->parent->parent != NULL)
206  con_focus(con->parent);
207 
208  focused = con;
209  /* We can't blindly reset non-leaf containers since they might have
210  * other urgent children. Therefore we only reset leafs and propagate
211  * the changes upwards via con_update_parents_urgency() which does proper
212  * checks before resetting the urgency.
213  */
214  if (con->urgent && con_is_leaf(con)) {
215  con_set_urgency(con, false);
218  ipc_send_window_event("urgent", con);
219  }
220 }
221 
222 /*
223  * Closes the given container.
224  *
225  */
226 void con_close(Con *con, kill_window_t kill_window) {
227  assert(con != NULL);
228  DLOG("Closing con = %p.\n", con);
229 
230  /* We never close output or root containers. */
231  if (con->type == CT_OUTPUT || con->type == CT_ROOT) {
232  DLOG("con = %p is of type %d, not closing anything.\n", con, con->type);
233  return;
234  }
235 
236  if (con->type == CT_WORKSPACE) {
237  DLOG("con = %p is a workspace, closing all children instead.\n", con);
238  Con *child, *nextchild;
239  for (child = TAILQ_FIRST(&(con->focus_head)); child;) {
240  nextchild = TAILQ_NEXT(child, focused);
241  DLOG("killing child = %p.\n", child);
242  tree_close_internal(child, kill_window, false, false);
243  child = nextchild;
244  }
245 
246  return;
247  }
248 
249  tree_close_internal(con, kill_window, false, false);
250 }
251 
252 /*
253  * Returns true when this node is a leaf node (has no children)
254  *
255  */
256 bool con_is_leaf(Con *con) {
257  return TAILQ_EMPTY(&(con->nodes_head));
258 }
259 
260 /*
261  * Returns true when this con is a leaf node with a managed X11 window (e.g.,
262  * excluding dock containers)
263  */
265  return (con != NULL && con->window != NULL && con->window->id != XCB_WINDOW_NONE && con_get_workspace(con) != NULL);
266 }
267 
272 bool con_has_children(Con *con) {
273  return (!con_is_leaf(con) || !TAILQ_EMPTY(&(con->floating_head)));
274 }
275 
276 /*
277  * Returns true if a container should be considered split.
278  *
279  */
280 bool con_is_split(Con *con) {
281  if (con_is_leaf(con))
282  return false;
283 
284  switch (con->layout) {
285  case L_DOCKAREA:
286  case L_OUTPUT:
287  return false;
288 
289  default:
290  return true;
291  }
292 }
293 
294 /*
295  * This will only return true for containers which have some parent with
296  * a tabbed / stacked parent of which they are not the currently focused child.
297  *
298  */
299 bool con_is_hidden(Con *con) {
300  Con *current = con;
301 
302  /* ascend to the workspace level and memorize the highest-up container
303  * which is stacked or tabbed. */
304  while (current != NULL && current->type != CT_WORKSPACE) {
305  Con *parent = current->parent;
306  if (parent != NULL && (parent->layout == L_TABBED || parent->layout == L_STACKED)) {
307  if (TAILQ_FIRST(&(parent->focus_head)) != current)
308  return true;
309  }
310 
311  current = parent;
312  }
313 
314  return false;
315 }
316 
317 /*
318  * Returns whether the container or any of its children is sticky.
319  *
320  */
321 bool con_is_sticky(Con *con) {
322  if (con->sticky)
323  return true;
324 
325  Con *child;
326  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
327  if (con_is_sticky(child))
328  return true;
329  }
330 
331  return false;
332 }
333 
334 /*
335  * Returns true if this node accepts a window (if the node swallows windows,
336  * it might already have swallowed enough and cannot hold any more).
337  *
338  */
340  /* 1: workspaces never accept direct windows */
341  if (con->type == CT_WORKSPACE)
342  return false;
343 
344  if (con_is_split(con)) {
345  DLOG("container %p does not accept windows, it is a split container.\n", con);
346  return false;
347  }
348 
349  /* TODO: if this is a swallowing container, we need to check its max_clients */
350  return (con->window == NULL);
351 }
352 
353 /*
354  * Gets the output container (first container with CT_OUTPUT in hierarchy) this
355  * node is on.
356  *
357  */
359  Con *result = con;
360  while (result != NULL && result->type != CT_OUTPUT)
361  result = result->parent;
362  /* We must be able to get an output because focus can never be set higher
363  * in the tree (root node cannot be focused). */
364  assert(result != NULL);
365  return result;
366 }
367 
368 /*
369  * Gets the workspace container this node is on.
370  *
371  */
373  Con *result = con;
374  while (result != NULL && result->type != CT_WORKSPACE)
375  result = result->parent;
376  return result;
377 }
378 
379 /*
380  * Searches parenst of the given 'con' until it reaches one with the specified
381  * 'orientation'. Aborts when it comes across a floating_con.
382  *
383  */
385  DLOG("Searching for parent of Con %p with orientation %d\n", con, orientation);
386  Con *parent = con->parent;
387  if (parent->type == CT_FLOATING_CON)
388  return NULL;
389  while (con_orientation(parent) != orientation) {
390  DLOG("Need to go one level further up\n");
391  parent = parent->parent;
392  /* Abort when we reach a floating con, or an output con */
393  if (parent &&
394  (parent->type == CT_FLOATING_CON ||
395  parent->type == CT_OUTPUT ||
396  (parent->parent && parent->parent->type == CT_OUTPUT)))
397  parent = NULL;
398  if (parent == NULL)
399  break;
400  }
401  DLOG("Result: %p\n", parent);
402  return parent;
403 }
404 
405 /*
406  * helper data structure for the breadth-first-search in
407  * con_get_fullscreen_con()
408  *
409  */
410 struct bfs_entry {
412 
413  TAILQ_ENTRY(bfs_entry) entries;
414 };
415 
416 /*
417  * Returns the first fullscreen node below this node.
418  *
419  */
421  Con *current, *child;
422 
423  /* TODO: is breadth-first-search really appropriate? (check as soon as
424  * fullscreen levels and fullscreen for containers is implemented) */
425  TAILQ_HEAD(bfs_head, bfs_entry) bfs_head = TAILQ_HEAD_INITIALIZER(bfs_head);
426  struct bfs_entry *entry = smalloc(sizeof(struct bfs_entry));
427  entry->con = con;
428  TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
429 
430  while (!TAILQ_EMPTY(&bfs_head)) {
431  entry = TAILQ_FIRST(&bfs_head);
432  current = entry->con;
433  if (current != con && current->fullscreen_mode == fullscreen_mode) {
434  /* empty the queue */
435  while (!TAILQ_EMPTY(&bfs_head)) {
436  entry = TAILQ_FIRST(&bfs_head);
437  TAILQ_REMOVE(&bfs_head, entry, entries);
438  free(entry);
439  }
440  return current;
441  }
442 
443  TAILQ_REMOVE(&bfs_head, entry, entries);
444  free(entry);
445 
446  TAILQ_FOREACH(child, &(current->nodes_head), nodes) {
447  entry = smalloc(sizeof(struct bfs_entry));
448  entry->con = child;
449  TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
450  }
451 
452  TAILQ_FOREACH(child, &(current->floating_head), floating_windows) {
453  entry = smalloc(sizeof(struct bfs_entry));
454  entry->con = child;
455  TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
456  }
457  }
458 
459  return NULL;
460 }
461 
467  return (con->name[0] == '_' && con->name[1] == '_');
468 }
469 
470 /*
471  * Returns true if the node is floating.
472  *
473  */
475  assert(con != NULL);
476  DLOG("checking if con %p is floating\n", con);
477  return (con->floating >= FLOATING_AUTO_ON);
478 }
479 
480 /*
481  * Returns true if the container is a docked container.
482  *
483  */
485  if (con->parent == NULL)
486  return false;
487 
488  if (con->parent->type == CT_DOCKAREA)
489  return true;
490 
491  return con_is_docked(con->parent);
492 }
493 
494 /*
495  * Checks if the given container is either floating or inside some floating
496  * container. It returns the FLOATING_CON container.
497  *
498  */
500  assert(con != NULL);
501  if (con->type == CT_FLOATING_CON)
502  return con;
503 
504  if (con->floating >= FLOATING_AUTO_ON)
505  return con->parent;
506 
507  if (con->type == CT_WORKSPACE || con->type == CT_OUTPUT)
508  return NULL;
509 
510  return con_inside_floating(con->parent);
511 }
512 
513 /*
514  * Checks if the given container is inside a focused container.
515  *
516  */
518  if (con == focused)
519  return true;
520  if (!con->parent)
521  return false;
522  return con_inside_focused(con->parent);
523 }
524 
525 /*
526  * Returns the container with the given client window ID or NULL if no such
527  * container exists.
528  *
529  */
530 Con *con_by_window_id(xcb_window_t window) {
531  Con *con;
533  if (con->window != NULL && con->window->id == window)
534  return con;
535  return NULL;
536 }
537 
538 /*
539  * Returns the container with the given frame ID or NULL if no such container
540  * exists.
541  *
542  */
543 Con *con_by_frame_id(xcb_window_t frame) {
544  Con *con;
546  if (con->frame.id == frame)
547  return con;
548  return NULL;
549 }
550 
551 /*
552  * Returns the container with the given mark or NULL if no such container
553  * exists.
554  *
555  */
556 Con *con_by_mark(const char *mark) {
557  Con *con;
559  if (con_has_mark(con, mark))
560  return con;
561  }
562 
563  return NULL;
564 }
565 
566 /*
567  * Returns true if and only if the given containers holds the mark.
568  *
569  */
570 bool con_has_mark(Con *con, const char *mark) {
571  mark_t *current;
572  TAILQ_FOREACH(current, &(con->marks_head), marks) {
573  if (strcmp(current->name, mark) == 0)
574  return true;
575  }
576 
577  return false;
578 }
579 
580 /*
581  * Toggles the mark on a container.
582  * If the container already has this mark, the mark is removed.
583  * Otherwise, the mark is assigned to the container.
584  *
585  */
586 void con_mark_toggle(Con *con, const char *mark, mark_mode_t mode) {
587  assert(con != NULL);
588  DLOG("Toggling mark \"%s\" on con = %p.\n", mark, con);
589 
590  if (con_has_mark(con, mark)) {
591  con_unmark(con, mark);
592  } else {
593  con_mark(con, mark, mode);
594  }
595 }
596 
597 /*
598  * Assigns a mark to the container.
599  *
600  */
601 void con_mark(Con *con, const char *mark, mark_mode_t mode) {
602  assert(con != NULL);
603  DLOG("Setting mark \"%s\" on con = %p.\n", mark, con);
604 
605  con_unmark(NULL, mark);
606  if (mode == MM_REPLACE) {
607  DLOG("Removing all existing marks on con = %p.\n", con);
608 
609  mark_t *current;
610  while (!TAILQ_EMPTY(&(con->marks_head))) {
611  current = TAILQ_FIRST(&(con->marks_head));
612  con_unmark(con, current->name);
613  }
614  }
615 
616  mark_t *new = scalloc(1, sizeof(mark_t));
617  new->name = sstrdup(mark);
618  TAILQ_INSERT_TAIL(&(con->marks_head), new, marks);
619  ipc_send_window_event("mark", con);
620 
621  con->mark_changed = true;
622 }
623 
624 /*
625  * Removes marks from containers.
626  * If con is NULL, all containers are considered.
627  * If name is NULL, this removes all existing marks.
628  * Otherwise, it will only remove the given mark (if it is present).
629  *
630  */
631 void con_unmark(Con *con, const char *name) {
632  Con *current;
633  if (name == NULL) {
634  DLOG("Unmarking all containers.\n");
635  TAILQ_FOREACH(current, &all_cons, all_cons) {
636  if (con != NULL && current != con)
637  continue;
638 
639  if (TAILQ_EMPTY(&(current->marks_head)))
640  continue;
641 
642  mark_t *mark;
643  while (!TAILQ_EMPTY(&(current->marks_head))) {
644  mark = TAILQ_FIRST(&(current->marks_head));
645  FREE(mark->name);
646  TAILQ_REMOVE(&(current->marks_head), mark, marks);
647  FREE(mark);
648 
649  ipc_send_window_event("mark", current);
650  }
651 
652  current->mark_changed = true;
653  }
654  } else {
655  DLOG("Removing mark \"%s\".\n", name);
656  current = (con == NULL) ? con_by_mark(name) : con;
657  if (current == NULL) {
658  DLOG("No container found with this mark, so there is nothing to do.\n");
659  return;
660  }
661 
662  DLOG("Found mark on con = %p. Removing it now.\n", current);
663  current->mark_changed = true;
664 
665  mark_t *mark;
666  TAILQ_FOREACH(mark, &(current->marks_head), marks) {
667  if (strcmp(mark->name, name) != 0)
668  continue;
669 
670  FREE(mark->name);
671  TAILQ_REMOVE(&(current->marks_head), mark, marks);
672  FREE(mark);
673 
674  ipc_send_window_event("mark", current);
675  break;
676  }
677  }
678 }
679 
680 /*
681  * Returns the first container below 'con' which wants to swallow this window
682  * TODO: priority
683  *
684  */
685 Con *con_for_window(Con *con, i3Window *window, Match **store_match) {
686  Con *child;
687  Match *match;
688  //DLOG("searching con for window %p starting at con %p\n", window, con);
689  //DLOG("class == %s\n", window->class_class);
690 
691  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
692  TAILQ_FOREACH(match, &(child->swallow_head), matches) {
693  if (!match_matches_window(match, window))
694  continue;
695  if (store_match != NULL)
696  *store_match = match;
697  return child;
698  }
699  Con *result = con_for_window(child, window, store_match);
700  if (result != NULL)
701  return result;
702  }
703 
704  TAILQ_FOREACH(child, &(con->floating_head), floating_windows) {
705  TAILQ_FOREACH(match, &(child->swallow_head), matches) {
706  if (!match_matches_window(match, window))
707  continue;
708  if (store_match != NULL)
709  *store_match = match;
710  return child;
711  }
712  Con *result = con_for_window(child, window, store_match);
713  if (result != NULL)
714  return result;
715  }
716 
717  return NULL;
718 }
719 
720 /*
721  * Returns the number of children of this container.
722  *
723  */
725  Con *child;
726  int children = 0;
727 
728  TAILQ_FOREACH(child, &(con->nodes_head), nodes)
729  children++;
730 
731  return children;
732 }
733 
740  if (con == NULL)
741  return 0;
742 
743  int children = 0;
744  Con *current = NULL;
745  TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
746  /* Visible leaf nodes are a child. */
747  if (!con_is_hidden(current) && con_is_leaf(current))
748  children++;
749  /* All other containers need to be recursed. */
750  else
751  children += con_num_visible_children(current);
752  }
753 
754  return children;
755 }
756 
757 /*
758  * Count the number of windows (i.e., leaf containers).
759  *
760  */
762  if (con == NULL)
763  return 0;
764 
765  if (con_has_managed_window(con))
766  return 1;
767 
768  int num = 0;
769  Con *current = NULL;
770  TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
771  num += con_num_windows(current);
772  }
773 
774  return num;
775 }
776 
777 /*
778  * Updates the percent attribute of the children of the given container. This
779  * function needs to be called when a window is added or removed from a
780  * container.
781  *
782  */
784  Con *child;
785  int children = con_num_children(con);
786 
787  // calculate how much we have distributed and how many containers
788  // with a percentage set we have
789  double total = 0.0;
790  int children_with_percent = 0;
791  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
792  if (child->percent > 0.0) {
793  total += child->percent;
794  ++children_with_percent;
795  }
796  }
797 
798  // if there were children without a percentage set, set to a value that
799  // will make those children proportional to all others
800  if (children_with_percent != children) {
801  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
802  if (child->percent <= 0.0) {
803  if (children_with_percent == 0)
804  total += (child->percent = 1.0);
805  else
806  total += (child->percent = total / children_with_percent);
807  }
808  }
809  }
810 
811  // if we got a zero, just distribute the space equally, otherwise
812  // distribute according to the proportions we got
813  if (total == 0.0) {
814  TAILQ_FOREACH(child, &(con->nodes_head), nodes)
815  child->percent = 1.0 / children;
816  } else if (total != 1.0) {
817  TAILQ_FOREACH(child, &(con->nodes_head), nodes)
818  child->percent /= total;
819  }
820 }
821 
822 /*
823  * Toggles fullscreen mode for the given container. If there already is a
824  * fullscreen container on this workspace, fullscreen will be disabled and then
825  * enabled for the container the user wants to have in fullscreen mode.
826  *
827  */
828 void con_toggle_fullscreen(Con *con, int fullscreen_mode) {
829  if (con->type == CT_WORKSPACE) {
830  DLOG("You cannot make a workspace fullscreen.\n");
831  return;
832  }
833 
834  DLOG("toggling fullscreen for %p / %s\n", con, con->name);
835 
836  if (con->fullscreen_mode == CF_NONE)
837  con_enable_fullscreen(con, fullscreen_mode);
838  else
840 }
841 
842 /*
843  * Sets the specified fullscreen mode for the given container, sends the
844  * “fullscreen_mode” event and changes the XCB fullscreen property of the
845  * container’s window, if any.
846  *
847  */
848 static void con_set_fullscreen_mode(Con *con, fullscreen_mode_t fullscreen_mode) {
849  con->fullscreen_mode = fullscreen_mode;
850 
851  DLOG("mode now: %d\n", con->fullscreen_mode);
852 
853  /* Send an ipc window "fullscreen_mode" event */
854  ipc_send_window_event("fullscreen_mode", con);
855 
856  /* update _NET_WM_STATE if this container has a window */
857  /* TODO: when a window is assigned to a container which is already
858  * fullscreened, this state needs to be pushed to the client, too */
859  if (con->window == NULL)
860  return;
861 
862  if (con->fullscreen_mode != CF_NONE) {
863  DLOG("Setting _NET_WM_STATE_FULLSCREEN for con = %p / window = %d.\n", con, con->window->id);
864  xcb_add_property_atom(conn, con->window->id, A__NET_WM_STATE, A__NET_WM_STATE_FULLSCREEN);
865  } else {
866  DLOG("Removing _NET_WM_STATE_FULLSCREEN for con = %p / window = %d.\n", con, con->window->id);
867  xcb_remove_property_atom(conn, con->window->id, A__NET_WM_STATE, A__NET_WM_STATE_FULLSCREEN);
868  }
869 }
870 
871 /*
872  * Enables fullscreen mode for the given container, if necessary.
873  *
874  * If the container’s mode is already CF_OUTPUT or CF_GLOBAL, the container is
875  * kept fullscreen but its mode is set to CF_GLOBAL and CF_OUTPUT,
876  * respectively.
877  *
878  * Other fullscreen containers will be disabled first, if they hide the new
879  * one.
880  *
881  */
883  if (con->type == CT_WORKSPACE) {
884  DLOG("You cannot make a workspace fullscreen.\n");
885  return;
886  }
887 
888  assert(fullscreen_mode == CF_GLOBAL || fullscreen_mode == CF_OUTPUT);
889 
890  if (fullscreen_mode == CF_GLOBAL)
891  DLOG("enabling global fullscreen for %p / %s\n", con, con->name);
892  else
893  DLOG("enabling fullscreen for %p / %s\n", con, con->name);
894 
895  if (con->fullscreen_mode == fullscreen_mode) {
896  DLOG("fullscreen already enabled for %p / %s\n", con, con->name);
897  return;
898  }
899 
900  Con *con_ws = con_get_workspace(con);
901 
902  /* Disable any fullscreen container that would conflict the new one. */
903  Con *fullscreen = con_get_fullscreen_con(croot, CF_GLOBAL);
904  if (fullscreen == NULL)
905  fullscreen = con_get_fullscreen_con(con_ws, CF_OUTPUT);
906  if (fullscreen != NULL)
907  con_disable_fullscreen(fullscreen);
908 
909  /* Set focus to new fullscreen container. Unless in global fullscreen mode
910  * and on another workspace restore focus afterwards.
911  * Switch to the container’s workspace if mode is global. */
912  Con *cur_ws = con_get_workspace(focused);
913  Con *old_focused = focused;
914  if (fullscreen_mode == CF_GLOBAL && cur_ws != con_ws)
915  workspace_show(con_ws);
916  con_focus(con);
917  if (fullscreen_mode != CF_GLOBAL && cur_ws != con_ws)
918  con_focus(old_focused);
919 
920  con_set_fullscreen_mode(con, fullscreen_mode);
921 }
922 
923 /*
924  * Disables fullscreen mode for the given container regardless of the mode, if
925  * necessary.
926  *
927  */
929  if (con->type == CT_WORKSPACE) {
930  DLOG("You cannot make a workspace fullscreen.\n");
931  return;
932  }
933 
934  DLOG("disabling fullscreen for %p / %s\n", con, con->name);
935 
936  if (con->fullscreen_mode == CF_NONE) {
937  DLOG("fullscreen already disabled for %p / %s\n", con, con->name);
938  return;
939  }
940 
942 }
943 
944 static bool _con_move_to_con(Con *con, Con *target, bool behind_focused, bool fix_coordinates, bool dont_warp, bool ignore_focus) {
945  Con *orig_target = target;
946 
947  /* Prevent moving if this would violate the fullscreen focus restrictions. */
948  Con *target_ws = con_get_workspace(target);
949  if (!con_fullscreen_permits_focusing(target_ws)) {
950  LOG("Cannot move out of a fullscreen container.\n");
951  return false;
952  }
953 
954  if (con_is_floating(con)) {
955  DLOG("Container is floating, using parent instead.\n");
956  con = con->parent;
957  }
958 
959  Con *source_ws = con_get_workspace(con);
960 
961  if (con->type == CT_WORKSPACE) {
962  /* Re-parent all of the old workspace's floating windows. */
963  Con *child;
964  while (!TAILQ_EMPTY(&(source_ws->floating_head))) {
965  child = TAILQ_FIRST(&(source_ws->floating_head));
966  con_move_to_workspace(child, target_ws, true, true, false);
967  }
968 
969  /* If there are no non-floating children, ignore the workspace. */
970  if (con_is_leaf(con))
971  return false;
972 
973  con = workspace_encapsulate(con);
974  if (con == NULL) {
975  ELOG("Workspace failed to move its contents into a container!\n");
976  return false;
977  }
978  }
979 
980  /* Save the urgency state so that we can restore it. */
981  bool urgent = con->urgent;
982 
983  /* Save the current workspace. So we can call workspace_show() by the end
984  * of this function. */
985  Con *current_ws = con_get_workspace(focused);
986 
987  Con *source_output = con_get_output(con),
988  *dest_output = con_get_output(target_ws);
989 
990  /* 1: save the container which is going to be focused after the current
991  * container is moved away */
992  Con *focus_next = con_next_focused(con);
993 
994  /* 2: we go up one level, but only when target is a normal container */
995  if (target->type != CT_WORKSPACE) {
996  DLOG("target originally = %p / %s / type %d\n", target, target->name, target->type);
997  target = target->parent;
998  }
999 
1000  /* 3: if the target container is floating, we get the workspace instead.
1001  * Only tiling windows need to get inserted next to the current container.
1002  * */
1003  Con *floatingcon = con_inside_floating(target);
1004  if (floatingcon != NULL) {
1005  DLOG("floatingcon, going up even further\n");
1006  target = floatingcon->parent;
1007  }
1008 
1009  if (con->type == CT_FLOATING_CON) {
1010  Con *ws = con_get_workspace(target);
1011  DLOG("This is a floating window, using workspace %p / %s\n", ws, ws->name);
1012  target = ws;
1013  }
1014 
1015  if (source_output != dest_output) {
1016  /* Take the relative coordinates of the current output, then add them
1017  * to the coordinate space of the correct output */
1018  if (fix_coordinates && con->type == CT_FLOATING_CON) {
1019  floating_fix_coordinates(con, &(source_output->rect), &(dest_output->rect));
1020  } else
1021  DLOG("Not fixing coordinates, fix_coordinates flag = %d\n", fix_coordinates);
1022 
1023  /* If moving to a visible workspace, call show so it can be considered
1024  * focused. Must do before attaching because workspace_show checks to see
1025  * if focused container is in its area. */
1026  if (!ignore_focus && workspace_is_visible(target_ws)) {
1027  workspace_show(target_ws);
1028 
1029  /* Don’t warp if told so (when dragging floating windows with the
1030  * mouse for example) */
1031  if (dont_warp)
1032  x_set_warp_to(NULL);
1033  else
1034  x_set_warp_to(&(con->rect));
1035  }
1036  }
1037 
1038  /* If moving a fullscreen container and the destination already has a
1039  * fullscreen window on it, un-fullscreen the target's fullscreen con. */
1040  Con *fullscreen = con_get_fullscreen_con(target_ws, CF_OUTPUT);
1041  if (con->fullscreen_mode != CF_NONE && fullscreen != NULL) {
1042  con_toggle_fullscreen(fullscreen, CF_OUTPUT);
1043  fullscreen = NULL;
1044  }
1045 
1046  DLOG("Re-attaching container to %p / %s\n", target, target->name);
1047  /* 4: re-attach the con to the parent of this focused container */
1048  Con *parent = con->parent;
1049  con_detach(con);
1050  _con_attach(con, target, behind_focused ? NULL : orig_target, !behind_focused);
1051 
1052  /* 5: fix the percentages */
1053  con_fix_percent(parent);
1054  con->percent = 0.0;
1055  con_fix_percent(target);
1056 
1057  /* 6: focus the con on the target workspace, but only within that
1058  * workspace, that is, don’t move focus away if the target workspace is
1059  * invisible.
1060  * We don’t focus the con for i3 pseudo workspaces like __i3_scratch and
1061  * we don’t focus when there is a fullscreen con on that workspace. We
1062  * also don't do it if the caller requested to ignore focus. */
1063  if (!ignore_focus && !con_is_internal(target_ws) && !fullscreen) {
1064  /* We need to save the focused workspace on the output in case the
1065  * new workspace is hidden and it's necessary to immediately switch
1066  * back to the originally-focused workspace. */
1067  Con *old_focus = TAILQ_FIRST(&(output_get_content(dest_output)->focus_head));
1069 
1070  /* Restore focus if the output's focused workspace has changed. */
1071  if (con_get_workspace(focused) != old_focus)
1072  con_focus(old_focus);
1073  }
1074 
1075  /* 7: when moving to another workspace, we leave the focus on the current
1076  * workspace. (see also #809) */
1077 
1078  /* Descend focus stack in case focus_next is a workspace which can
1079  * occur if we move to the same workspace. Also show current workspace
1080  * to ensure it is focused. */
1081  if (!ignore_focus)
1082  workspace_show(current_ws);
1083 
1084  /* Set focus only if con was on current workspace before moving.
1085  * Otherwise we would give focus to some window on different workspace. */
1086  if (!ignore_focus && source_ws == current_ws)
1087  con_focus(con_descend_focused(focus_next));
1088 
1089  /* 8. If anything within the container is associated with a startup sequence,
1090  * delete it so child windows won't be created on the old workspace. */
1091  struct Startup_Sequence *sequence;
1092  xcb_get_property_cookie_t cookie;
1093  xcb_get_property_reply_t *startup_id_reply;
1094 
1095  if (!con_is_leaf(con)) {
1096  Con *child;
1097  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1098  if (!child->window)
1099  continue;
1100 
1101  cookie = xcb_get_property(conn, false, child->window->id,
1102  A__NET_STARTUP_ID, XCB_GET_PROPERTY_TYPE_ANY, 0, 512);
1103  startup_id_reply = xcb_get_property_reply(conn, cookie, NULL);
1104 
1105  sequence = startup_sequence_get(child->window, startup_id_reply, true);
1106  if (sequence != NULL)
1107  startup_sequence_delete(sequence);
1108  }
1109  }
1110 
1111  if (con->window) {
1112  cookie = xcb_get_property(conn, false, con->window->id,
1113  A__NET_STARTUP_ID, XCB_GET_PROPERTY_TYPE_ANY, 0, 512);
1114  startup_id_reply = xcb_get_property_reply(conn, cookie, NULL);
1115 
1116  sequence = startup_sequence_get(con->window, startup_id_reply, true);
1117  if (sequence != NULL)
1118  startup_sequence_delete(sequence);
1119  }
1120 
1121  /* 9. If the container was marked urgent, move the urgency hint. */
1122  if (urgent) {
1123  workspace_update_urgent_flag(source_ws);
1124  con_set_urgency(con, true);
1125  }
1126 
1127  CALL(parent, on_remove_child);
1128 
1129  ipc_send_window_event("move", con);
1131  return true;
1132 }
1133 
1134 /*
1135  * Moves the given container to the given mark.
1136  *
1137  */
1138 bool con_move_to_mark(Con *con, const char *mark) {
1139  Con *target = con_by_mark(mark);
1140  if (target == NULL) {
1141  DLOG("found no container with mark \"%s\"\n", mark);
1142  return false;
1143  }
1144 
1145  /* For floating target containers, we just send the window to the same workspace. */
1146  if (con_is_floating(target)) {
1147  DLOG("target container is floating, moving container to target's workspace.\n");
1148  con_move_to_workspace(con, con_get_workspace(target), true, false, false);
1149  return true;
1150  }
1151 
1152  if (con->type == CT_WORKSPACE) {
1153  DLOG("target container is a workspace, simply moving the container there.\n");
1154  con_move_to_workspace(con, target, true, false, false);
1155  return true;
1156  }
1157 
1158  /* For split containers, we use the currently focused container within it.
1159  * This allows setting marks on, e.g., tabbed containers which will move
1160  * con to a new tab behind the focused tab. */
1161  if (con_is_split(target)) {
1162  DLOG("target is a split container, descending to the currently focused child.\n");
1163  target = TAILQ_FIRST(&(target->focus_head));
1164  }
1165 
1166  if (con == target || con == target->parent) {
1167  DLOG("cannot move the container to or inside itself, aborting.\n");
1168  return false;
1169  }
1170 
1171  return _con_move_to_con(con, target, false, true, false, false);
1172 }
1173 
1174 /*
1175  * Moves the given container to the currently focused container on the given
1176  * workspace.
1177  *
1178  * The fix_coordinates flag will translate the current coordinates (offset from
1179  * the monitor position basically) to appropriate coordinates on the
1180  * destination workspace.
1181  * Not enabling this behaviour comes in handy when this function gets called by
1182  * floating_maybe_reassign_ws, which will only "move" a floating window when it
1183  * *already* changed its coordinates to a different output.
1184  *
1185  * The dont_warp flag disables pointer warping and will be set when this
1186  * function is called while dragging a floating window.
1187  *
1188  * If ignore_focus is set, the container will be moved without modifying focus
1189  * at all.
1190  *
1191  * TODO: is there a better place for this function?
1192  *
1193  */
1194 void con_move_to_workspace(Con *con, Con *workspace, bool fix_coordinates, bool dont_warp, bool ignore_focus) {
1195  assert(workspace->type == CT_WORKSPACE);
1196 
1197  Con *source_ws = con_get_workspace(con);
1198  if (workspace == source_ws) {
1199  DLOG("Not moving, already there\n");
1200  return;
1201  }
1202 
1203  Con *target = con_descend_focused(workspace);
1204  _con_move_to_con(con, target, true, fix_coordinates, dont_warp, ignore_focus);
1205 }
1206 
1207 /*
1208  * Moves the given container to the currently focused container on the
1209  * visible workspace on the given output.
1210  *
1211  */
1213  Con *ws = NULL;
1214  GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
1215  assert(ws != NULL);
1216  DLOG("Moving con %p to output %s\n", con, output->name);
1217  con_move_to_workspace(con, ws, false, false, false);
1218 }
1219 
1220 /*
1221  * Returns the orientation of the given container (for stacked containers,
1222  * vertical orientation is used regardless of the actual orientation of the
1223  * container).
1224  *
1225  */
1227  switch (con->layout) {
1228  case L_SPLITV:
1229  /* stacking containers behave like they are in vertical orientation */
1230  case L_STACKED:
1231  return VERT;
1232 
1233  case L_SPLITH:
1234  /* tabbed containers behave like they are in vertical orientation */
1235  case L_TABBED:
1236  return HORIZ;
1237 
1238  case L_DEFAULT:
1239  DLOG("Someone called con_orientation() on a con with L_DEFAULT, this is a bug in the code.\n");
1240  assert(false);
1241  return HORIZ;
1242 
1243  case L_DOCKAREA:
1244  case L_OUTPUT:
1245  DLOG("con_orientation() called on dockarea/output (%d) container %p\n", con->layout, con);
1246  assert(false);
1247  return HORIZ;
1248 
1249  default:
1250  DLOG("con_orientation() ran into default\n");
1251  assert(false);
1252  }
1253 }
1254 
1255 /*
1256  * Returns the container which will be focused next when the given container
1257  * is not available anymore. Called in tree_close_internal and con_move_to_workspace
1258  * to properly restore focus.
1259  *
1260  */
1262  Con *next;
1263  /* floating containers are attached to a workspace, so we focus either the
1264  * next floating container (if any) or the workspace itself. */
1265  if (con->type == CT_FLOATING_CON) {
1266  DLOG("selecting next for CT_FLOATING_CON\n");
1267  next = TAILQ_NEXT(con, floating_windows);
1268  DLOG("next = %p\n", next);
1269  if (!next) {
1270  next = TAILQ_PREV(con, floating_head, floating_windows);
1271  DLOG("using prev, next = %p\n", next);
1272  }
1273  if (!next) {
1274  Con *ws = con_get_workspace(con);
1275  next = ws;
1276  DLOG("no more floating containers for next = %p, restoring workspace focus\n", next);
1277  while (next != TAILQ_END(&(ws->focus_head)) && !TAILQ_EMPTY(&(next->focus_head))) {
1278  next = TAILQ_FIRST(&(next->focus_head));
1279  if (next == con) {
1280  DLOG("skipping container itself, we want the next client\n");
1281  next = TAILQ_NEXT(next, focused);
1282  }
1283  }
1284  if (next == TAILQ_END(&(ws->focus_head))) {
1285  DLOG("Focus list empty, returning ws\n");
1286  next = ws;
1287  }
1288  } else {
1289  /* Instead of returning the next CT_FLOATING_CON, we descend it to
1290  * get an actual window to focus. */
1291  next = con_descend_focused(next);
1292  }
1293  return next;
1294  }
1295 
1296  /* dock clients cannot be focused, so we focus the workspace instead */
1297  if (con->parent->type == CT_DOCKAREA) {
1298  DLOG("selecting workspace for dock client\n");
1300  }
1301 
1302  /* if 'con' is not the first entry in the focus stack, use the first one as
1303  * it’s currently focused already */
1304  Con *first = TAILQ_FIRST(&(con->parent->focus_head));
1305  if (first != con) {
1306  DLOG("Using first entry %p\n", first);
1307  next = first;
1308  } else {
1309  /* try to focus the next container on the same level as this one or fall
1310  * back to its parent */
1311  if (!(next = TAILQ_NEXT(con, focused)))
1312  next = con->parent;
1313  }
1314 
1315  /* now go down the focus stack as far as
1316  * possible, excluding the current container */
1317  while (!TAILQ_EMPTY(&(next->focus_head)) &&
1318  TAILQ_FIRST(&(next->focus_head)) != con)
1319  next = TAILQ_FIRST(&(next->focus_head));
1320 
1321  return next;
1322 }
1323 
1324 /*
1325  * Get the next/previous container in the specified orientation. This may
1326  * travel up until it finds a container with suitable orientation.
1327  *
1328  */
1329 Con *con_get_next(Con *con, char way, orientation_t orientation) {
1330  DLOG("con_get_next(way=%c, orientation=%d)\n", way, orientation);
1331  /* 1: get the first parent with the same orientation */
1332  Con *cur = con;
1333  while (con_orientation(cur->parent) != orientation) {
1334  DLOG("need to go one level further up\n");
1335  if (cur->parent->type == CT_WORKSPACE) {
1336  LOG("that's a workspace, we can't go further up\n");
1337  return NULL;
1338  }
1339  cur = cur->parent;
1340  }
1341 
1342  /* 2: chose next (or previous) */
1343  Con *next;
1344  if (way == 'n') {
1345  next = TAILQ_NEXT(cur, nodes);
1346  /* if we are at the end of the list, we need to wrap */
1347  if (next == TAILQ_END(&(parent->nodes_head)))
1348  return NULL;
1349  } else {
1350  next = TAILQ_PREV(cur, nodes_head, nodes);
1351  /* if we are at the end of the list, we need to wrap */
1352  if (next == TAILQ_END(&(cur->nodes_head)))
1353  return NULL;
1354  }
1355  DLOG("next = %p\n", next);
1356 
1357  return next;
1358 }
1359 
1360 /*
1361  * Returns the focused con inside this client, descending the tree as far as
1362  * possible. This comes in handy when attaching a con to a workspace at the
1363  * currently focused position, for example.
1364  *
1365  */
1367  Con *next = con;
1368  while (next != focused && !TAILQ_EMPTY(&(next->focus_head)))
1369  next = TAILQ_FIRST(&(next->focus_head));
1370  return next;
1371 }
1372 
1373 /*
1374  * Returns the focused con inside this client, descending the tree as far as
1375  * possible. This comes in handy when attaching a con to a workspace at the
1376  * currently focused position, for example.
1377  *
1378  * Works like con_descend_focused but considers only tiling cons.
1379  *
1380  */
1382  Con *next = con;
1383  Con *before;
1384  Con *child;
1385  if (next == focused)
1386  return next;
1387  do {
1388  before = next;
1389  TAILQ_FOREACH(child, &(next->focus_head), focused) {
1390  if (child->type == CT_FLOATING_CON)
1391  continue;
1392 
1393  next = child;
1394  break;
1395  }
1396  } while (before != next && next != focused);
1397  return next;
1398 }
1399 
1400 /*
1401  * Returns the leftmost, rightmost, etc. container in sub-tree. For example, if
1402  * direction is D_LEFT, then we return the rightmost container and if direction
1403  * is D_RIGHT, we return the leftmost container. This is because if we are
1404  * moving D_LEFT, and thus want the rightmost container.
1405  *
1406  */
1408  Con *most = NULL;
1409  Con *current;
1410  int orientation = con_orientation(con);
1411  DLOG("con_descend_direction(%p, orientation %d, direction %d)\n", con, orientation, direction);
1412  if (direction == D_LEFT || direction == D_RIGHT) {
1413  if (orientation == HORIZ) {
1414  /* If the direction is horizontal, we can use either the first
1415  * (D_RIGHT) or the last con (D_LEFT) */
1416  if (direction == D_RIGHT)
1417  most = TAILQ_FIRST(&(con->nodes_head));
1418  else
1419  most = TAILQ_LAST(&(con->nodes_head), nodes_head);
1420  } else if (orientation == VERT) {
1421  /* Wrong orientation. We use the last focused con. Within that con,
1422  * we recurse to chose the left/right con or at least the last
1423  * focused one. */
1424  TAILQ_FOREACH(current, &(con->focus_head), focused) {
1425  if (current->type != CT_FLOATING_CON) {
1426  most = current;
1427  break;
1428  }
1429  }
1430  } else {
1431  /* If the con has no orientation set, it’s not a split container
1432  * but a container with a client window, so stop recursing */
1433  return con;
1434  }
1435  }
1436 
1437  if (direction == D_UP || direction == D_DOWN) {
1438  if (orientation == VERT) {
1439  /* If the direction is vertical, we can use either the first
1440  * (D_DOWN) or the last con (D_UP) */
1441  if (direction == D_UP)
1442  most = TAILQ_LAST(&(con->nodes_head), nodes_head);
1443  else
1444  most = TAILQ_FIRST(&(con->nodes_head));
1445  } else if (orientation == HORIZ) {
1446  /* Wrong orientation. We use the last focused con. Within that con,
1447  * we recurse to chose the top/bottom con or at least the last
1448  * focused one. */
1449  TAILQ_FOREACH(current, &(con->focus_head), focused) {
1450  if (current->type != CT_FLOATING_CON) {
1451  most = current;
1452  break;
1453  }
1454  }
1455  } else {
1456  /* If the con has no orientation set, it’s not a split container
1457  * but a container with a client window, so stop recursing */
1458  return con;
1459  }
1460  }
1461 
1462  if (!most)
1463  return con;
1464  return con_descend_direction(most, direction);
1465 }
1466 
1467 /*
1468  * Returns a "relative" Rect which contains the amount of pixels that need to
1469  * be added to the original Rect to get the final position (obviously the
1470  * amount of pixels for normal, 1pixel and borderless are different).
1471  *
1472  */
1475  if (!con_is_floating(con)) {
1476  return (Rect){0, 0, 0, 0};
1477  }
1478  }
1479 
1480  adjacent_t borders_to_hide = ADJ_NONE;
1481  int border_width = con->current_border_width;
1482  DLOG("The border width for con is set to: %d\n", con->current_border_width);
1483  Rect result;
1484  if (con->current_border_width < 0) {
1485  if (con_is_floating(con)) {
1486  border_width = config.default_floating_border_width;
1487  } else {
1488  border_width = config.default_border_width;
1489  }
1490  }
1491  DLOG("Effective border width is set to: %d\n", border_width);
1492  /* Shortcut to avoid calling con_adjacent_borders() on dock containers. */
1493  int border_style = con_border_style(con);
1494  if (border_style == BS_NONE)
1495  return (Rect){0, 0, 0, 0};
1496  if (border_style == BS_NORMAL) {
1497  result = (Rect){border_width, 0, -(2 * border_width), -(border_width)};
1498  } else {
1499  result = (Rect){border_width, border_width, -(2 * border_width), -(2 * border_width)};
1500  }
1501 
1502  borders_to_hide = con_adjacent_borders(con) & config.hide_edge_borders;
1503  if (borders_to_hide & ADJ_LEFT_SCREEN_EDGE) {
1504  result.x -= border_width;
1505  result.width += border_width;
1506  }
1507  if (borders_to_hide & ADJ_RIGHT_SCREEN_EDGE) {
1508  result.width += border_width;
1509  }
1510  if (borders_to_hide & ADJ_UPPER_SCREEN_EDGE && (border_style != BS_NORMAL)) {
1511  result.y -= border_width;
1512  result.height += border_width;
1513  }
1514  if (borders_to_hide & ADJ_LOWER_SCREEN_EDGE) {
1515  result.height += border_width;
1516  }
1517  return result;
1518 }
1519 
1520 /*
1521  * Returns adjacent borders of the window. We need this if hide_edge_borders is
1522  * enabled.
1523  */
1525  adjacent_t result = ADJ_NONE;
1526  /* Floating windows are never adjacent to any other window, so
1527  don’t hide their border(s). This prevents bug #998. */
1528  if (con_is_floating(con))
1529  return result;
1530 
1532  if (con->rect.x == workspace->rect.x)
1533  result |= ADJ_LEFT_SCREEN_EDGE;
1534  if (con->rect.x + con->rect.width == workspace->rect.x + workspace->rect.width)
1535  result |= ADJ_RIGHT_SCREEN_EDGE;
1536  if (con->rect.y == workspace->rect.y)
1537  result |= ADJ_UPPER_SCREEN_EDGE;
1538  if (con->rect.y + con->rect.height == workspace->rect.y + workspace->rect.height)
1539  result |= ADJ_LOWER_SCREEN_EDGE;
1540  return result;
1541 }
1542 
1543 /*
1544  * Use this function to get a container’s border style. This is important
1545  * because when inside a stack, the border style is always BS_NORMAL.
1546  * For tabbed mode, the same applies, with one exception: when the container is
1547  * borderless and the only element in the tabbed container, the border is not
1548  * rendered.
1549  *
1550  * For children of a CT_DOCKAREA, the border style is always none.
1551  *
1552  */
1555  if (fs == con) {
1556  DLOG("this one is fullscreen! overriding BS_NONE\n");
1557  return BS_NONE;
1558  }
1559 
1560  if (con->parent->layout == L_STACKED)
1561  return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
1562 
1563  if (con->parent->layout == L_TABBED && con->border_style != BS_NORMAL)
1564  return (con_num_children(con->parent) == 1 ? con->border_style : BS_NORMAL);
1565 
1566  if (con->parent->type == CT_DOCKAREA)
1567  return BS_NONE;
1568 
1569  return con->border_style;
1570 }
1571 
1572 /*
1573  * Sets the given border style on con, correctly keeping the position/size of a
1574  * floating window.
1575  *
1576  */
1577 void con_set_border_style(Con *con, int border_style, int border_width) {
1578  /* Handle the simple case: non-floating containerns */
1579  if (!con_is_floating(con)) {
1580  con->border_style = border_style;
1581  con->current_border_width = border_width;
1582  return;
1583  }
1584 
1585  /* For floating containers, we want to keep the position/size of the
1586  * *window* itself. We first add the border pixels to con->rect to make
1587  * con->rect represent the absolute position of the window (same for
1588  * parent). Then, we change the border style and subtract the new border
1589  * pixels. For the parent, we do the same also for the decoration. */
1590  DLOG("This is a floating container\n");
1591 
1592  Con *parent = con->parent;
1593  Rect bsr = con_border_style_rect(con);
1594  int deco_height = (con->border_style == BS_NORMAL ? render_deco_height() : 0);
1595 
1596  con->rect = rect_add(con->rect, bsr);
1597  parent->rect = rect_add(parent->rect, bsr);
1598  parent->rect.y += deco_height;
1599  parent->rect.height -= deco_height;
1600 
1601  /* Change the border style, get new border/decoration values. */
1602  con->border_style = border_style;
1603  con->current_border_width = border_width;
1604  bsr = con_border_style_rect(con);
1605  deco_height = (con->border_style == BS_NORMAL ? render_deco_height() : 0);
1606 
1607  con->rect = rect_sub(con->rect, bsr);
1608  parent->rect = rect_sub(parent->rect, bsr);
1609  parent->rect.y -= deco_height;
1610  parent->rect.height += deco_height;
1611 }
1612 
1613 /*
1614  * This function changes the layout of a given container. Use it to handle
1615  * special cases like changing a whole workspace to stacked/tabbed (creates a
1616  * new split container before).
1617  *
1618  */
1619 void con_set_layout(Con *con, layout_t layout) {
1620  DLOG("con_set_layout(%p, %d), con->type = %d\n",
1621  con, layout, con->type);
1622 
1623  /* Users can focus workspaces, but not any higher in the hierarchy.
1624  * Focus on the workspace is a special case, since in every other case, the
1625  * user means "change the layout of the parent split container". */
1626  if (con->type != CT_WORKSPACE)
1627  con = con->parent;
1628 
1629  /* We fill in last_split_layout when switching to a different layout
1630  * since there are many places in the code that don’t use
1631  * con_set_layout(). */
1632  if (con->layout == L_SPLITH || con->layout == L_SPLITV)
1633  con->last_split_layout = con->layout;
1634 
1635  /* When the container type is CT_WORKSPACE, the user wants to change the
1636  * whole workspace into stacked/tabbed mode. To do this and still allow
1637  * intuitive operations (like level-up and then opening a new window), we
1638  * need to create a new split container. */
1639  if (con->type == CT_WORKSPACE &&
1640  (layout == L_STACKED || layout == L_TABBED)) {
1641  if (con_num_children(con) == 0) {
1642  DLOG("Setting workspace_layout to %d\n", layout);
1643  con->workspace_layout = layout;
1644  } else {
1645  DLOG("Creating new split container\n");
1646  /* 1: create a new split container */
1647  Con *new = con_new(NULL, NULL);
1648  new->parent = con;
1649 
1650  /* 2: Set the requested layout on the split container and mark it as
1651  * split. */
1652  new->layout = layout;
1653  new->last_split_layout = con->last_split_layout;
1654 
1655  /* Save the container that was focused before we move containers
1656  * around, but only if the container is visible (otherwise focus
1657  * will be restored properly automatically when switching). */
1658  Con *old_focused = TAILQ_FIRST(&(con->focus_head));
1659  if (old_focused == TAILQ_END(&(con->focus_head)))
1660  old_focused = NULL;
1661  if (old_focused != NULL &&
1662  !workspace_is_visible(con_get_workspace(old_focused)))
1663  old_focused = NULL;
1664 
1665  /* 3: move the existing cons of this workspace below the new con */
1666  DLOG("Moving cons\n");
1667  Con *child;
1668  while (!TAILQ_EMPTY(&(con->nodes_head))) {
1669  child = TAILQ_FIRST(&(con->nodes_head));
1670  con_detach(child);
1671  con_attach(child, new, true);
1672  }
1673 
1674  /* 4: attach the new split container to the workspace */
1675  DLOG("Attaching new split to ws\n");
1676  con_attach(new, con, false);
1677 
1678  if (old_focused)
1679  con_focus(old_focused);
1680 
1682  }
1684  return;
1685  }
1686 
1687  if (layout == L_DEFAULT) {
1688  /* Special case: the layout formerly known as "default" (in combination
1689  * with an orientation). Since we switched to splith/splitv layouts,
1690  * using the "default" layout (which "only" should happen when using
1691  * legacy configs) is using the last split layout (either splith or
1692  * splitv) in order to still do the same thing. */
1693  con->layout = con->last_split_layout;
1694  /* In case last_split_layout was not initialized… */
1695  if (con->layout == L_DEFAULT)
1696  con->layout = L_SPLITH;
1697  } else {
1698  con->layout = layout;
1699  }
1701 }
1702 
1703 /*
1704  * This function toggles the layout of a given container. toggle_mode can be
1705  * either 'default' (toggle only between stacked/tabbed/last_split_layout),
1706  * 'split' (toggle only between splitv/splith) or 'all' (toggle between all
1707  * layouts).
1708  *
1709  */
1710 void con_toggle_layout(Con *con, const char *toggle_mode) {
1711  Con *parent = con;
1712  /* Users can focus workspaces, but not any higher in the hierarchy.
1713  * Focus on the workspace is a special case, since in every other case, the
1714  * user means "change the layout of the parent split container". */
1715  if (con->type != CT_WORKSPACE)
1716  parent = con->parent;
1717  DLOG("con_toggle_layout(%p, %s), parent = %p\n", con, toggle_mode, parent);
1718 
1719  if (strcmp(toggle_mode, "split") == 0) {
1720  /* Toggle between splits. When the current layout is not a split
1721  * layout, we just switch back to last_split_layout. Otherwise, we
1722  * change to the opposite split layout. */
1723  if (parent->layout != L_SPLITH && parent->layout != L_SPLITV)
1724  con_set_layout(con, parent->last_split_layout);
1725  else {
1726  if (parent->layout == L_SPLITH)
1727  con_set_layout(con, L_SPLITV);
1728  else
1729  con_set_layout(con, L_SPLITH);
1730  }
1731  } else {
1732  if (parent->layout == L_STACKED)
1733  con_set_layout(con, L_TABBED);
1734  else if (parent->layout == L_TABBED) {
1735  if (strcmp(toggle_mode, "all") == 0)
1736  con_set_layout(con, L_SPLITH);
1737  else
1738  con_set_layout(con, parent->last_split_layout);
1739  } else if (parent->layout == L_SPLITH || parent->layout == L_SPLITV) {
1740  if (strcmp(toggle_mode, "all") == 0) {
1741  /* When toggling through all modes, we toggle between
1742  * splith/splitv, whereas normally we just directly jump to
1743  * stacked. */
1744  if (parent->layout == L_SPLITH)
1745  con_set_layout(con, L_SPLITV);
1746  else
1747  con_set_layout(con, L_STACKED);
1748  } else {
1749  con_set_layout(con, L_STACKED);
1750  }
1751  }
1752  }
1753 }
1754 
1755 /*
1756  * Callback which will be called when removing a child from the given con.
1757  * Kills the container if it is empty and replaces it with the child if there
1758  * is exactly one child.
1759  *
1760  */
1761 static void con_on_remove_child(Con *con) {
1762  DLOG("on_remove_child\n");
1763 
1764  /* Every container 'above' (in the hierarchy) the workspace content should
1765  * not be closed when the last child was removed */
1766  if (con->type == CT_OUTPUT ||
1767  con->type == CT_ROOT ||
1768  con->type == CT_DOCKAREA ||
1769  (con->parent != NULL && con->parent->type == CT_OUTPUT)) {
1770  DLOG("not handling, type = %d, name = %s\n", con->type, con->name);
1771  return;
1772  }
1773 
1774  /* For workspaces, close them only if they're not visible anymore */
1775  if (con->type == CT_WORKSPACE) {
1776  if (TAILQ_EMPTY(&(con->focus_head)) && !workspace_is_visible(con)) {
1777  LOG("Closing old workspace (%p / %s), it is empty\n", con, con->name);
1778  yajl_gen gen = ipc_marshal_workspace_event("empty", con, NULL);
1779  tree_close_internal(con, DONT_KILL_WINDOW, false, false);
1780 
1781  const unsigned char *payload;
1782  ylength length;
1783  y(get_buf, &payload, &length);
1784  ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, (const char *)payload);
1785 
1786  y(free);
1787  }
1788  return;
1789  }
1790 
1792  con->urgent = con_has_urgent_child(con);
1794 
1795  /* TODO: check if this container would swallow any other client and
1796  * don’t close it automatically. */
1797  int children = con_num_children(con);
1798  if (children == 0) {
1799  DLOG("Container empty, closing\n");
1800  tree_close_internal(con, DONT_KILL_WINDOW, false, false);
1801  return;
1802  }
1803 }
1804 
1805 /*
1806  * Determines the minimum size of the given con by looking at its children (for
1807  * split/stacked/tabbed cons). Will be called when resizing floating cons
1808  *
1809  */
1811  DLOG("Determining minimum size for con %p\n", con);
1812 
1813  if (con_is_leaf(con)) {
1814  DLOG("leaf node, returning 75x50\n");
1815  return (Rect){0, 0, 75, 50};
1816  }
1817 
1818  if (con->type == CT_FLOATING_CON) {
1819  DLOG("floating con\n");
1820  Con *child = TAILQ_FIRST(&(con->nodes_head));
1821  return con_minimum_size(child);
1822  }
1823 
1824  if (con->layout == L_STACKED || con->layout == L_TABBED) {
1825  uint32_t max_width = 0, max_height = 0, deco_height = 0;
1826  Con *child;
1827  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1828  Rect min = con_minimum_size(child);
1829  deco_height += child->deco_rect.height;
1830  max_width = max(max_width, min.width);
1831  max_height = max(max_height, min.height);
1832  }
1833  DLOG("stacked/tabbed now, returning %d x %d + deco_rect = %d\n",
1834  max_width, max_height, deco_height);
1835  return (Rect){0, 0, max_width, max_height + deco_height};
1836  }
1837 
1838  /* For horizontal/vertical split containers we sum up the width (h-split)
1839  * or height (v-split) and use the maximum of the height (h-split) or width
1840  * (v-split) as minimum size. */
1841  if (con_is_split(con)) {
1842  uint32_t width = 0, height = 0;
1843  Con *child;
1844  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1845  Rect min = con_minimum_size(child);
1846  if (con->layout == L_SPLITH) {
1847  width += min.width;
1848  height = max(height, min.height);
1849  } else {
1850  height += min.height;
1851  width = max(width, min.width);
1852  }
1853  }
1854  DLOG("split container, returning width = %d x height = %d\n", width, height);
1855  return (Rect){0, 0, width, height};
1856  }
1857 
1858  ELOG("Unhandled case, type = %d, layout = %d, split = %d\n",
1859  con->type, con->layout, con_is_split(con));
1860  assert(false);
1861 }
1862 
1863 /*
1864  * Returns true if changing the focus to con would be allowed considering
1865  * the fullscreen focus constraints. Specifically, if a fullscreen container or
1866  * any of its descendants is focused, this function returns true if and only if
1867  * focusing con would mean that focus would still be visible on screen, i.e.,
1868  * the newly focused container would not be obscured by a fullscreen container.
1869  *
1870  * In the simplest case, if a fullscreen container or any of its descendants is
1871  * fullscreen, this functions returns true if con is the fullscreen container
1872  * itself or any of its descendants, as this means focus wouldn't escape the
1873  * boundaries of the fullscreen container.
1874  *
1875  * In case the fullscreen container is of type CF_OUTPUT, this function returns
1876  * true if con is on a different workspace, as focus wouldn't be obscured by
1877  * the fullscreen container that is constrained to a different workspace.
1878  *
1879  * Note that this same logic can be applied to moving containers. If a
1880  * container can be focused under the fullscreen focus constraints, it can also
1881  * become a parent or sibling to the currently focused container.
1882  *
1883  */
1885  /* No focus, no problem. */
1886  if (!focused)
1887  return true;
1888 
1889  /* Find the first fullscreen ascendent. */
1890  Con *fs = focused;
1891  while (fs && fs->fullscreen_mode == CF_NONE)
1892  fs = fs->parent;
1893 
1894  /* fs must be non-NULL since the workspace con doesn’t have CF_NONE and
1895  * there always has to be a workspace con in the hierarchy. */
1896  assert(fs != NULL);
1897  /* The most common case is we hit the workspace level. In this
1898  * situation, changing focus is also harmless. */
1899  assert(fs->fullscreen_mode != CF_NONE);
1900  if (fs->type == CT_WORKSPACE)
1901  return true;
1902 
1903  /* Allow it if the container itself is the fullscreen container. */
1904  if (con == fs)
1905  return true;
1906 
1907  /* If fullscreen is per-output, the focus being in a different workspace is
1908  * sufficient to guarantee that change won't leave fullscreen in bad shape. */
1909  if (fs->fullscreen_mode == CF_OUTPUT &&
1910  con_get_workspace(con) != con_get_workspace(fs)) {
1911  return true;
1912  }
1913 
1914  /* Allow it only if the container to be focused is contained within the
1915  * current fullscreen container. */
1916  do {
1917  if (con->parent == fs)
1918  return true;
1919  con = con->parent;
1920  } while (con);
1921 
1922  /* Focusing con would hide it behind a fullscreen window, disallow it. */
1923  return false;
1924 }
1925 
1926 /*
1927  *
1928  * Checks if the given container has an urgent child.
1929  *
1930  */
1932  Con *child;
1933 
1934  if (con_is_leaf(con))
1935  return con->urgent;
1936 
1937  /* We are not interested in floating windows since they can only be
1938  * attached to a workspace → nodes_head instead of focus_head */
1939  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
1940  if (con_has_urgent_child(child))
1941  return true;
1942  }
1943 
1944  return false;
1945 }
1946 
1947 /*
1948  * Make all parent containers urgent if con is urgent or clear the urgent flag
1949  * of all parent containers if there are no more urgent children left.
1950  *
1951  */
1953  Con *parent = con->parent;
1954 
1955  /* Urgency hints should not be set on any container higher up in the
1956  * hierarchy than the workspace level. Unfortunately, since the content
1957  * container has type == CT_CON, that’s not easy to verify in the loop
1958  * below, so we need another condition to catch that case: */
1959  if (con->type == CT_WORKSPACE)
1960  return;
1961 
1962  bool new_urgency_value = con->urgent;
1963  while (parent && parent->type != CT_WORKSPACE && parent->type != CT_DOCKAREA) {
1964  if (new_urgency_value) {
1965  parent->urgent = true;
1966  } else {
1967  /* We can only reset the urgency when the parent
1968  * has no other urgent children */
1969  if (!con_has_urgent_child(parent))
1970  parent->urgent = false;
1971  }
1972  parent = parent->parent;
1973  }
1974 }
1975 
1976 /*
1977  * Set urgency flag to the container, all the parent containers and the workspace.
1978  *
1979  */
1980 void con_set_urgency(Con *con, bool urgent) {
1981  if (urgent && focused == con) {
1982  DLOG("Ignoring urgency flag for current client\n");
1983  return;
1984  }
1985 
1986  const bool old_urgent = con->urgent;
1987 
1988  if (con->urgency_timer == NULL) {
1989  con->urgent = urgent;
1990  } else
1991  DLOG("Discarding urgency WM_HINT because timer is running\n");
1992 
1993  //CLIENT_LOG(con);
1994  if (con->window) {
1995  if (con->urgent) {
1996  gettimeofday(&con->window->urgent, NULL);
1997  } else {
1998  con->window->urgent.tv_sec = 0;
1999  con->window->urgent.tv_usec = 0;
2000  }
2001  }
2002 
2004 
2005  Con *ws;
2006  /* Set the urgency flag on the workspace, if a workspace could be found
2007  * (for dock clients, that is not the case). */
2008  if ((ws = con_get_workspace(con)) != NULL)
2010 
2011  if (con->urgent != old_urgent) {
2012  LOG("Urgency flag changed to %d\n", con->urgent);
2013  ipc_send_window_event("urgent", con);
2014  }
2015 }
2016 
2017 /*
2018  * Create a string representing the subtree under con.
2019  *
2020  */
2022  /* this code works as follows:
2023  * 1) create a string with the layout type (D/V/H/T/S) and an opening bracket
2024  * 2) append the tree representation of the children to the string
2025  * 3) add closing bracket
2026  *
2027  * The recursion ends when we hit a leaf, in which case we return the
2028  * class_instance of the contained window.
2029  */
2030 
2031  /* end of recursion */
2032  if (con_is_leaf(con)) {
2033  if (!con->window)
2034  return sstrdup("nowin");
2035 
2036  if (!con->window->class_instance)
2037  return sstrdup("noinstance");
2038 
2039  return sstrdup(con->window->class_instance);
2040  }
2041 
2042  char *buf;
2043  /* 1) add the Layout type to buf */
2044  if (con->layout == L_DEFAULT)
2045  buf = sstrdup("D[");
2046  else if (con->layout == L_SPLITV)
2047  buf = sstrdup("V[");
2048  else if (con->layout == L_SPLITH)
2049  buf = sstrdup("H[");
2050  else if (con->layout == L_TABBED)
2051  buf = sstrdup("T[");
2052  else if (con->layout == L_STACKED)
2053  buf = sstrdup("S[");
2054  else {
2055  ELOG("BUG: Code not updated to account for new layout type\n");
2056  assert(false);
2057  }
2058 
2059  /* 2) append representation of children */
2060  Con *child;
2061  TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
2062  char *child_txt = con_get_tree_representation(child);
2063 
2064  char *tmp_buf;
2065  sasprintf(&tmp_buf, "%s%s%s", buf,
2066  (TAILQ_FIRST(&(con->nodes_head)) == child ? "" : " "), child_txt);
2067  free(buf);
2068  buf = tmp_buf;
2069  free(child_txt);
2070  }
2071 
2072  /* 3) close the brackets */
2073  char *complete_buf;
2074  sasprintf(&complete_buf, "%s]", buf);
2075  free(buf);
2076 
2077  return complete_buf;
2078 }
2079 
2080 /*
2081  * Returns the container's title considering the current title format.
2082  *
2083  */
2085  assert(con->title_format != NULL);
2086 
2087  i3Window *win = con->window;
2088 
2089  /* We need to ensure that we only escape the window title if pango
2090  * is used by the current font. */
2091  const bool pango_markup = font_is_pango();
2092 
2093  char *title;
2094  char *class;
2095  char *instance;
2096  if (win == NULL) {
2098  class = sstrdup("i3-frame");
2099  instance = sstrdup("i3-frame");
2100  } else {
2101  title = pango_escape_markup(sstrdup((win->name == NULL) ? "" : i3string_as_utf8(win->name)));
2102  class = pango_escape_markup(sstrdup((win->class_class == NULL) ? "" : win->class_class));
2103  instance = pango_escape_markup(sstrdup((win->class_instance == NULL) ? "" : win->class_instance));
2104  }
2105 
2106  placeholder_t placeholders[] = {
2107  {.name = "%title", .value = title},
2108  {.name = "%class", .value = class},
2109  {.name = "%instance", .value = instance}};
2110  const size_t num = sizeof(placeholders) / sizeof(placeholder_t);
2111 
2112  char *formatted_str = format_placeholders(con->title_format, &placeholders[0], num);
2113  i3String *formatted = i3string_from_utf8(formatted_str);
2114  i3string_set_markup(formatted, pango_markup);
2115  FREE(formatted_str);
2116 
2117  for (size_t i = 0; i < num; i++) {
2118  FREE(placeholders[i].value);
2119  }
2120 
2121  return formatted;
2122 }
Rect con_border_style_rect(Con *con)
Returns a "relative" Rect which contains the amount of pixels that need to be added to the original R...
Definition: con.c:1473
int default_border_width
void con_fix_percent(Con *con)
Updates the percent attribute of the children of the given container.
Definition: con.c:783
#define FREE(pointer)
Definition: util.h:50
int con_num_visible_children(Con *con)
Returns the number of visible non-floating children of this container.
Definition: con.c:739
bool con_move_to_mark(Con *con, const char *mark)
Moves the given container to the given mark.
Definition: con.c:1138
void con_detach(Con *con)
Detaches the given container from its current parent.
Definition: con.c:181
#define TAILQ_INSERT_BEFORE(listelm, elm, field)
Definition: queue.h:394
#define ELOG(fmt,...)
Definition: libi3.h:89
Rect con_minimum_size(Con *con)
Determines the minimum size of the given con by looking at its children (for split/stacked/tabbed con...
Definition: con.c:1810
bool tree_close_internal(Con *con, kill_window_t kill_window, bool dont_kill_parent, bool force_set_focus)
Closes the given container including all children.
Definition: tree.c:191
char * format_placeholders(char *format, placeholder_t *placeholders, int num)
Replaces occurrences of the defined placeholders in the format string.
void xcb_remove_property_atom(xcb_connection_t *conn, xcb_window_t window, xcb_atom_t property, xcb_atom_t atom)
Remove an atom from a list of atoms the given property defines without removing any other potentially...
Definition: xcb.c:313
void ipc_send_window_event(const char *property, Con *con)
For the window events we send, along the usual "change" field, also the window container, in "container".
Definition: ipc.c:1277
Rect rect_sub(Rect a, Rect b)
Definition: util.c:49
void workspace_show(Con *workspace)
Switches to the given workspace.
Definition: workspace.c:489
uint32_t y
Definition: data.h:150
#define TAILQ_LAST(head, headname)
Definition: queue.h:339
int num
the workspace number, if this Con is of type CT_WORKSPACE and the workspace is not a named workspace ...
Definition: data.h:588
uint32_t height
Definition: data.h:152
layout_t workspace_layout
Definition: data.h:662
#define TAILQ_ENTRY(type)
Definition: queue.h:327
Stores internal information about a startup sequence, like the workspace it was initiated on...
Definition: data.h:218
Definition: data.h:56
void ipc_send_event(const char *event, uint32_t message_type, const char *payload)
Sends the specified event to all IPC clients which are currently connected and subscribed to this kin...
Definition: ipc.c:45
Definition: data.h:73
uint32_t x
Definition: data.h:149
bool con_has_mark(Con *con, const char *mark)
Returns true if and only if the given containers holds the mark.
Definition: con.c:570
#define TAILQ_END(head)
Definition: queue.h:337
struct Con * croot
Definition: tree.c:12
#define TAILQ_NEXT(elm, field)
Definition: queue.h:338
void con_move_to_output(Con *con, Output *output)
Moves the given container to the currently focused container on the visible workspace on the given ou...
Definition: con.c:1212
int max(int a, int b)
Definition: util.c:31
char * name
Definition: data.h:549
uint16_t depth
Depth of the window.
Definition: data.h:430
#define TAILQ_PREV(elm, headname, field)
Definition: queue.h:342
Con * workspace_encapsulate(Con *ws)
Creates a new container and re-parents all of children from the given workspace into it...
Definition: workspace.c:880
int min(int a, int b)
Definition: util.c:27
struct Con * parent
Definition: data.h:590
void x_set_warp_to(Rect *rect)
Set warp_to coordinates.
Definition: x.c:1243
Con * con_new_skeleton(Con *parent, i3Window *window)
Create a new container (and attach it to the given parent, if not NULL).
Definition: con.c:37
layout_t last_split_layout
Definition: data.h:662
fullscreen_mode_t
Fullscreen modes.
Definition: data.h:544
#define TAILQ_HEAD(name, type)
Definition: queue.h:318
struct Rect Rect
Definition: data.h:44
int current_border_width
Definition: data.h:623
int con_num_windows(Con *con)
Count the number of windows (i.e., leaf containers).
Definition: con.c:761
bool workspace_is_visible(Con *ws)
Returns true if the workspace is currently visible.
Definition: workspace.c:254
fullscreen_mode_t fullscreen_mode
Definition: data.h:641
void con_focus(Con *con)
Sets input focus to the given container.
Definition: con.c:197
An Output is a physical output on your graphics driver.
Definition: data.h:344
bool match_matches_window(Match *match, i3Window *window)
Check if a match data structure matches the given window.
Definition: match.c:87
bool con_is_leaf(Con *con)
Returns true when this node is a leaf node (has no children)
Definition: con.c:256
Definition: data.h:60
layout_t
Container layouts.
Definition: data.h:91
void xcb_add_property_atom(xcb_connection_t *conn, xcb_window_t window, xcb_atom_t property, xcb_atom_t atom)
Add an atom to a list of atoms the given property defines.
Definition: xcb.c:303
char * workspace
workspace on which this startup was initiated
Definition: data.h:222
Con * con
Definition: con.c:411
Con * output_get_content(Con *output)
Returns the output container below the given output container.
Definition: output.c:16
#define LOG(fmt,...)
Definition: libi3.h:84
struct Rect rect
Definition: data.h:594
void con_unmark(Con *con, const char *name)
Definition: con.c:631
void startup_sequence_delete(struct Startup_Sequence *sequence)
Deletes a startup sequence, ignoring whether its timeout has elapsed.
Definition: startup.c:103
int render_deco_height(void)
Definition: render.c:25
Definition: data.h:61
i3String * i3string_from_utf8(const char *from_utf8)
Build an i3String from an UTF-8 encoded string.
void x_con_init(Con *con)
Initializes the X11 part for the given container.
Definition: x.c:99
Con * con_inside_floating(Con *con)
Checks if the given container is either floating or inside some floating container.
Definition: con.c:499
Con * con_by_window_id(xcb_window_t window)
Returns the container with the given client window ID or NULL if no such container exists...
Definition: con.c:530
Definition: data.h:548
Stores a rectangle, for example the size of a window, the child window etc.
Definition: data.h:148
Definition: con.c:410
void con_mark(Con *con, const char *mark, mark_mode_t mode)
Assigns a mark to the container.
Definition: con.c:601
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:376
static void con_on_remove_child(Con *con)
Definition: con.c:1761
#define CALL(obj, member,...)
Definition: util.h:58
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
uint32_t width
Definition: data.h:129
void con_mark_toggle(Con *con, const char *mark, mark_mode_t mode)
Toggles the mark on a container.
Definition: con.c:586
#define TAILQ_INSERT_AFTER(head, listelm, elm, field)
Definition: queue.h:384
const char * i3string_as_utf8(i3String *str)
Returns the UTF-8 encoded version of the i3String.
void con_toggle_fullscreen(Con *con, int fullscreen_mode)
Toggles fullscreen mode for the given container.
Definition: con.c:828
Definition: data.h:57
xcb_connection_t * conn
XCB connection and root screen.
Definition: main.c:42
#define TAILQ_HEAD_INITIALIZER(head)
Definition: queue.h:324
hide_edge_borders_mode_t hide_edge_borders
Remove borders if they are adjacent to the screen edge.
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:347
void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect)
Fixes the coordinates of the floating window whenever the window gets reassigned to a different outpu...
Definition: floating.c:872
Con * con_get_workspace(Con *con)
Gets the workspace container this node is on.
Definition: con.c:372
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
Definition: con.c:358
int con_num_children(Con *con)
Returns the number of children of this container.
Definition: con.c:724
bool con_is_floating(Con *con)
Returns true if the node is floating.
Definition: con.c:474
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
Con * con_next_focused(Con *con)
Returns the container which will be focused next when the given container is not available anymore...
Definition: con.c:1261
kill_window_t
parameter to specify whether tree_close_internal() and x_window_kill() should kill only this specific...
Definition: data.h:68
adjacent_t con_adjacent_borders(Con *con)
Returns adjacent borders of the window.
Definition: con.c:1524
void workspace_update_urgent_flag(Con *ws)
Goes through all clients on the given workspace and updates the workspace’s urgent flag accordingly...
Definition: workspace.c:791
#define TAILQ_FIRST(head)
Definition: queue.h:336
orientation_t con_orientation(Con *con)
Returns the orientation of the given container (for stacked containers, vertical orientation is used ...
Definition: con.c:1226
bool con_is_docked(Con *con)
Returns true if the container is a docked container.
Definition: con.c:484
orientation_t
Definition: data.h:59
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
static bool _con_move_to_con(Con *con, Con *target, bool behind_focused, bool fix_coordinates, bool dont_warp, bool ignore_focus)
Definition: con.c:944
static void _con_attach(Con *con, Con *parent, Con *previous, bool ignore_focus)
Definition: con.c:74
Con * con_by_frame_id(xcb_window_t frame)
Returns the container with the given frame ID or NULL if no such container exists.
Definition: con.c:543
A "match" is a data structure which acts like a mask or expression to match certain windows or not...
Definition: data.h:453
border_style_t border_style
Definition: data.h:663
void con_move_to_workspace(Con *con, Con *workspace, bool fix_coordinates, bool dont_warp, bool ignore_focus)
Moves the given container to the currently focused container on the given workspace.
Definition: con.c:1194
char * name
Definition: data.h:604
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:402
bool con_has_managed_window(Con *con)
Returns true when this con is a leaf node with a managed X11 window (e.g., excluding dock containers)...
Definition: con.c:264
bool con_accepts_window(Con *con)
Returns true if this node accepts a window (if the node swallows windows, it might already have swall...
Definition: con.c:339
void con_set_urgency(Con *con, bool urgent)
Set urgency flag to the container, all the parent containers and the workspace.
Definition: con.c:1980
bool con_is_split(Con *con)
Returns true if a container should be considered split.
Definition: con.c:280
Definition: data.h:62
Definition: data.h:98
bool con_is_internal(Con *con)
Returns true if the container is internal, such as __i3_scratch.
Definition: con.c:466
struct Window * window
Definition: data.h:625
layout_t layout
Definition: data.h:662
bool con_fullscreen_permits_focusing(Con *con)
Returns true if changing the focus to con would be allowed considering the fullscreen focus constrain...
Definition: con.c:1884
#define TAILQ_INIT(head)
Definition: queue.h:360
bool font_is_pango(void)
Returns true if and only if the current font is a pango font.
Con * con
Pointer to the Con which represents this output.
Definition: data.h:362
border_style_t default_border
The default border style for new windows.
xcb_window_t id
Definition: data.h:376
Rect rect_add(Rect a, Rect b)
Definition: util.c:42
bool con_is_sticky(Con *con)
Returns whether the container or any of its children is sticky.
Definition: con.c:321
struct Startup_Sequence * startup_sequence_get(i3Window *cwindow, xcb_get_property_reply_t *startup_id_reply, bool ignore_mapped_leader)
Gets the stored startup sequence for the _NET_STARTUP_ID of a given window.
Definition: startup.c:279
Definition: data.h:97
Definition: data.h:63
size_t ylength
Definition: yajl_utils.h:24
char * class_instance
Definition: data.h:389
Con * con_for_window(Con *con, i3Window *window, Match **store_match)
Returns the first container below &#39;con&#39; which wants to swallow this window TODO: priority.
Definition: con.c:685
void ewmh_update_wm_desktop(void)
Updates _NET_WM_DESKTOP for all windows.
Definition: ewmh.c:182
A &#39;Window&#39; is a type which contains an xcb_window_t and all the related information (hints like _NET_...
Definition: data.h:375
void tree_flatten(Con *con)
tree_flatten() removes pairs of redundant split containers, e.g.
Definition: tree.c:689
yajl_gen ipc_marshal_workspace_event(const char *change, Con *current, Con *old)
Generates a json workspace event.
Definition: ipc.c:1228
void con_set_layout(Con *con, layout_t layout)
This function changes the layout of a given container.
Definition: con.c:1619
struct Rect deco_rect
Definition: data.h:600
struct all_cons_head all_cons
Definition: tree.c:15
bool con_has_children(Con *con)
Returns true if this node has regular or floating children.
Definition: con.c:272
char * con_get_tree_representation(Con *con)
Create a string representing the subtree under con.
Definition: con.c:2021
void con_disable_fullscreen(Con *con)
Disables fullscreen mode for the given container, if necessary.
Definition: con.c:928
char * pango_escape_markup(char *input)
Escapes the given string if a pango font is currently used.
Definition: util.c:324
xcb_drawable_t id
Definition: libi3.h:536
Con * con_descend_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1366
int default_floating_border_width
uint32_t height
Definition: data.h:130
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
Con * con_by_mark(const char *mark)
Returns the container with the given mark or NULL if no such container exists.
Definition: con.c:556
void con_toggle_layout(Con *con, const char *toggle_mode)
This function toggles the layout of a given container.
Definition: con.c:1710
Helper structure for usage in format_placeholders().
Definition: libi3.h:511
Con * con_get_next(Con *con, char way, orientation_t orientation)
Get the next/previous container in the specified orientation.
Definition: con.c:1329
Definition: data.h:92
int con_border_style(Con *con)
Use this function to get a container’s border style.
Definition: con.c:1553
static void con_set_fullscreen_mode(Con *con, fullscreen_mode_t fullscreen_mode)
Definition: con.c:848
bool urgent
Definition: data.h:563
Con * con_new(Con *parent, i3Window *window)
Definition: con.c:68
Definition: data.h:96
Con * con_descend_direction(Con *con, direction_t direction)
Definition: con.c:1407
A &#39;Con&#39; represents everything from the X11 root window down to a single X11 window.
Definition: data.h:558
void con_enable_fullscreen(Con *con, fullscreen_mode_t fullscreen_mode)
Enables fullscreen mode for the given container, if necessary.
Definition: con.c:882
struct timeval urgent
When this window was marked urgent.
Definition: data.h:424
#define GREP_FIRST(dest, head, condition)
Definition: util.h:41
enum Con::@21 floating
floating? (= not in tiling layout) This cannot be simply a bool because we want to keep track of whet...
void con_set_border_style(Con *con, int border_style, int border_width)
Sets the given border style on con, correctly keeping the position/size of a floating window...
Definition: con.c:1577
uint32_t width
Definition: data.h:151
#define DLOG(fmt,...)
Definition: libi3.h:94
void con_close(Con *con, kill_window_t kill_window)
Closes the given container.
Definition: con.c:226
bool con_has_urgent_child(Con *con)
Checks if the given container has an urgent child.
Definition: con.c:1931
struct ev_timer * urgency_timer
Definition: data.h:628
Con * con_get_fullscreen_con(Con *con, fullscreen_mode_t fullscreen_mode)
Returns the first fullscreen node below this node.
Definition: con.c:420
uint8_t root_depth
Definition: main.c:60
Definition: data.h:94
Con * con_parent_with_orientation(Con *con, orientation_t orientation)
Searches parenst of the given &#39;con&#39; until it reaches one with the specified &#39;orientation&#39;.
Definition: con.c:384
void i3string_set_markup(i3String *str, bool pango_markup)
Set whether the i3String should use Pango markup.
direction_t
Definition: data.h:55
Definition: data.h:544
char * name
Name of the output.
Definition: data.h:359
Definition: data.h:55
void con_attach(Con *con, Con *parent, bool ignore_focus)
Attaches the given container to the given parent.
Definition: con.c:173
Con * con_descend_tiling_focused(Con *con)
Returns the focused con inside this client, descending the tree as far as possible.
Definition: con.c:1381
Definition: data.h:93
struct _i3String i3String
Opaque data structure for storing strings.
Definition: libi3.h:38
#define TAILQ_EMPTY(head)
Definition: queue.h:344
Config config
Definition: config.c:16
i3String * name
The name of the window.
Definition: data.h:392
struct deco_render_params * deco_render_params
Cache for the decoration rendering.
Definition: data.h:631
uint32_t y
Definition: data.h:128
bool sticky
Definition: data.h:646
surface_t frame
Definition: data.h:573
void con_force_split_parents_redraw(Con *con)
force parent split containers to be redrawn
Definition: con.c:22
double percent
Definition: data.h:619
char * title_format
The format with which the window&#39;s name should be displayed.
Definition: data.h:607
enum Con::@20 type
Definition: data.h:58
#define TAILQ_INSERT_HEAD(head, elm, field)
Definition: queue.h:366
mark_mode_t
Definition: data.h:85
i3String * con_parse_title_format(Con *con)
Returns the window title considering the current title format.
Definition: con.c:2084
char * name
Definition: libi3.h:513
void con_update_parents_urgency(Con *con)
Make all parent containers urgent if con is urgent or clear the urgent flag of all parent containers ...
Definition: con.c:1952
bool mark_changed
Definition: data.h:617
Con * workspace_attach_to(Con *ws)
Called when a new con (with a window, not an empty or split con) should be attached to the workspace ...
Definition: workspace.c:848
bool con_inside_focused(Con *con)
Checks if the given container is inside a focused container.
Definition: con.c:517
Con * focused
Definition: tree.c:13
bool con_is_hidden(Con *con)
This will only return true for containers which have some parent with a tabbed / stacked parent of wh...
Definition: con.c:299
adjacent_t
describes if the window is adjacent to the output (physical screen) edges.
Definition: data.h:73