summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-06-19 18:02:49 +0200
committerDave Davenport <qball@gmpclient.org>2016-06-19 18:02:49 +0200
commit1f4af41e964ee4bedfffbc591173ecc3bbfbb907 (patch)
tree74633635fab9974ca66f78025fa29a7c15439674 /include
parent341f8322ed11456bd206a17e5a7438d45e7412fe (diff)
Split Custom and Alternate command.
Diffstat (limited to 'include')
-rw-r--r--include/keyb.h1
-rw-r--r--include/textbox.h18
2 files changed, 10 insertions, 9 deletions
diff --git a/include/keyb.h b/include/keyb.h
index 5bdea14b..7fee420a 100644
--- a/include/keyb.h
+++ b/include/keyb.h
@@ -37,6 +37,7 @@ typedef enum
REMOVE_CHAR_BACK,
/** Accept the current selected entry */
ACCEPT_ENTRY,
+ ACCEPT_ALT,
ACCEPT_CUSTOM,
MODE_NEXT,
MODE_PREVIOUS,
diff --git a/include/textbox.h b/include/textbox.h
index 455904f8..a7619f7d 100644
--- a/include/textbox.h
+++ b/include/textbox.h
@@ -39,15 +39,15 @@ 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_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,
} TextboxFlags;
typedef enum