summaryrefslogtreecommitdiffstats
path: root/include/mode.h
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2016-03-17 13:14:30 +0100
committerQuentin Glidic <sardemff7+git@sardemff7.net>2016-03-20 10:39:34 +0100
commit20c9abf0a2ef3072453b92db71ad259fd008e27a (patch)
treefaa9a30fce30b4adaa0a9b4aa25f7c6d9dfb465e /include/mode.h
parentc7bc850bb8936944311e4a391ae2ade100e8948d (diff)
keybindings: Merge accept-custom and accept-entry-continue
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
Diffstat (limited to 'include/mode.h')
-rw-r--r--include/mode.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/mode.h b/include/mode.h
index ebb8f224..fd899a56 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -30,23 +30,23 @@ typedef enum
typedef enum
{
/** Entry is selected. */
- MENU_OK = 0x00010000,
+ MENU_OK = 0x00010000,
/** User canceled the operation. (e.g. pressed escape) */
- MENU_CANCEL = 0x00020000,
+ MENU_CANCEL = 0x00020000,
/** User requested a mode switch */
- MENU_NEXT = 0x00040000,
+ MENU_NEXT = 0x00040000,
/** Custom (non-matched) input was entered. */
- MENU_CUSTOM_INPUT = 0x00080000,
+ MENU_CUSTOM_INPUT = 0x00080000,
/** User wanted to delete entry from history. */
- MENU_ENTRY_DELETE = 0x00100000,
+ MENU_ENTRY_DELETE = 0x00100000,
/** User wants to jump to another switcher. */
- MENU_QUICK_SWITCH = 0x00200000,
+ MENU_QUICK_SWITCH = 0x00200000,
/** Go to the previous menu. */
- MENU_PREVIOUS = 0x00400000,
- /** Modifiers */
- MENU_SHIFT = 0x10000000,
+ MENU_PREVIOUS = 0x00400000,
+ /** Bindings specifics */
+ MENU_CUSTOM_ACTION = 0x10000000,
/** Mask */
- MENU_LOWER_MASK = 0x0000FFFF
+ MENU_LOWER_MASK = 0x0000FFFF
} MenuReturn;
/**