Avoid icon change to default on winspector save
[wmaker-crm.git] / src / wdefaults.h
blobc8cbff59230ae1aff547c5b1ae6573f26cc4cc4b
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
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 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef WMWDEFAULTS_H_
22 #define WMWDEFAULTS_H_
25 /* bit flags for the above window attributes */
26 #define WA_TITLEBAR (1<<0)
27 #define WA_RESIZABLE (1<<1)
28 #define WA_CLOSABLE (1<<2)
29 #define WA_MINIATURIZABLE (1<<3)
30 #define WA_BROKEN_CLOSE (1<<4)
31 #define WA_SHADEABLE (1<<5)
32 #define WA_FOCUSABLE (1<<6)
33 #define WA_OMNIPRESENT (1<<7)
34 #define WA_SKIP_WINDOW_LIST (1<<8)
35 #define WA_SKIP_SWITCHPANEL (1<<9)
36 #define WA_FLOATING (1<<10)
37 #define WA_IGNORE_KEYS (1<<11)
38 #define WA_IGNORE_MOUSE (1<<12)
39 #define WA_IGNORE_HIDE_OTHERS (1<<13)
40 #define WA_NOT_APPLICATION (1<<14)
41 #define WA_DONT_MOVE_OFF (1<<15)
43 #endif