]> git.sur5r.net Git - i3/i3/blob - include/workspace.h
Merge branch 'master' into next
[i3/i3] / include / workspace.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * workspace.c: Modifying workspaces, accessing them, moving containers to
8  *              workspaces.
9  *
10  */
11 #ifndef _WORKSPACE_H
12 #define _WORKSPACE_H
13
14 #include "data.h"
15 #include "tree.h"
16 #include "randr.h"
17
18 /**
19  * Returns a pointer to the workspace with the given number (starting at 0),
20  * creating the workspace if necessary (by allocating the necessary amount of
21  * memory and initializing the data structures correctly).
22  *
23  * If created is not NULL, *created will be set to whether or not the
24  * workspace has just been created.
25  *
26  */
27 Con *workspace_get(const char *num, bool *created);
28
29 /*
30  * Returns a pointer to a new workspace in the given output. The workspace
31  * is created attached to the tree hierarchy through the given content
32  * container.
33  *
34  */
35 Con *create_workspace_on_output(Output *output, Con *content);
36
37 #if 0
38 /**
39  * Sets the name (or just its number) for the given workspace. This has to
40  * be called for every workspace as the rendering function
41  * (render_internal_bar) relies on workspace->name and workspace->name_len
42  * being ready-to-use.
43  *
44  */
45 void workspace_set_name(Workspace *ws, const char *name);
46 #endif
47
48 /**
49  * Returns true if the workspace is currently visible. Especially important for
50  * multi-monitor environments, as they can have multiple currenlty active
51  * workspaces.
52  *
53  */
54 bool workspace_is_visible(Con *ws);
55
56 /**
57  * Switches to the given workspace
58  *
59  */
60 void workspace_show(Con *ws);
61
62 /**
63  * Looks up the workspace by name and switches to it.
64  *
65  */
66 void workspace_show_by_name(const char *num);
67
68 /**
69  * Returns the next workspace.
70  *
71  */
72 Con* workspace_next(void);
73
74 /**
75  * Returns the previous workspace.
76  *
77  */
78 Con* workspace_prev(void);
79
80 /**
81  * Returns the next workspace on the same output
82  *
83  */
84 Con* workspace_next_on_output(void);
85
86 /**
87  * Returns the previous workspace on the same output
88  *
89  */
90 Con* workspace_prev_on_output(void);
91
92 /**
93  * Focuses the previously focused workspace.
94  *
95  */
96 void workspace_back_and_forth(void);
97
98
99 #if 0
100 /**
101  * Assigns the given workspace to the given screen by correctly updating its
102  * state and reconfiguring all the clients on this workspace.
103  *
104  * This is called when initializing a screen and when re-assigning it to a
105  * different screen which just got available (if you configured it to be on
106  * screen 1 and you just plugged in screen 1).
107  *
108  */
109 void workspace_assign_to(Workspace *ws, Output *screen, bool hide_it);
110
111 /**
112  * Initializes the given workspace if it is not already initialized. The given
113  * screen is to be understood as a fallback, if the workspace itself either
114  * was not assigned to a particular screen or cannot be placed there because
115  * the screen is not attached at the moment.
116  *
117  */
118 void workspace_initialize(Workspace *ws, Output *screen, bool recheck);
119
120 /**
121  * Gets the first unused workspace for the given screen, taking into account
122  * the preferred_screen setting of every workspace (workspace assignments).
123  *
124  */
125 Workspace *get_first_workspace_for_output(Output *screen);
126
127 /**
128  * Unmaps all clients (and stack windows) of the given workspace.
129  *
130  * This needs to be called separately when temporarily rendering a workspace
131  * which is not the active workspace to force reconfiguration of all clients,
132  * like in src/xinerama.c when re-assigning a workspace to another screen.
133  *
134  */
135 void workspace_unmap_clients(xcb_connection_t *conn, Workspace *u_ws);
136
137 /**
138  * Maps all clients (and stack windows) of the given workspace.
139  *
140  */
141 void workspace_map_clients(xcb_connection_t *conn, Workspace *ws);
142 #endif
143
144 /**
145  * Goes through all clients on the given workspace and updates the workspace’s
146  * urgent flag accordingly.
147  *
148  */
149 void workspace_update_urgent_flag(Con *ws);
150
151 /**
152  * 'Forces' workspace orientation by moving all cons into a new split-con with
153  * the same orientation as the workspace and then changing the workspace
154  * orientation.
155  *
156  */
157 void ws_force_orientation(Con *ws, orientation_t orientation);
158
159 /**
160  * Called when a new con (with a window, not an empty or split con) should be
161  * attached to the workspace (for example when managing a new window or when
162  * moving an existing window to the workspace level).
163  *
164  * Depending on the workspace_layout setting, this function either returns the
165  * workspace itself (default layout) or creates a new stacked/tabbed con and
166  * returns that.
167  *
168  */
169 Con *workspace_attach_to(Con *ws);
170
171 #endif