-
Notifications
You must be signed in to change notification settings - Fork 10
/
ewmh.h
94 lines (91 loc) · 2.71 KB
/
ewmh.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* lwm, a window manager for X11
* Copyright (C) 1997-2016 Elliott Hughes, James Carter
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* These are indexes into the ewmh_atom array. Only atoms actually supported
* by lwm should be included here because _NET_SUPPORTED is built from the
* ewmh_atom array.
*/
typedef enum {
/* root window properties */
_NET_SUPPORTED,
_NET_CLIENT_LIST,
_NET_CLIENT_LIST_STACKING,
_NET_NUMBER_OF_DESKTOPS,
_NET_DESKTOP_GEOMETRY,
_NET_DESKTOP_VIEWPORT,
_NET_CURRENT_DESKTOP,
/*_NET_DESKTOP_NAMES,*/
_NET_ACTIVE_WINDOW,
_NET_WORKAREA,
_NET_SUPPORTING_WM_CHECK,
/*_NET_VIRTUAL_ROOTS,*/
/*_NET_DESKTOP_LAYOUT,*/
/*_NET_SHOWING_DESKTOP,*/
/* other root window messages */
_NET_CLOSE_WINDOW,
_NET_MOVERESIZE_WINDOW,
_NET_WM_MOVERESIZE,
/* application window properties */
_NET_WM_NAME,
/*_NET_WM_VISIBLE_NAME,*/
/*_NET_WM_ICON_NAME,*/
/*_NET_WM_VISIBLE_ICON_NAME,*/
/*_NET_WM_DESKTOP,*/
_NET_WM_WINDOW_TYPE,
_NET_WM_STATE,
_NET_WM_ALLOWED_ACTIONS,
_NET_WM_STRUT,
/*_NET_WM_ICON_GEOMETRY,*/
/*_NET_WM_ICON,*/
/*_NET_WM_PID,*/
/*_NET_WM_HANDLED_ICONS,*/
/* window types for _NET_WM_WINDOW_TYPE */
_NET_WM_WINDOW_TYPE_DESKTOP,
_NET_WM_WINDOW_TYPE_DOCK,
_NET_WM_WINDOW_TYPE_TOOLBAR,
_NET_WM_WINDOW_TYPE_MENU,
_NET_WM_WINDOW_TYPE_UTILITY,
_NET_WM_WINDOW_TYPE_SPLASH,
_NET_WM_WINDOW_TYPE_DIALOG,
_NET_WM_WINDOW_TYPE_NORMAL,
/* window states for _NET_WM_STATE */
/*_NET_WM_STATE_MODAL,*/
/*_NET_WM_STATE_STICKY,*/
/*_NET_WM_STATE_MAXIMISED_VERT,*/
/*_NET_WM_STATE_MAXIMISED_HORZ,*/
/*_NET_WM_STATE_SHADED,*/
_NET_WM_STATE_SKIP_TASKBAR,
_NET_WM_STATE_SKIP_PAGER,
_NET_WM_STATE_HIDDEN,
_NET_WM_STATE_FULLSCREEN,
_NET_WM_STATE_ABOVE,
_NET_WM_STATE_BELOW,
/* allowed actions for _NET_WM_ALLOWED_ACTIONS */
_NET_WM_ACTION_MOVE,
_NET_WM_ACTION_RESIZE,
/*_NET_WM_ACTION_MINIMIZE,*/
/*_NET_WM_ACTION_SHADE,*/
/*_NET_WM_ACTION_STICK,*/
/*_NET_WM_ACTION_MAXIMIZE_HORIZ,*/
/*_NET_WM_ACTION_MAXIMIZE_VERT,*/
_NET_WM_ACTION_FULLSCREEN,
/*_NET_WM_ACTION_CHANGE_DESKTOP,*/
_NET_WM_ACTION_CLOSE,
EWMH_ATOM_LAST
} EWMHAtom;