]> git.sur5r.net Git - i3/i3/blob - include/table.h
Fix unaligned memory access on sparc (Thanks David Coppa)
[i3/i3] / include / table.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <stdbool.h>
12
13 #include <xcb/xcb.h>
14
15 #include "data.h"
16
17 #ifndef _TABLE_H
18 #define _TABLE_H
19
20 #define CUR_TABLE (c_ws->table)
21 #define CUR_CELL (CUR_TABLE[current_col][current_row])
22
23 extern Workspace *c_ws;
24 extern TAILQ_HEAD(workspaces_head, Workspace) *workspaces;
25 //extern int num_workspaces;
26 extern int current_col;
27 extern int current_row;
28
29 /** Initialize table */
30 void init_table();
31
32 /** Add one row to the table */
33 void expand_table_rows(Workspace *workspace);
34
35 /** Adds one row at the head of the table */
36 void expand_table_rows_at_head(Workspace *workspace);
37
38 /** Add one column to the table */
39 void expand_table_cols(Workspace *workspace);
40
41 /**
42  * Inserts one column at the table’s head
43  *
44  */
45 void expand_table_cols_at_head(Workspace *workspace);
46
47 /**
48  * Performs simple bounds checking for the given column/row
49  *
50  */
51 bool cell_exists(Workspace *ws, int col, int row);
52
53 /**
54  * Shrinks the table by "compacting" it, that is, removing completely empty
55  * rows/columns
56  *
57  */
58 void cleanup_table(xcb_connection_t *conn, Workspace *workspace);
59
60 /**
61  * Fixes col/rowspan (makes sure there are no overlapping windows)
62  *
63  */
64 void fix_colrowspan(xcb_connection_t *conn, Workspace *workspace);
65
66 /**
67  * Prints the table’s contents in human-readable form for debugging
68  *
69  */
70 void dump_table(xcb_connection_t *conn, Workspace *workspace);
71
72 #endif