aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/win32
diff options
context:
space:
mode:
authorRobert Knight <robert.knight@mendeley.com>2015-06-12 15:32:11 +0100
committerRobert Knight <robert.knight@mendeley.com>2015-06-13 23:19:31 +0100
commitf0bab95c4dc13c1989979c611a4663eb5d590a0d (patch)
tree62fc80f471dae8fbb99f8f791c8d08fb91d7b4d8 /src/api/win32
parenta0e29d9410181368eee1e0b6db1bbbf11abf45f8 (diff)
downloadglutin-f0bab95c4dc13c1989979c611a4663eb5d590a0d.tar.gz
glutin-f0bab95c4dc13c1989979c611a4663eb5d590a0d.zip
Express scroll deltas as either line or pixel deltas
Depending on the platform and device, scroll deltas may either be represented as pixel deltas specifying the amount in pixels to scroll or they may be expressed in 'lines' or 'chunks' for low resolution devices (eg. a traditional mouse wheel). Pixel deltas are currently available on OS X. X11 currently supports only integer line deltas, though pixel deltas are available via XInput2. Windows supports fractional line deltas.
Diffstat (limited to 'src/api/win32')
-rw-r--r--src/api/win32/callback.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/api/win32/callback.rs b/src/api/win32/callback.rs
index 86d5f1c..6ac56f3 100644
--- a/src/api/win32/callback.rs
+++ b/src/api/win32/callback.rs
@@ -112,12 +112,13 @@ pub unsafe extern "system" fn callback(window: winapi::HWND, msg: winapi::UINT,
winapi::WM_MOUSEWHEEL => {
use events::Event::MouseWheel;
+ use events::MouseScrollDelta::LineDelta;
let value = (wparam >> 16) as i16;
let value = value as i32;
- let value = value as f64 / winapi::WHEEL_DELTA as f64;
+ let value = value as f32 / winapi::WHEEL_DELTA as f32;
- send_event(window, MouseWheel(0.0, value));
+ send_event(window, MouseWheel(LineDelta(0.0, value)));
0
},