Cyrus Mod Loader
Loading...
Searching...
No Matches
unsigned int.h
1#pragma once
2enum unsigned int {
3 VISIBLE = 1,
4 NOCLIP = 2,
5 DOCK_OUTSIDE = 131072,
6 DOCK_LEFT = 128,
7 DOCK_TOP = 512,
8 DOCK_RIGHT = 256,
9 DOCK_BOTTOM = 1024,
10 PARENT_SIZE = 786432,
11 PARENT_WIDTH = 262144,
12 PARENT_HEIGHT = 524288,
13 HCENTER = 32768,
14 VCENTER = 65536,
15 DISABLED = -2147483648,
16};
constexpr uint32_t DISABLED
Flag indicating that the window is disabled.
Definition WindowFlags.h:93
constexpr uint32_t PARENT_SIZE
Flag indicating that the window size is the same size as its parent.
Definition WindowFlags.h:67
constexpr uint32_t VCENTER
Flag indicating that the window is vertically centered.
Definition WindowFlags.h:88
constexpr uint32_t VISIBLE
Flag indicating that the window is visible.
Definition WindowFlags.h:32
constexpr uint32_t DOCK_OUTSIDE
Flag indicating that the window is docked outside.
Definition WindowFlags.h:42
constexpr uint32_t DOCK_BOTTOM
Flag indicating that the window is docked to the bottom.
Definition WindowFlags.h:62
constexpr uint32_t DOCK_LEFT
Flag indicating that the window is docked to the left.
Definition WindowFlags.h:47
constexpr uint32_t PARENT_HEIGHT
Flag indicating that the window height is the same height as its parent.
Definition WindowFlags.h:78
constexpr uint32_t DOCK_TOP
Flag indicating that the window is docked to the top.
Definition WindowFlags.h:52
constexpr uint32_t DOCK_RIGHT
Flag indicating that the window is docked to the right.
Definition WindowFlags.h:57
constexpr uint32_t PARENT_WIDTH
Flag indicating that the window width is the same width as its parent.
Definition WindowFlags.h:72
constexpr uint32_t NOCLIP
Flag indicating that the window does not have clipping.
Definition WindowFlags.h:37
constexpr uint32_t HCENTER
Flag indicating that the window is horizontally centered.
Definition WindowFlags.h:83