2010-04-13 17:22:34 +02:00
|
|
|
#ifndef _WINDOW_H
|
|
|
|
#define _WINDOW_H
|
|
|
|
|
2010-07-13 11:35:05 +02:00
|
|
|
/**
|
|
|
|
* Updates the WM_CLASS (consisting of the class and instance) for the
|
|
|
|
* given window.
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_class(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt);
|
2010-07-13 11:35:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given
|
|
|
|
* window. Further updates using window_update_name_legacy will be ignored.
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt);
|
2010-07-13 11:35:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the name by using WM_NAME (encoded in COMPOUND_TEXT). We do not
|
|
|
|
* touch what the client sends us but pass it to xcb_image_text_8. To get
|
|
|
|
* proper unicode rendering, the application has to use _NET_WM_NAME (see
|
|
|
|
* window_update_name()).
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt);
|
2010-04-13 17:22:34 +02:00
|
|
|
|
2010-11-12 23:46:03 +01:00
|
|
|
/**
|
|
|
|
* Updates the CLIENT_LEADER (logical parent window).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop);
|
|
|
|
|
2010-11-13 01:19:21 +01:00
|
|
|
/**
|
|
|
|
* Updates the TRANSIENT_FOR (logical parent window).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop);
|
|
|
|
|
2011-02-21 14:27:32 +01:00
|
|
|
/**
|
|
|
|
* Updates the _NET_WM_STRUT_PARTIAL (reserved pixels at the screen edges)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_strut_partial(i3Window *win, xcb_get_property_reply_t *prop);
|
|
|
|
|
2011-09-18 17:05:10 +02:00
|
|
|
/**
|
|
|
|
* Updates the WM_WINDOW_ROLE
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt);
|
|
|
|
|
2010-04-13 17:22:34 +02:00
|
|
|
#endif
|