summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-12-31 21:37:19 +0100
committerDave Davenport <qball@gmpclient.org>2016-12-31 21:37:19 +0100
commit5f424fa598662e35f647b99c9e7755ffecb451ad (patch)
treee409dea011c254c761983645282aab076d3bcb48 /include
parent2bfbb464e60736664de427c974a294ca42dd82ad (diff)
Padding should be specified in px now and 4 borders can be specified on
one pixel line.
Diffstat (limited to 'include')
-rw-r--r--include/theme.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/theme.h b/include/theme.h
index 75acbc43..3cf34387 100644
--- a/include/theme.h
+++ b/include/theme.h
@@ -7,7 +7,9 @@ typedef enum {
P_DOUBLE,
P_STRING,
P_BOOLEAN,
- P_COLOR
+ P_COLOR,
+ // Used in padding.
+ P_PADDING,
} PropertyType;
typedef struct
@@ -40,6 +42,7 @@ typedef struct {
char *s;
int b;
ThemeColor color;
+ Padding padding;
} value;
} Property;