Changed StringAlign on Meter=String to support both horizontal and vertical positioning

This commit is contained in:
Brian
2012-05-16 14:02:31 -04:00
committed by jsmorley
parent 817a9369d9
commit 1ec7f71ce7
3 changed files with 111 additions and 13 deletions

View File

@ -109,11 +109,17 @@ protected:
enum METER_ALIGNMENT
{
ALIGN_LEFT,
ALIGN_RIGHT,
ALIGN_CENTER
ALIGN_LEFT, // Same as LeftTop
ALIGN_RIGHT, // Same as RightTop
ALIGN_CENTER, // Same as CenterTop
ALIGN_LEFTBOTTOM,
ALIGN_RIGHTBOTTOM,
ALIGN_CENTERBOTTOM,
ALIGN_LEFTCENTER,
ALIGN_RIGHTCENTER,
ALIGN_CENTERCENTER
};
enum METER_POSITION
{
POSITION_ABSOLUTE,