summaryrefslogtreecommitdiffstats
path: root/include/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-21 12:58:52 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-21 12:58:52 +0100
commit0ebd6a260b652e6d3820c7571683d87eea723dec (patch)
treef2ad8a29c49cca1e79edf4e3bfd19cf1fe503b33 /include/widgets
parentb0870e02f7bde476a47e50d252c9d4c9dadf12a8 (diff)
Add auto-detect option to DPI setting.
Diffstat (limited to 'include/widgets')
-rw-r--r--include/widgets/textbox.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/widgets/textbox.h b/include/widgets/textbox.h
index f8469ead..d81d8806 100644
--- a/include/widgets/textbox.h
+++ b/include/widgets/textbox.h
@@ -48,16 +48,16 @@ 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_PASSWORD = 1 << 22,
- TB_INDICATOR = 1 << 23,
+ 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_PASSWORD = 1 << 22,
+ TB_INDICATOR = 1 << 23,
} TextboxFlags;
/**
* Flags indicating current state of the textbox.