1) Remove support for the Urgent hint. This will no longer do anything within Openbox
[mikachu/openbox.git] / 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        Ben 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 motif_wm_hints;
54
55     /* SM atoms */
56     Atom sm_client_id;
57
58     /* NETWM atoms */
59      
60     /* root window properties */
61     Atom net_supported;
62     Atom net_client_list;
63     Atom net_client_list_stacking;
64     Atom net_number_of_desktops;
65     Atom net_desktop_geometry;
66     Atom net_desktop_viewport;
67     Atom net_current_desktop;
68     Atom net_desktop_names;
69     Atom net_active_window;
70     Atom net_workarea;
71     Atom net_supporting_wm_check;
72     Atom net_desktop_layout;
73     Atom net_showing_desktop;
74     /* root window messages */
75     Atom net_close_window;
76     Atom net_wm_moveresize;
77     Atom net_moveresize_window;
78
79     /* startup-notification extension */
80     Atom net_startup_id;
81
82     /* application window properties */
83     Atom net_wm_name;
84     Atom net_wm_visible_name;
85     Atom net_wm_icon_name;
86     Atom net_wm_visible_icon_name;
87     Atom net_wm_desktop;
88     Atom net_wm_window_type;
89     Atom net_wm_state;
90     Atom net_wm_strut;
91     Atom net_wm_strut_partial;
92     Atom net_wm_icon;
93 /*  Atom net_wm_pid; */
94     Atom net_wm_allowed_actions;
95     /* application protocols */
96 /*  Atom   Atom net_wm_ping; */
97
98     Atom net_wm_window_type_desktop;
99     Atom net_wm_window_type_dock;
100     Atom net_wm_window_type_toolbar;
101     Atom net_wm_window_type_menu;
102     Atom net_wm_window_type_utility;
103     Atom net_wm_window_type_splash;
104     Atom net_wm_window_type_dialog;
105     Atom net_wm_window_type_normal;
106
107     Atom net_wm_moveresize_size_topleft; 
108     Atom net_wm_moveresize_size_top;
109     Atom net_wm_moveresize_size_topright;
110     Atom net_wm_moveresize_size_right;
111     Atom net_wm_moveresize_size_bottomright;
112     Atom net_wm_moveresize_size_bottom;
113     Atom net_wm_moveresize_size_bottomleft;
114     Atom net_wm_moveresize_size_left;
115     Atom net_wm_moveresize_move;
116     Atom net_wm_moveresize_size_keyboard;
117     Atom net_wm_moveresize_move_keyboard;
118
119     Atom net_wm_action_move;
120     Atom net_wm_action_resize;
121     Atom net_wm_action_minimize;
122     Atom net_wm_action_shade;
123     Atom net_wm_action_stick;
124     Atom net_wm_action_maximize_horz;
125     Atom net_wm_action_maximize_vert;
126     Atom net_wm_action_fullscreen;
127     Atom net_wm_action_change_desktop;
128     Atom net_wm_action_close;
129
130     Atom net_wm_state_modal;
131     Atom net_wm_state_sticky;
132     Atom net_wm_state_maximized_vert;
133     Atom net_wm_state_maximized_horz;
134     Atom net_wm_state_shaded;
135     Atom net_wm_state_skip_taskbar;
136     Atom net_wm_state_skip_pager;
137     Atom net_wm_state_hidden;
138     Atom net_wm_state_fullscreen;
139     Atom net_wm_state_above;
140     Atom net_wm_state_below;
141     Atom net_wm_state_demands_attention;
142
143     Atom net_wm_state_add;
144     Atom net_wm_state_remove;
145     Atom net_wm_state_toggle;
146
147     Atom net_wm_orientation_horz;
148     Atom net_wm_orientation_vert;
149     Atom net_wm_topleft;
150     Atom net_wm_topright;
151     Atom net_wm_bottomright;
152     Atom net_wm_bottomleft;
153
154     /* Extra atoms */
155
156     Atom kde_net_wm_frame_strut;
157     Atom kde_wm_change_state;
158     Atom kde_net_wm_window_type_override;
159
160     Atom kwm_win_icon;
161
162     Atom rootpmapid;
163     Atom esetrootid;
164
165     /* Openbox specific atoms */
166      
167     Atom openbox_pid;
168     Atom ob_wm_state_undecorated;
169     Atom ob_control;
170 } Atoms;
171 Atoms prop_atoms;
172
173 void prop_startup();
174
175 gboolean prop_get32(Window win, Atom prop, Atom type, guint32 *ret);
176 gboolean prop_get_array32(Window win, Atom prop, Atom type, guint32 **ret,
177                           guint *nret);
178 gboolean prop_get_string_locale(Window win, Atom prop, gchar **ret);
179 gboolean prop_get_string_utf8(Window win, Atom prop, gchar **ret);
180 gboolean prop_get_strings_locale(Window win, Atom prop, gchar ***ret);
181 gboolean prop_get_strings_utf8(Window win, Atom prop, gchar ***ret);
182
183 void prop_set32(Window win, Atom prop, Atom type, gulong val);
184 void prop_set_array32(Window win, Atom prop, Atom type, gulong *val,
185                       guint num);
186 void prop_set_string_utf8(Window win, Atom prop, gchar *val);
187 void prop_set_strings_utf8(Window win, Atom prop, gchar **strs);
188
189 void prop_erase(Window win, Atom prop);
190
191 void prop_message(Window about, Atom messagetype, glong data0, glong data1,
192                   glong data2, glong data3, glong mask);
193
194 #define PROP_GET32(win, prop, type, ret) \
195     (prop_get32(win, prop_atoms.prop, prop_atoms.type, ret))
196 #define PROP_GETA32(win, prop, type, ret, nret) \
197     (prop_get_array32(win, prop_atoms.prop, prop_atoms.type, ret, \
198                       nret))
199 #define PROP_GETS(win, prop, type, ret) \
200     (prop_get_string_##type(win, prop_atoms.prop, ret))
201 #define PROP_GETSS(win, prop, type, ret) \
202     (prop_get_strings_##type(win, prop_atoms.prop, ret))
203
204 #define PROP_SET32(win, prop, type, val) \
205     prop_set32(win, prop_atoms.prop, prop_atoms.type, val)
206 #define PROP_SETA32(win, prop, type, val, num) \
207     prop_set_array32(win, prop_atoms.prop, prop_atoms.type, val, num)
208 #define PROP_SETS(win, prop, val) \
209     prop_set_string_utf8(win, prop_atoms.prop, val)
210 #define PROP_SETSS(win, prop, strs) \
211     prop_set_strings_utf8(win, prop_atoms.prop, strs)
212
213 #define PROP_ERASE(win, prop) prop_erase(win, prop_atoms.prop)
214
215 #define PROP_MSG(about, msgtype, data0, data1, data2, data3) \
216   (prop_message(about, prop_atoms.msgtype, data0, data1, data2, data3, \
217                 SubstructureNotifyMask | SubstructureRedirectMask))
218
219 #endif