]> git.sur5r.net Git - i3/i3/blob - include/i3/ipc.h
ipc: implement events, cleanup the code a bit
[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_WORKSPACES      1
31
32 /** Subscribe to the specified events */
33 #define I3_IPC_MESSAGE_TYPE_SUBSCRIBE           2
34
35 /*
36  * Messages from i3 to clients
37  *
38  */
39
40 /** Command reply type */
41 #define I3_IPC_REPLY_TYPE_COMMAND               0
42
43 /** Workspaces reply type */
44 #define I3_IPC_REPLY_TYPE_WORKSPACES            1
45
46 /** Subscription reply type */
47 #define I3_IPC_REPLY_TYPE_SUBSCRIBE             2
48
49 /*
50  * Events from i3 to clients
51  *
52  */
53
54 #define I3_IPC_EVENT_WORKSPACE                  0
55
56 #endif