diff options
author | Sven Gothel <[email protected]> | 2015-08-19 15:06:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-08-19 15:06:18 +0200 |
commit | 026ea7ed280bf4eb3a0e3c8434e5d993121f3eb4 (patch) | |
tree | df0b40a4918f813716f0265abf9f5a5de4a27d0c /src/newt/native | |
parent | 87c5e1615346f72ad5686053bae338bdb66b1b01 (diff) |
Bug 1188: Cleanup public/private[reconfig, non-reconfig] state bits
- STATE_BIT_FULLSCREEN_SPAN is private and used for reconfigure,
hence STATE_BIT_COUNT_RECONFIG is needed.
- STATE_BIT_FULLSCREEN_SPAN is added at the end of public state bits
- PSTATE_BIT_MINMAXSIZE_SET is unused.
Diffstat (limited to 'src/newt/native')
-rw-r--r-- | src/newt/native/Window.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/newt/native/Window.h b/src/newt/native/Window.h index ada886d24..f6aba4c83 100644 --- a/src/newt/native/Window.h +++ b/src/newt/native/Window.h @@ -53,7 +53,9 @@ #define FLAG_IS_MAXIMIZED_VERT ( 1 << 9 ) #define FLAG_IS_MAXIMIZED_HORZ ( 1 << 10 ) #define FLAG_IS_FULLSCREEN ( 1 << 11 ) -#define FLAG_IS_FULLSCREEN_SPAN ( 1 << 12 ) +#define FLAG_IS_POINTERVISIBLE ( 1 << 12 ) +#define FLAG_IS_POINTERCONFINED ( 1 << 13 ) +#define FLAG_IS_FULLSCREEN_SPAN ( 1 << 14 ) #define TST_FLAG_CHANGE_VISIBILITY(f) ( 0 != ( (f) & FLAG_CHANGE_VISIBILITY ) ) #define TST_FLAG_CHANGE_VISIBILITY_FAST(f) ( 0 != ( (f) & FLAG_CHANGE_VISIBILITY_FAST ) ) |