summaryrefslogtreecommitdiff
path: root/src/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stack.h')
-rw-r--r--src/stack.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/stack.h b/src/stack.h
index 0b8d05e2..3c805d2e 100644
--- a/src/stack.h
+++ b/src/stack.h
@@ -52,9 +52,8 @@ typedef enum
META_LAYER_TOP = 3,
META_LAYER_DOCK = 4,
META_LAYER_FULLSCREEN = 5,
- META_LAYER_SPLASH = 6,
- META_LAYER_FOCUSED_WINDOW = 7,
- META_LAYER_LAST = 8
+ META_LAYER_FOCUSED_WINDOW = 6,
+ META_LAYER_LAST = 7
} MetaStackLayer;
struct _MetaStack
@@ -140,4 +139,8 @@ int meta_stack_windows_cmp (MetaStack *stack,
void meta_window_set_stack_position (MetaWindow *window,
int position);
+GList* meta_stack_get_positions (MetaStack *stack);
+void meta_stack_set_positions (MetaStack *stack,
+ GList *windows);
+
#endif