|
constexpr uint32_t | VISIBLE = 1 << 0 |
| Flag indicating that the window is visible.
|
|
constexpr uint32_t | NOCLIP = 1 << 1 |
| Flag indicating that the window does not have clipping.
|
|
constexpr uint32_t | DOCK_OUTSIDE = 1 << 2 |
| Flag indicating that the window is docked outside.
|
|
constexpr uint32_t | DOCK_LEFT = 1 << 3 |
| Flag indicating that the window is docked to the left.
|
|
constexpr uint32_t | DOCK_TOP = 1 << 4 |
| Flag indicating that the window is docked to the top.
|
|
constexpr uint32_t | DOCK_RIGHT = 1 << 5 |
| Flag indicating that the window is docked to the right.
|
|
constexpr uint32_t | DOCK_BOTTOM = 1 << 6 |
| Flag indicating that the window is docked to the bottom.
|
|
constexpr uint32_t | PARENT_SIZE = 1 << 7 |
| Flag indicating that the window size is the same size as its parent.
|
|
constexpr uint32_t | PARENT_WIDTH = 1 << 8 |
| Flag indicating that the window width is the same width as its parent.
|
|
constexpr uint32_t | PARENT_HEIGHT = 1 << 9 |
| Flag indicating that the window height is the same height as its parent.
|
|
constexpr uint32_t | HCENTER = 1 << 10 |
| Flag indicating that the window is horizontally centered.
|
|
constexpr uint32_t | VCENTER = 1 << 11 |
| Flag indicating that the window is vertically centered.
|
|
constexpr uint32_t | DISABLED = 1 << 12 |
| Flag indicating that the window is disabled.
|
|
Namespace containing flags for window properties.