summaryrefslogtreecommitdiff
path: root/desktop/textinput.h
diff options
context:
space:
mode:
authorAdrian Lees <adrian@aemulor.com>2009-02-01 02:19:01 +0000
committerAdrian Lees <adrian@aemulor.com>2009-02-01 02:19:01 +0000
commitf46dd787188b662af08588414f4d2efc08220eae (patch)
tree847bc67c795304633a027f2ae0d07681411a0179 /desktop/textinput.h
parent4cf69357612dd4cd92e7af7ec32180412a21d1d7 (diff)
downloadnetsurf-f46dd787188b662af08588414f4d2efc08220eae.tar.gz
netsurf-f46dd787188b662af08588414f4d2efc08220eae.tar.bz2
Next batch of menu changes; clarify some key presses
svn path=/trunk/netsurf/; revision=6327
Diffstat (limited to 'desktop/textinput.h')
-rw-r--r--desktop/textinput.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/desktop/textinput.h b/desktop/textinput.h
index 3e2bec5d9..fb4d98b90 100644
--- a/desktop/textinput.h
+++ b/desktop/textinput.h
@@ -34,9 +34,23 @@ struct box;
enum input_key {
+ KEY_SELECT_ALL = 1,
+ KEY_COPY_SELECTION = 3,
+
KEY_DELETE_LEFT = 8,
KEY_TAB = 9,
+ KEY_NL = 10,
+ KEY_SHIFT_TAB = 11,
+ KEY_CR = 13,
+
+ KEY_CUT_LINE = 21,
+ KEY_PASTE = 22,
+ KEY_CUT_SELECTION = 24,
+ KEY_CLEAR_SELECTION = 26,
+
+ KEY_ESCAPE = 27,
+
/* cursor movement keys */
KEY_LEFT = 28,
KEY_RIGHT,