2 * systray.c - systray handling
4 * Copyright © 2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <xcb/xcb_icccm.h>
24 #include <xcb/xcb_atom.h>
29 #include "common/atoms.h"
31 #define SYSTEM_TRAY_REQUEST_DOCK 0 /* Begin icon docking */
33 extern awesome_t globalconf
;
35 /** Initialize systray information in X.
36 * \param phys_screen Physical screen.
39 systray_init(int phys_screen
)
41 xcb_client_message_event_t ev
;
42 xcb_screen_t
*xscreen
= xutil_screen_get(globalconf
.connection
, phys_screen
);
44 xcb_intern_atom_cookie_t atom_systray_q
;
45 xcb_intern_atom_reply_t
*atom_systray_r
;
46 xcb_atom_t atom_systray
;
49 if(!(atom_name
= xcb_atom_name_by_screen("_NET_SYSTEM_TRAY", phys_screen
)))
51 warn("error getting systray atom");
55 atom_systray_q
= xcb_intern_atom_unchecked(globalconf
.connection
, false,
56 a_strlen(atom_name
), atom_name
);
60 globalconf
.screens
[phys_screen
].systray
.window
= xcb_generate_id(globalconf
.connection
);
61 xcb_create_window(globalconf
.connection
, xscreen
->root_depth
,
62 globalconf
.screens
[phys_screen
].systray
.window
,
65 XCB_COPY_FROM_PARENT
, xscreen
->root_visual
, 0, NULL
);
69 ev
.response_type
= XCB_CLIENT_MESSAGE
;
70 ev
.window
= xscreen
->root
;
73 ev
.data
.data32
[0] = XCB_CURRENT_TIME
;
74 ev
.data
.data32
[2] = globalconf
.screens
[phys_screen
].systray
.window
;
75 ev
.data
.data32
[3] = ev
.data
.data32
[4] = 0;
77 if(!(atom_systray_r
= xcb_intern_atom_reply(globalconf
.connection
, atom_systray_q
, NULL
)))
79 warn("error getting systray atom");
83 ev
.data
.data32
[1] = atom_systray
= atom_systray_r
->atom
;
85 p_delete(&atom_systray_r
);
87 xcb_set_selection_owner(globalconf
.connection
,
88 globalconf
.screens
[phys_screen
].systray
.window
,
92 xcb_send_event(globalconf
.connection
, false, xscreen
->root
, 0xFFFFFF, (char *) &ev
);
95 /** Remove systray information in X.
96 * \param phys_screen Physical screen.
99 systray_cleanup(int phys_screen
)
101 xcb_intern_atom_reply_t
*atom_systray_r
;
104 if(!(atom_name
= xcb_atom_name_by_screen("_NET_SYSTEM_TRAY", phys_screen
))
105 || !(atom_systray_r
= xcb_intern_atom_reply(globalconf
.connection
,
106 xcb_intern_atom_unchecked(globalconf
.connection
,
112 warn("error getting systray atom");
113 p_delete(&atom_name
);
117 p_delete(&atom_name
);
119 xcb_set_selection_owner(globalconf
.connection
,
121 atom_systray_r
->atom
,
124 p_delete(&atom_systray_r
);
127 /** Handle a systray request.
128 * \param embed_win The window to embed.
131 systray_request_handle(xcb_window_t embed_win
, int phys_screen
, xembed_info_t
*info
)
134 xcb_get_property_cookie_t em_cookie
;
136 const uint32_t select_input_val
[] =
138 XCB_EVENT_MASK_STRUCTURE_NOTIFY
139 | XCB_EVENT_MASK_PROPERTY_CHANGE
140 | XCB_EVENT_MASK_ENTER_WINDOW
143 /* check if not already trayed */
144 if(xembed_getbywin(&globalconf
.embedded
, embed_win
))
147 p_clear(&em_cookie
, 1);
150 em_cookie
= xembed_info_get_unchecked(globalconf
.connection
, embed_win
);
152 xcb_change_window_attributes(globalconf
.connection
, embed_win
, XCB_CW_EVENT_MASK
,
154 window_state_set(embed_win
, XCB_WM_STATE_WITHDRAWN
);
156 xcb_reparent_window(globalconf
.connection
, embed_win
,
157 globalconf
.screens
[phys_screen
].systray
.window
,
161 em
.phys_screen
= phys_screen
;
166 xembed_info_get_reply(globalconf
.connection
, em_cookie
, &em
.info
);
168 xembed_embedded_notify(globalconf
.connection
, em
.win
,
169 globalconf
.screens
[phys_screen
].systray
.window
,
170 MIN(XEMBED_VERSION
, em
.info
.version
));
172 xembed_window_array_append(&globalconf
.embedded
, em
);
174 for(i
= 0; i
< globalconf
.nscreen
; i
++)
175 widget_invalidate_bytype(i
, widget_systray
);
180 /** Handle systray message.
181 * \param ev The event.
182 * \return 0 on no error.
185 systray_process_client_message(xcb_client_message_event_t
*ev
)
187 int screen_nbr
= 0, ret
= 0;
188 xcb_get_geometry_cookie_t geom_c
;
189 xcb_get_geometry_reply_t
*geom_r
;
190 xcb_screen_iterator_t iter
;
192 switch(ev
->data
.data32
[1])
194 case SYSTEM_TRAY_REQUEST_DOCK
:
195 geom_c
= xcb_get_geometry_unchecked(globalconf
.connection
, ev
->window
);
197 if(!(geom_r
= xcb_get_geometry_reply(globalconf
.connection
, geom_c
, NULL
)))
200 for(iter
= xcb_setup_roots_iterator(xcb_get_setup(globalconf
.connection
)), screen_nbr
= 0;
201 iter
.rem
&& iter
.data
->root
!= geom_r
->root
; xcb_screen_next (&iter
), ++screen_nbr
);
205 ret
= systray_request_handle(ev
->data
.data32
[2], screen_nbr
, NULL
);
212 /** Check if a window is a KDE tray.
213 * \param w The window to check.
214 * \return True if it is, false otherwise.
217 systray_iskdedockapp(xcb_window_t w
)
219 xcb_get_property_cookie_t kde_check_q
;
220 xcb_get_property_reply_t
*kde_check
;
223 /* Check if that is a KDE tray because it does not repect fdo standards,
225 kde_check_q
= xcb_get_property_unchecked(globalconf
.connection
, false, w
,
226 _KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR
,
229 kde_check
= xcb_get_property_reply(globalconf
.connection
, kde_check_q
, NULL
);
231 /* it's a KDE systray ?*/
232 ret
= (kde_check
&& kde_check
->value_len
);
234 p_delete(&kde_check
);
239 /** Handle xembed client message.
240 * \param ev The event.
241 * \return 0 on no error.
244 xembed_process_client_message(xcb_client_message_event_t
*ev
)
246 switch(ev
->data
.data32
[1])
248 case XEMBED_REQUEST_FOCUS
:
249 xembed_focus_in(globalconf
.connection
, ev
->window
, XEMBED_FOCUS_CURRENT
);
255 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80