summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-11-14 13:47:45 +0100
committerDave Davenport <qball@gmpclient.org>2015-11-14 13:47:45 +0100
commit80e873c8a31489c33cb62c7932797005adc201d3 (patch)
tree9f957d8dd5de12562bf8d7b16d43f2a0240cd050 /include
parent45c8de9387cd73a7369c21fcec70ca77e6832076 (diff)
Add threadpool support, add optional timings compile flag
Diffstat (limited to 'include')
-rw-r--r--include/rofi.h1
-rw-r--r--include/textbox.h16
2 files changed, 9 insertions, 8 deletions
diff --git a/include/rofi.h b/include/rofi.h
index a767fb7a..4b3ae5ef 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -7,6 +7,7 @@
#include <textbox.h>
#include <cairo.h>
#include <cairo-xlib.h>
+#include "timings.h"
#include "keyb.h"
/**
diff --git a/include/textbox.h b/include/textbox.h
index 9b0c4090..fb03234e 100644
--- a/include/textbox.h
+++ b/include/textbox.h
@@ -33,14 +33,14 @@ typedef struct
typedef enum
{
- TB_AUTOHEIGHT = 1 << 0,
- TB_AUTOWIDTH = 1 << 1,
- TB_LEFT = 1 << 16,
- TB_RIGHT = 1 << 17,
- TB_CENTER = 1 << 18,
- TB_EDITABLE = 1 << 19,
- TB_MARKUP = 1 << 20,
- TB_WRAP = 1 << 21,
+ TB_AUTOHEIGHT = 1 << 0,
+ TB_AUTOWIDTH = 1 << 1,
+ TB_LEFT = 1 << 16,
+ TB_RIGHT = 1 << 17,
+ TB_CENTER = 1 << 18,
+ TB_EDITABLE = 1 << 19,
+ TB_MARKUP = 1 << 20,
+ TB_WRAP = 1 << 21,
} TextboxFlags;
typedef enum