(svn r18143) -Codechange: allow stripping/ignoring of SETX(Y) during DrawString

This commit is contained in:
rubidium
2009-11-17 15:25:40 +00:00
parent cbc12fdd86
commit e297f79b7f
2 changed files with 14 additions and 4 deletions

View File

@@ -100,6 +100,7 @@ enum StringAlignment {
SA_RIGHT, ///< Right align the text
SA_MASK = 3, ///< Mask for base alignment
SA_FORCE = 4, ///< Force the alignment, i.e. don't swap for RTL languages.
SA_STRIP = 8, ///< Strip the SETX/SETXY commands from the string
};
DECLARE_ENUM_AS_BIT_SET(StringAlignment);