]> git.sur5r.net Git - i3/i3/blob - include/i3/ipc.h
Remove some dead code (to be re-implemented), rename nc.c to main.c
[i3/i3] / include / i3 / ipc.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * This public header defines the different constants and message types to use
11  * for the IPC interface to i3 (see docs/ipc for more information).
12  *
13  */
14
15 #ifndef _I3_IPC_H
16 #define _I3_IPC_H
17
18 /*
19  * Messages from clients to i3
20  *
21  */
22
23 /** Never change this, only on major IPC breakage (don’t do that) */
24 #define I3_IPC_MAGIC                    "i3-ipc"
25
26 /** The payload of the message will be interpreted as a command */
27 #define I3_IPC_MESSAGE_TYPE_COMMAND             0
28
29 /** Requests the current workspaces from i3 */
30 #define I3_IPC_MESSAGE_TYPE_GET_TREE            1
31
32
33 /*
34  * Messages from i3 to clients
35  *
36  */
37
38 /** Command reply type */
39 #define I3_IPC_REPLY_TYPE_COMMAND               0
40
41 /** Workspaces reply type */
42 #define I3_IPC_REPLY_TYPE_TREE                  1
43
44 /*
45  * Events from i3 to clients. Events have the first bit set high.
46  *
47  */
48 #define I3_IPC_EVENT_MASK                       (1 << 31)
49
50 /* The workspace event will be triggered upon changes in the workspace list */
51 #define I3_IPC_EVENT_WORKSPACE                  (I3_IPC_EVENT_MASK | 0)
52
53 /* The output event will be triggered upon changes in the output list */
54 #define I3_IPC_EVENT_OUTPUT                     (I3_IPC_EVENT_MASK | 1)
55
56 #endif