summaryrefslogtreecommitdiffstats
path: root/source/rofi-types.c
diff options
context:
space:
mode:
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",
+};