1998-09-29 22:36:29 +00:00
|
|
|
/*
|
1998-10-21 14:43:47 +00:00
|
|
|
* Window Maker window manager
|
2004-10-12 21:28:27 +00:00
|
|
|
*
|
2003-01-16 23:30:45 +00:00
|
|
|
* Copyright (c) 1997-2003 Alfredo K. Kojima
|
2004-10-12 21:28:27 +00:00
|
|
|
*
|
1998-09-29 22:36:29 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
2010-10-08 01:32:11 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
1998-09-29 22:36:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WMWDEFAULTS_H_
|
|
|
|
|
#define WMWDEFAULTS_H_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* bit flags for the above window attributes */
|
|
|
|
|
#define WA_TITLEBAR (1<<0)
|
|
|
|
|
#define WA_RESIZABLE (1<<1)
|
|
|
|
|
#define WA_CLOSABLE (1<<2)
|
|
|
|
|
#define WA_MINIATURIZABLE (1<<3)
|
|
|
|
|
#define WA_BROKEN_CLOSE (1<<4)
|
|
|
|
|
#define WA_SHADEABLE (1<<5)
|
|
|
|
|
#define WA_FOCUSABLE (1<<6)
|
|
|
|
|
#define WA_OMNIPRESENT (1<<7)
|
|
|
|
|
#define WA_SKIP_WINDOW_LIST (1<<8)
|
2011-02-17 14:56:36 -02:00
|
|
|
#define WA_SKIP_SWITCHPANEL (1<<9)
|
|
|
|
|
#define WA_FLOATING (1<<10)
|
|
|
|
|
#define WA_IGNORE_KEYS (1<<11)
|
|
|
|
|
#define WA_IGNORE_MOUSE (1<<12)
|
|
|
|
|
#define WA_IGNORE_HIDE_OTHERS (1<<13)
|
|
|
|
|
#define WA_NOT_APPLICATION (1<<14)
|
|
|
|
|
#define WA_DONT_MOVE_OFF (1<<15)
|
1998-09-29 22:36:29 +00:00
|
|
|
|
|
|
|
|
#endif
|