tibia-client/src/framework/const.h

46 lines
975 B
C
Raw Normal View History

2011-08-15 16:06:15 +02:00
#ifndef FRAMEWORK_CONST_H
#define FRAMEWORK_CONST_H
2011-07-13 23:12:36 +02:00
2011-08-15 16:06:15 +02:00
//namespace fw {
2011-08-14 04:09:11 +02:00
2011-08-20 22:30:41 +02:00
enum LogLevel {
LogDebug = 0,
LogInfo,
LogWarning,
LogError,
LogFatal
};
2011-07-13 23:12:36 +02:00
enum AlignmentFlag {
AlignLeft = 1,
AlignRight = 2,
AlignTop = 4,
AlignBottom = 8,
AlignHorizontalCenter = 16,
AlignVerticalCenter = 32,
AlignTopLeft = AlignTop | AlignLeft,
AlignTopRight = AlignTop | AlignRight,
AlignBottomLeft = AlignBottom | AlignLeft,
AlignBottomRight = AlignBottom | AlignRight,
AlignLeftCenter = AlignLeft | AlignVerticalCenter,
AlignRightCenter = AlignRight | AlignVerticalCenter,
AlignTopCenter = AlignTop | AlignHorizontalCenter,
AlignBottomCenter = AlignBottom | AlignHorizontalCenter,
AlignCenter = AlignVerticalCenter | AlignHorizontalCenter
};
2011-08-21 21:43:05 +02:00
enum AnchorEdge {
2011-08-14 04:09:11 +02:00
AnchorNone = 0,
AnchorTop,
AnchorBottom,
AnchorLeft,
AnchorRight,
AnchorVerticalCenter,
AnchorHorizontalCenter,
};
//}
#endif