summaryrefslogtreecommitdiffstats
path: root/source/rofi-types.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-20 21:02:13 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-20 21:02:13 +0200
commit9af191de26611ce5025e3363dafd0cdbf8ab38b9 (patch)
treeceb95d1459863792b0201fc927ca4919dcb25882 /source/rofi-types.c
parent4d813a53918dd329c2bb87f34c381995f138b3d3 (diff)
Fix tests by splitting types name into separate file.
Diffstat (limited to 'source/rofi-types.c')
-rw-r--r--source/rofi-types.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/source/rofi-types.c b/source/rofi-types.c
new file mode 100644
index 00000000..d0676f40
--- /dev/null
+++ b/source/rofi-types.c
@@ -0,0 +1,29 @@
+#include "rofi-types.h"
+
+/**
+ * Name of the property type
+ */
+const char *PropertyTypeName[] = {
+ /** Integer */
+ "Integer",
+ /** Double */
+ "Double",
+ /** String */
+ "String",
+ /** Boolean */
+ "Boolean",
+ /** Color */
+ "Color",
+ /** RofiPadding */
+ "RofiPadding",
+ /** Link to global setting */
+ "Reference",
+ /** Position */
+ "Position",
+ /** Highlight */
+ "Highlight",
+ /** List */
+ "List",
+ /** Orientation */
+ "Orientation",
+};