mirror of
https://github.com/brl/mutter.git
synced 2025-07-06 10:59:51 +00:00
add a "fullscreen" semantic type; if a window requests the screen size
2001-08-19 Havoc Pennington <hp@pobox.com> * src/window.c: add a "fullscreen" semantic type; if a window requests the screen size exactly, and is undecorated, and is not a desktop window, we consider it a fullscreen window and keep it on top. Totally untested.
This commit is contained in:

committed by
Havoc Pennington

parent
04e09d4c56
commit
f562e65d5f
13
src/stack.h
13
src/stack.h
@ -32,12 +32,13 @@ typedef struct _MetaStackOp MetaStackOp;
|
||||
/* These MUST be in the order of stacking */
|
||||
typedef enum
|
||||
{
|
||||
META_LAYER_DESKTOP = 0,
|
||||
META_LAYER_BOTTOM = 1,
|
||||
META_LAYER_NORMAL = 2,
|
||||
META_LAYER_TOP = 3,
|
||||
META_LAYER_DOCK = 4,
|
||||
META_LAYER_LAST = 5
|
||||
META_LAYER_DESKTOP = 0,
|
||||
META_LAYER_BOTTOM = 1,
|
||||
META_LAYER_NORMAL = 2,
|
||||
META_LAYER_TOP = 3,
|
||||
META_LAYER_DOCK = 4,
|
||||
META_LAYER_FULLSCREEN = 5,
|
||||
META_LAYER_LAST = 6
|
||||
} MetaStackLayer;
|
||||
|
||||
struct _MetaStack
|
||||
|
Reference in New Issue
Block a user