]>
Dogcows Code - chaz/openbox/blob - openbox/mwm.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 mwm.h for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
24 typedef struct _ObMwmHints ObMwmHints
;
26 /*! The MWM Hints as retrieved from the window property
27 This structure only contains 3 elements, even though the Motif 2.0
28 structure contains 5. We only use the first 3, so that is all gets
33 /*! A bitmask of ObMwmFlags values */
35 /*! A bitmask of ObMwmFunctions values */
37 /*! A bitmask of ObMwmDecorations values */
41 /*! The number of elements in the ObMwmHints struct */
42 #define OB_MWM_ELEMENTS 3
44 /*! Possible flags for MWM Hints (defined by Motif 2.0) */
47 OB_MWM_FLAG_FUNCTIONS
= 1 << 0, /*!< The MMW Hints define funcs */
48 OB_MWM_FLAG_DECORATIONS
= 1 << 1 /*!< The MWM Hints define decor */
51 /*! Possible functions for MWM Hints (defined by Motif 2.0) */
54 OB_MWM_FUNC_ALL
= 1 << 0, /*!< All functions */
55 OB_MWM_FUNC_RESIZE
= 1 << 1, /*!< Allow resizing */
56 OB_MWM_FUNC_MOVE
= 1 << 2, /*!< Allow moving */
57 OB_MWM_FUNC_ICONIFY
= 1 << 3, /*!< Allow to be iconfied */
58 OB_MWM_FUNC_MAXIMIZE
= 1 << 4 /*!< Allow to be maximized */
60 OM_MWM_FUNC_CLOSE
= 1 << 5 /*!< Allow to be closed */
64 /*! Possible decorations for MWM Hints (defined by Motif 2.0) */
67 OB_MWM_DECOR_ALL
= 1 << 0, /*!< All decorations */
68 OB_MWM_DECOR_BORDER
= 1 << 1, /*!< Show a border */
69 OB_MWM_DECOR_HANDLE
= 1 << 2, /*!< Show a handle (bottom) */
70 OB_MWM_DECOR_TITLE
= 1 << 3, /*!< Show a titlebar */
72 OB_MWM_DECOR_MENU
= 1 << 4, /*!< Show a menu */
74 OB_MWM_DECOR_ICONIFY
= 1 << 5, /*!< Show an iconify button */
75 OB_MWM_DECOR_MAXIMIZE
= 1 << 6 /*!< Show a maximize button */
This page took 0.035382 seconds and 4 git commands to generate.