]> git.sur5r.net Git - i3/i3/blob - include/i3/ipc.h
884a0cf635c75985ef1bebd1a689be9039d48556
[i3/i3] / include / i3 / ipc.h
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  * This public header defines the different constants and message types to use
8  * for the IPC interface to i3 (see docs/ipc for more information).
9  *
10  */
11 #pragma once
12
13 #include <stdint.h>
14
15 typedef struct i3_ipc_header {
16     /* 6 = strlen(I3_IPC_MAGIC) */
17     char magic[6];
18     uint32_t size;
19     uint32_t type;
20 } __attribute__((packed)) i3_ipc_header_t;
21
22 /*
23  * Messages from clients to i3
24  *
25  */
26
27 /** Never change this, only on major IPC breakage (don’t do that) */
28 #define I3_IPC_MAGIC "i3-ipc"
29
30 /** Deprecated: use I3_IPC_MESSAGE_TYPE_RUN_COMMAND */
31 #define I3_IPC_MESSAGE_TYPE_COMMAND 0
32
33 /** The payload of the message will be interpreted as a command */
34 #define I3_IPC_MESSAGE_TYPE_RUN_COMMAND 0
35
36 /** Requests the current workspaces from i3 */
37 #define I3_IPC_MESSAGE_TYPE_GET_WORKSPACES 1
38
39 /** Subscribe to the specified events */
40 #define I3_IPC_MESSAGE_TYPE_SUBSCRIBE 2
41
42 /** Requests the current outputs from i3 */
43 #define I3_IPC_MESSAGE_TYPE_GET_OUTPUTS 3
44
45 /** Requests the tree layout from i3 */
46 #define I3_IPC_MESSAGE_TYPE_GET_TREE 4
47
48 /** Request the current defined marks from i3 */
49 #define I3_IPC_MESSAGE_TYPE_GET_MARKS 5
50
51 /** Request the configuration for a specific 'bar' */
52 #define I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG 6
53
54 /** Request the i3 version */
55 #define I3_IPC_MESSAGE_TYPE_GET_VERSION 7
56
57 /** Request a list of configured binding modes. */
58 #define I3_IPC_MESSAGE_TYPE_GET_BINDING_MODES 8
59
60 /** Request the raw last loaded i3 config. */
61 #define I3_IPC_MESSAGE_TYPE_GET_CONFIG 9
62
63 /** Send a tick event to all subscribers. */
64 #define I3_IPC_MESSAGE_TYPE_SEND_TICK 10
65
66 /** Trigger an i3 sync protocol message via IPC. */
67 #define I3_IPC_MESSAGE_TYPE_SYNC 11
68
69 /*
70  * Messages from i3 to clients
71  *
72  */
73 #define I3_IPC_REPLY_TYPE_COMMAND 0
74 #define I3_IPC_REPLY_TYPE_WORKSPACES 1
75 #define I3_IPC_REPLY_TYPE_SUBSCRIBE 2
76 #define I3_IPC_REPLY_TYPE_OUTPUTS 3
77 #define I3_IPC_REPLY_TYPE_TREE 4
78 #define I3_IPC_REPLY_TYPE_MARKS 5
79 #define I3_IPC_REPLY_TYPE_BAR_CONFIG 6
80 #define I3_IPC_REPLY_TYPE_VERSION 7
81 #define I3_IPC_REPLY_TYPE_BINDING_MODES 8
82 #define I3_IPC_REPLY_TYPE_CONFIG 9
83 #define I3_IPC_REPLY_TYPE_TICK 10
84 #define I3_IPC_REPLY_TYPE_SYNC 11
85
86 /*
87  * Events from i3 to clients. Events have the first bit set high.
88  *
89  */
90 #define I3_IPC_EVENT_MASK (1UL << 31)
91
92 /* The workspace event will be triggered upon changes in the workspace list */
93 #define I3_IPC_EVENT_WORKSPACE (I3_IPC_EVENT_MASK | 0)
94
95 /* The output event will be triggered upon changes in the output list */
96 #define I3_IPC_EVENT_OUTPUT (I3_IPC_EVENT_MASK | 1)
97
98 /* The output event will be triggered upon mode changes */
99 #define I3_IPC_EVENT_MODE (I3_IPC_EVENT_MASK | 2)
100
101 /* The window event will be triggered upon window changes */
102 #define I3_IPC_EVENT_WINDOW (I3_IPC_EVENT_MASK | 3)
103
104 /** Bar config update will be triggered to update the bar config */
105 #define I3_IPC_EVENT_BARCONFIG_UPDATE (I3_IPC_EVENT_MASK | 4)
106
107 /** The binding event will be triggered when bindings run */
108 #define I3_IPC_EVENT_BINDING (I3_IPC_EVENT_MASK | 5)
109
110 /** The shutdown event will be triggered when the ipc shuts down */
111 #define I3_IPC_EVENT_SHUTDOWN (I3_IPC_EVENT_MASK | 6)
112
113 /** The tick event will be sent upon a tick IPC message */
114 #define I3_IPC_EVENT_TICK (I3_IPC_EVENT_MASK | 7)