summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/render.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/render/render.h b/render/render.h
index 54f42461..f8f0db86 100644
--- a/render/render.h
+++ b/render/render.h
@@ -101,9 +101,16 @@ typedef struct {
XftFont *xftfont;
} ObFont;
+typedef enum {
+ Justify_Center,
+ Justify_Left,
+ Justify_Right
+} Justify;
+
typedef struct TextureText {
ObFont *font;
- int shadow;
+ Justify justify;
+ int shadow;
unsigned char tint;
unsigned char offset;
color_rgb *color;