]> Dogcows Code - chaz/openbox/blob - openbox/prop.h
75431b95f8f9612e340a1f3d56c9d0cf1f9370c0
[chaz/openbox] / openbox / prop.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 prop.h for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #ifndef __atoms_h
21 #define __atoms_h
22
23 #include <X11/Xlib.h>
24 #include <glib.h>
25 #ifdef HAVE_STRING_H
26 # include <string.h>
27 #endif
28
29 /*! The atoms on the X server which this class will cache */
30 typedef struct Atoms {
31 /* types */
32 Atom cardinal; /*!< The atom which represents the Cardinal data type */
33 Atom window; /*!< The atom which represents window ids */
34 Atom pixmap; /*!< The atom which represents pixmap ids */
35 Atom atom; /*!< The atom which represents atom values */
36 Atom string; /*!< The atom which represents ascii strings */
37 Atom utf8; /*!< The atom which represents utf8-encoded strings */
38
39 /* selection stuff */
40 Atom manager;
41
42 /* window hints */
43 Atom wm_colormap_windows;
44 Atom wm_protocols;
45 Atom wm_state;
46 Atom wm_delete_window;
47 Atom wm_take_focus;
48 Atom wm_change_state;
49 Atom wm_name;
50 Atom wm_icon_name;
51 Atom wm_class;
52 Atom wm_window_role;
53 Atom wm_client_machine;
54 Atom motif_wm_hints;
55
56 /* SM atoms */
57 Atom sm_client_id;
58
59 /* NETWM atoms */
60
61 /* Atoms that are used inside messages - these don't go in net_supported */
62
63 Atom net_wm_moveresize_size_topleft;
64 Atom net_wm_moveresize_size_top;
65 Atom net_wm_moveresize_size_topright;
66 Atom net_wm_moveresize_size_right;
67 Atom net_wm_moveresize_size_bottomright;
68 Atom net_wm_moveresize_size_bottom;
69 Atom net_wm_moveresize_size_bottomleft;
70 Atom net_wm_moveresize_size_left;
71 Atom net_wm_moveresize_move;
72 Atom net_wm_moveresize_size_keyboard;
73 Atom net_wm_moveresize_move_keyboard;
74 Atom net_wm_moveresize_cancel;
75
76 Atom net_wm_state_add;
77 Atom net_wm_state_remove;
78 Atom net_wm_state_toggle;
79
80 Atom net_wm_orientation_horz;
81 Atom net_wm_orientation_vert;
82 Atom net_wm_topleft;
83 Atom net_wm_topright;
84 Atom net_wm_bottomright;
85 Atom net_wm_bottomleft;
86
87 /* Everything below here must go in net_supported on the root window */
88
89 /* root window properties */
90 Atom net_supported;
91 Atom net_client_list;
92 Atom net_client_list_stacking;
93 Atom net_number_of_desktops;
94 Atom net_desktop_geometry;
95 Atom net_desktop_viewport;
96 Atom net_current_desktop;
97 Atom net_desktop_names;
98 Atom net_active_window;
99 /* Atom net_restack_window;*/
100 Atom net_workarea;
101 Atom net_supporting_wm_check;
102 Atom net_desktop_layout;
103 Atom net_showing_desktop;
104
105 /* root window messages */
106 Atom net_close_window;
107 Atom net_wm_moveresize;
108 Atom net_moveresize_window;
109
110 /* helpful hints to apps that aren't used for anything */
111 Atom net_wm_full_placement;
112
113 /* startup-notification extension */
114 Atom net_startup_id;
115
116 /* application window properties */
117 Atom net_wm_name;
118 Atom net_wm_visible_name;
119 Atom net_wm_icon_name;
120 Atom net_wm_visible_icon_name;
121 Atom net_wm_desktop;
122 Atom net_wm_window_type;
123 Atom net_wm_state;
124 Atom net_wm_strut;
125 Atom net_wm_strut_partial;
126 Atom net_wm_icon;
127 Atom net_wm_icon_geometry;
128 /* Atom net_wm_pid; */
129 Atom net_wm_allowed_actions;
130 Atom net_wm_user_time;
131 Atom net_frame_extents;
132
133 /* application protocols */
134 /* Atom net_wm_ping; */
135 #ifdef SYNC
136 Atom net_wm_sync_request;
137 Atom net_wm_sync_request_counter;
138 #endif
139
140 Atom net_wm_window_type_desktop;
141 Atom net_wm_window_type_dock;
142 Atom net_wm_window_type_toolbar;
143 Atom net_wm_window_type_menu;
144 Atom net_wm_window_type_utility;
145 Atom net_wm_window_type_splash;
146 Atom net_wm_window_type_dialog;
147 Atom net_wm_window_type_normal;
148
149 Atom net_wm_action_move;
150 Atom net_wm_action_resize;
151 Atom net_wm_action_minimize;
152 Atom net_wm_action_shade;
153 Atom net_wm_action_maximize_horz;
154 Atom net_wm_action_maximize_vert;
155 Atom net_wm_action_fullscreen;
156 Atom net_wm_action_change_desktop;
157 Atom net_wm_action_close;
158
159 Atom net_wm_state_modal;
160 /* Atom net_wm_state_sticky;*/
161 Atom net_wm_state_maximized_vert;
162 Atom net_wm_state_maximized_horz;
163 Atom net_wm_state_shaded;
164 Atom net_wm_state_skip_taskbar;
165 Atom net_wm_state_skip_pager;
166 Atom net_wm_state_hidden;
167 Atom net_wm_state_fullscreen;
168 Atom net_wm_state_above;
169 Atom net_wm_state_below;
170 Atom net_wm_state_demands_attention;
171
172 /* KDE atoms */
173
174 Atom kde_wm_change_state;
175 Atom kde_net_wm_frame_strut;
176 Atom kde_net_wm_window_type_override;
177
178 /*
179 Atom rootpmapid;
180 Atom esetrootid;
181 */
182
183 /* Openbox specific atoms */
184
185 Atom openbox_wm_state_undecorated;
186 Atom openbox_pid;
187 Atom openbox_config;
188 Atom openbox_control;
189 } Atoms;
190 Atoms prop_atoms;
191
192 void prop_startup();
193
194 gboolean prop_get32(Window win, Atom prop, Atom type, guint32 *ret);
195 gboolean prop_get_array32(Window win, Atom prop, Atom type, guint32 **ret,
196 guint *nret);
197 gboolean prop_get_string_locale(Window win, Atom prop, gchar **ret);
198 gboolean prop_get_string_utf8(Window win, Atom prop, gchar **ret);
199 gboolean prop_get_strings_locale(Window win, Atom prop, gchar ***ret);
200 gboolean prop_get_strings_utf8(Window win, Atom prop, gchar ***ret);
201
202 void prop_set32(Window win, Atom prop, Atom type, gulong val);
203 void prop_set_array32(Window win, Atom prop, Atom type, gulong *val,
204 guint num);
205 void prop_set_string_utf8(Window win, Atom prop, const gchar *val);
206 void prop_set_strings_utf8(Window win, Atom prop, gchar **strs);
207
208 void prop_erase(Window win, Atom prop);
209
210 void prop_message(Window about, Atom messagetype, glong data0, glong data1,
211 glong data2, glong data3, glong mask);
212
213 #define PROP_GET32(win, prop, type, ret) \
214 (prop_get32(win, prop_atoms.prop, prop_atoms.type, ret))
215 #define PROP_GETA32(win, prop, type, ret, nret) \
216 (prop_get_array32(win, prop_atoms.prop, prop_atoms.type, ret, \
217 nret))
218 #define PROP_GETS(win, prop, type, ret) \
219 (prop_get_string_##type(win, prop_atoms.prop, ret))
220 #define PROP_GETSS(win, prop, type, ret) \
221 (prop_get_strings_##type(win, prop_atoms.prop, ret))
222
223 #define PROP_SET32(win, prop, type, val) \
224 prop_set32(win, prop_atoms.prop, prop_atoms.type, val)
225 #define PROP_SETA32(win, prop, type, val, num) \
226 prop_set_array32(win, prop_atoms.prop, prop_atoms.type, val, num)
227 #define PROP_SETS(win, prop, val) \
228 prop_set_string_utf8(win, prop_atoms.prop, val)
229 #define PROP_SETSS(win, prop, strs) \
230 prop_set_strings_utf8(win, prop_atoms.prop, strs)
231
232 #define PROP_ERASE(win, prop) prop_erase(win, prop_atoms.prop)
233
234 #define PROP_MSG(about, msgtype, data0, data1, data2, data3) \
235 (prop_message(about, prop_atoms.msgtype, data0, data1, data2, data3, \
236 SubstructureNotifyMask | SubstructureRedirectMask))
237
238 #endif
This page took 0.044038 seconds and 3 git commands to generate.