mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
fill in mwm defines
This commit is contained in:
parent
b9db4486da
commit
31d4fe9f33
22
calmwm.h
22
calmwm.h
@ -304,11 +304,27 @@ struct mwm_hints {
|
|||||||
unsigned long functions;
|
unsigned long functions;
|
||||||
unsigned long decorations;
|
unsigned long decorations;
|
||||||
};
|
};
|
||||||
#define MWM_NUMHINTS 3
|
#define MWM_HINTS_ELEMENTS 3L
|
||||||
#define PROP_MWM_HINTS_ELEMENTS 3
|
|
||||||
#define MWM_HINTS_DECORATIONS (1<<1)
|
#define MWM_FLAGS_FUNCTIONS (1<<0)
|
||||||
|
#define MWM_FLAGS_DECORATIONS (1<<1)
|
||||||
|
#define MWM_FLAGS_INPUT_MODE (1<<2)
|
||||||
|
#define MWM_FLAGS_STATUS (1<<3)
|
||||||
|
|
||||||
|
#define MWM_FUNCS_ALL (1<<0)
|
||||||
|
#define MWM_FUNCS_RESIZE (1<<1)
|
||||||
|
#define MWM_FUNCS_MOVE (1<<2)
|
||||||
|
#define MWM_FUNCS_MINIMIZE (1<<3)
|
||||||
|
#define MWM_FUNCS_MAXIMIZE (1<<4)
|
||||||
|
#define MWM_FUNCS_CLOSE (1<<5)
|
||||||
|
|
||||||
#define MWM_DECOR_ALL (1<<0)
|
#define MWM_DECOR_ALL (1<<0)
|
||||||
#define MWM_DECOR_BORDER (1<<1)
|
#define MWM_DECOR_BORDER (1<<1)
|
||||||
|
#define MWM_DECOR_RESIZE_HANDLE (1<<2)
|
||||||
|
#define MWM_DECOR_TITLEBAR (1<<3)
|
||||||
|
#define MWM_DECOR_MENU (1<<4)
|
||||||
|
#define MWM_DECOR_MINIMIZE (1<<5)
|
||||||
|
#define MWM_DECOR_MAXIMIZE (1<<6)
|
||||||
|
|
||||||
extern Display *X_Dpy;
|
extern Display *X_Dpy;
|
||||||
extern Time Last_Event_Time;
|
extern Time Last_Event_Time;
|
||||||
|
4
client.c
4
client.c
@ -882,8 +882,8 @@ client_mwm_hints(struct client_ctx *cc)
|
|||||||
struct mwm_hints *mwmh;
|
struct mwm_hints *mwmh;
|
||||||
|
|
||||||
if (xu_getprop(cc->win, cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS],
|
if (xu_getprop(cc->win, cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS],
|
||||||
PROP_MWM_HINTS_ELEMENTS, (unsigned char **)&mwmh) == MWM_NUMHINTS) {
|
MWM_HINTS_ELEMENTS, (unsigned char **)&mwmh) == MWM_HINTS_ELEMENTS) {
|
||||||
if (mwmh->flags & MWM_HINTS_DECORATIONS &&
|
if (mwmh->flags & MWM_FLAGS_DECORATIONS &&
|
||||||
!(mwmh->decorations & MWM_DECOR_ALL) &&
|
!(mwmh->decorations & MWM_DECOR_ALL) &&
|
||||||
!(mwmh->decorations & MWM_DECOR_BORDER))
|
!(mwmh->decorations & MWM_DECOR_BORDER))
|
||||||
cc->bwidth = 0;
|
cc->bwidth = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user