summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-21 14:59:58 +0000
committertruelight <truelight@openttd.org>2006-08-21 14:59:58 +0000
commit2849e4fea984d541699d8bf4cee5d46086c5fe9a (patch)
tree1a79335a7851122f14fcde23385216d03efb72aa /window.h
parent305d6eeaef4fa537c24daed248b8fb3202e4ca70 (diff)
downloadopenttd-2849e4fea984d541699d8bf4cee5d46086c5fe9a.tar.xz
(svn r6038) -Codechange: move mousewheel code to event WE_MOUSEWHEEL instead of a general function that handles that
-Codechange: use always 'e' for WindowsEvent, neverr 'we'
Diffstat (limited to 'window.h')
-rw-r--r--window.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/window.h b/window.h
index 9bdfc1bce..7e2b9a467 100644
--- a/window.h
+++ b/window.h
@@ -141,6 +141,11 @@ union WindowEvent {
byte event;
Point delta; // delta position against position of last call
} scroll;
+
+ struct {
+ byte event;
+ int wheel; // how much was 'wheel'd'
+ } wheel;
};
enum WindowKeyCodes {
@@ -513,6 +518,7 @@ enum WindowEvents {
WE_RESIZE = 22,
WE_MESSAGE = 23,
WE_SCROLL = 24,
+ WE_MOUSEWHEEL = 25,
};