diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-13 17:15:15 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-13 17:15:15 +0000 |
| commit | 11df262d7eb56ae6af98af86cbfee8226107114d (patch) | |
| tree | d01a30b3025aca83878b672d8df9c65d1e67ba5d /openbox/client.h | |
| parent | 0ee1581824f4693884a6f0abde62d20642df82ed (diff) | |
add support for _NET_WM_ACTION_ABOVE and _NET_WM_ACTION_BELOW which aren't in the NETWM spec yet, but will be shortly.
Diffstat (limited to 'openbox/client.h')
| -rw-r--r-- | openbox/client.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/client.h b/openbox/client.h index 351f063b..c4815d4c 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -71,7 +71,9 @@ typedef enum OB_CLIENT_FUNC_MAXIMIZE = 1 << 3, /*!< Allow to be maximized */ OB_CLIENT_FUNC_SHADE = 1 << 4, /*!< Allow to be shaded */ OB_CLIENT_FUNC_FULLSCREEN = 1 << 5, /*!< Allow to be made fullscreen */ - OB_CLIENT_FUNC_CLOSE = 1 << 6 /*!< Allow to be closed */ + OB_CLIENT_FUNC_CLOSE = 1 << 6, /*!< Allow to be closed */ + OB_CLIENT_FUNC_ABOVE = 1 << 7, /*!< Allow to be put in lower layer */ + OB_CLIENT_FUNC_BELOW = 1 << 8 /*!< Allow to be put in higher layer */ } ObFunctions; struct _ObClient |
