summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'window.h')
-rw-r--r--window.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/window.h b/window.h
index 92665b38f..ee955ddf9 100644
--- a/window.h
+++ b/window.h
@@ -55,6 +55,12 @@ union WindowEvent {
struct {
byte event;
+ Point pt;
+ int widget;
+ } mouseover;
+
+ struct {
+ byte event;
bool cont; // continue the search? (default true)
byte ascii; // 8-bit ASCII-value of the key
uint16 keycode;// untranslated key (including shift-state)
@@ -303,6 +309,8 @@ enum WindowEvents {
WE_RCLICK = 17,
WE_KEYPRESS = 18,
WE_CREATE = 19,
+ WE_MOUSEOVER = 20,
+ WE_ON_EDIT_TEXT_CANCEL = 21,
};