You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
478 B

13 years ago
#ifndef UICONSTANTS_H
#define UICONSTANTS_H
namespace UI {
enum ElementType {
Element = 0,
13 years ago
Container,
Panel,
Window,
Label,
TextEdit,
13 years ago
Button,
13 years ago
CheckBox,
LineDecoration
13 years ago
};
enum AnchorPoint {
13 years ago
AnchorNone = 0,
AnchorTop,
AnchorBottom,
13 years ago
AnchorLeft,
AnchorRight,
AnchorVerticalCenter,
AnchorHorizontalCenter,
};
13 years ago
}
#endif // UICONSTANTS_H