summaryrefslogtreecommitdiff
path: root/src/gfx_type.h
diff options
context:
space:
mode:
authorPeter Nelson <peter1138@openttd.org>2021-04-19 12:12:07 +0100
committerPeterN <peter@fuzzle.org>2021-04-22 16:42:04 +0100
commit636e37d1832dbcb3aa12c915ede5a9d26d231d24 (patch)
tree5c8deb467b921a934f8817c042680b160de99bc8 /src/gfx_type.h
parent2a0365b3d992fb602fd91b218b4a8647ddb46975 (diff)
downloadopenttd-636e37d1832dbcb3aa12c915ede5a9d26d231d24.tar.xz
Codechange: Add internal widget alignment property, along with widget part.
Diffstat (limited to 'src/gfx_type.h')
-rw-r--r--src/gfx_type.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gfx_type.h b/src/gfx_type.h
index 3b9f04d9e..a6bf3cf6d 100644
--- a/src/gfx_type.h
+++ b/src/gfx_type.h
@@ -323,4 +323,22 @@ enum Support8bpp {
S8BPP_HARDWARE, ///< Full 8bpp support by OS and hardware.
};
+ /** How to align the to-be drawn text. */
+enum StringAlignment {
+ SA_LEFT = 0 << 0, ///< Left align the text.
+ SA_HOR_CENTER = 1 << 0, ///< Horizontally center the text.
+ SA_RIGHT = 2 << 0, ///< Right align the text (must be a single bit).
+ SA_HOR_MASK = 3 << 0, ///< Mask for horizontal alignment.
+
+ SA_TOP = 0 << 2, ///< Top align the text.
+ SA_VERT_CENTER = 1 << 2, ///< Vertically center the text.
+ SA_BOTTOM = 2 << 2, ///< Bottom align the text.
+ SA_VERT_MASK = 3 << 2, ///< Mask for vertical alignment.
+
+ SA_CENTER = SA_HOR_CENTER | SA_VERT_CENTER, ///< Center both horizontally and vertically.
+
+ SA_FORCE = 1 << 4, ///< Force the alignment, i.e. don't swap for RTL languages.
+};
+DECLARE_ENUM_AS_BIT_SET(StringAlignment)
+
#endif /* GFX_TYPE_H */