diff options
author | Eugene Sandulenko | 2009-06-06 17:51:41 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-06-06 17:51:41 +0000 |
commit | b0f7f2e8d412b65a7bb950f50d1fa511fd6ef946 (patch) | |
tree | 7c48a81f6139f6c70497adb0d6e168046cbb1d5b /graphics | |
parent | b49d23b89810fc196a27e2d3c49e17364fc5f453 (diff) | |
download | scummvm-rg350-b0f7f2e8d412b65a7bb950f50d1fa511fd6ef946.tar.gz scummvm-rg350-b0f7f2e8d412b65a7bb950f50d1fa511fd6ef946.tar.bz2 scummvm-rg350-b0f7f2e8d412b65a7bb950f50d1fa511fd6ef946.zip |
Implement widget property "textalign". Added it to all theme layouts
svn-id: r41265
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/font.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/font.h b/graphics/font.h index f68a6dd7a6..33962875e7 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -36,6 +36,7 @@ namespace Graphics { /** Text alignment modes */ enum TextAlign { + kTextAlignInvalid, kTextAlignLeft, //!< Text should be aligned to the left kTextAlignCenter, //!< Text should be centered kTextAlignRight //!< Text should be aligned to the right |