mirror of
https://github.com/edubart/otclient.git
synced 2025-05-17 09:29:21 +02:00
29 lines
478 B
C++
29 lines
478 B
C++
#ifndef UICONSTANTS_H
|
|
#define UICONSTANTS_H
|
|
|
|
namespace UI {
|
|
enum ElementType {
|
|
Element = 0,
|
|
Container,
|
|
Panel,
|
|
Window,
|
|
Label,
|
|
TextEdit,
|
|
Button,
|
|
CheckBox,
|
|
LineDecoration
|
|
};
|
|
|
|
enum AnchorPoint {
|
|
AnchorNone = 0,
|
|
AnchorTop,
|
|
AnchorBottom,
|
|
AnchorLeft,
|
|
AnchorRight,
|
|
AnchorVerticalCenter,
|
|
AnchorHorizontalCenter,
|
|
};
|
|
}
|
|
|
|
#endif // UICONSTANTS_H
|