diff options
author | okan | 2015-08-24 15:42:57 +0000 |
---|---|---|
committer | okan | 2015-08-24 15:42:57 +0000 |
commit | f507af43cc37948b1f83ba74c8200059d4bba742 (patch) | |
tree | 6629cf1dd78ec54bda03a6198f59318e4378efed /calmwm.h | |
parent | e76666595f56078b393ce83cc4f32f2cfd5f24b9 (diff) | |
download | cwm-f507af43cc37948b1f83ba74c8200059d4bba742.tar.gz |
Implement _NET_CLIENT_LIST_STACKING (from Thomas Admin), but
bottom-to-top order, as per spec (notified Thomas as well).
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.301 2015/08/24 14:56:10 okan Exp $ + * $OpenBSD: calmwm.h,v 1.302 2015/08/24 15:42:57 okan Exp $ */ #ifndef _CALMWM_H_ @@ -352,6 +352,7 @@ enum { _NET_SUPPORTING_WM_CHECK, _NET_ACTIVE_WINDOW, _NET_CLIENT_LIST, + _NET_CLIENT_LIST_STACKING, _NET_NUMBER_OF_DESKTOPS, _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT, @@ -562,6 +563,7 @@ void xu_ewmh_net_supported_wm_check(struct screen_ctx *); void xu_ewmh_net_desktop_geometry(struct screen_ctx *); void xu_ewmh_net_workarea(struct screen_ctx *); void xu_ewmh_net_client_list(struct screen_ctx *); +void xu_ewmh_net_client_list_stacking(struct screen_ctx *); void xu_ewmh_net_active_window(struct screen_ctx *, Window); void xu_ewmh_net_wm_desktop_viewport(struct screen_ctx *); void xu_ewmh_net_wm_number_of_desktops(struct screen_ctx *); |