aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/native/Window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt/native/Window.h')
-rw-r--r--src/newt/native/Window.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/newt/native/Window.h b/src/newt/native/Window.h
index f6aba4c83..b3924e5b1 100644
--- a/src/newt/native/Window.h
+++ b/src/newt/native/Window.h
@@ -55,7 +55,8 @@
#define FLAG_IS_FULLSCREEN ( 1 << 11 )
#define FLAG_IS_POINTERVISIBLE ( 1 << 12 )
#define FLAG_IS_POINTERCONFINED ( 1 << 13 )
-#define FLAG_IS_FULLSCREEN_SPAN ( 1 << 14 )
+#define FLAG_IS_REPOSITIONABLE ( 1 << 14 )
+#define FLAG_IS_FULLSCREEN_SPAN ( 1 << 15 )
#define TST_FLAG_CHANGE_VISIBILITY(f) ( 0 != ( (f) & FLAG_CHANGE_VISIBILITY ) )
#define TST_FLAG_CHANGE_VISIBILITY_FAST(f) ( 0 != ( (f) & FLAG_CHANGE_VISIBILITY_FAST ) )
@@ -85,6 +86,7 @@
#define TST_FLAG_IS_MAXIMIZED_HORZ(f) ( 0 != ( (f) & FLAG_IS_MAXIMIZED_HORZ ) )
#define TST_FLAG_IS_MAXIMIZED_ANY(f) ( 0 != ( (f) & ( FLAG_IS_MAXIMIZED_VERT | FLAG_IS_MAXIMIZED_HORZ ) ) )
#define TST_FLAG_IS_FULLSCREEN(f) ( 0 != ( (f) & FLAG_IS_FULLSCREEN ) )
+#define TST_FLAG_IS_REPOSITIONABLE(f) ( 0 != ( (f) & FLAG_IS_REPOSITIONABLE ) )
#define TST_FLAG_IS_FULLSCREEN_SPAN(f) ( 0 != ( (f) & FLAG_IS_FULLSCREEN_SPAN ) )
#endif