66 lines
2.0 KiB
C
66 lines
2.0 KiB
C
/*
|
|
|
|
MIT/X11 License
|
|
Copyright (c) 2012 Sean Pringle <sean.pringle@gmail.com>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
a copy of this software and associated documentation files (the
|
|
"Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#define ATOM_ENUM(x) x
|
|
#define ATOM_CHAR(x) #x
|
|
|
|
#define GENERAL_ATOMS(X) \
|
|
X(XOAT_SPOT),\
|
|
X(XOAT_EXIT),\
|
|
X(XOAT_RESTART),\
|
|
X(XOAT_MAXIMIZE),\
|
|
X(_NET_SUPPORTED),\
|
|
X(_NET_ACTIVE_WINDOW),\
|
|
X(_NET_CLOSE_WINDOW),\
|
|
X(_NET_CLIENT_LIST_STACKING),\
|
|
X(_NET_CLIENT_LIST),\
|
|
X(_NET_SUPPORTING_WM_CHECK),\
|
|
X(_NET_WM_NAME),\
|
|
X(_NET_WM_PID),\
|
|
X(_NET_WM_STRUT),\
|
|
X(_NET_WM_STRUT_PARTIAL),\
|
|
X(_NET_WM_WINDOW_TYPE),\
|
|
X(_NET_WM_WINDOW_TYPE_DESKTOP),\
|
|
X(_NET_WM_WINDOW_TYPE_DOCK),\
|
|
X(_NET_WM_WINDOW_TYPE_SPLASH),\
|
|
X(_NET_WM_WINDOW_TYPE_NOTIFICATION),\
|
|
X(_NET_WM_WINDOW_TYPE_DIALOG),\
|
|
X(_NET_WM_STATE),\
|
|
X(_NET_WM_STATE_FULLSCREEN),\
|
|
X(_NET_WM_STATE_MAXIMIZE_VERT),\
|
|
X(_NET_WM_STATE_MAXIMIZE_HORZ),\
|
|
X(_NET_WM_STATE_DEMANDS_ATTENTION),\
|
|
X(WM_NAME),\
|
|
X(WM_DELETE_WINDOW),\
|
|
X(WM_CLIENT_LEADER),\
|
|
X(WM_TAKE_FOCUS),\
|
|
X(WM_PROTOCOLS)
|
|
|
|
enum { GENERAL_ATOMS(ATOM_ENUM), ATOMS };
|
|
const char *atom_names[] = { GENERAL_ATOMS(ATOM_CHAR) };
|
|
Atom atoms[ATOMS];
|
|
|