aboutsummaryrefslogtreecommitdiff
path: root/gui/widget.h
diff options
context:
space:
mode:
authorJordi Vilalta Prat2008-12-23 23:36:38 +0000
committerJordi Vilalta Prat2008-12-23 23:36:38 +0000
commitf75893a2940901493b7901bda15b796aeab3fd74 (patch)
treeae89248ecd096d2ab8e137413cf5f591aa037632 /gui/widget.h
parent51c22d99050196c0ba528204e9db3609ae3e27ae (diff)
downloadscummvm-rg350-f75893a2940901493b7901bda15b796aeab3fd74.tar.gz
scummvm-rg350-f75893a2940901493b7901bda15b796aeab3fd74.tar.bz2
scummvm-rg350-f75893a2940901493b7901bda15b796aeab3fd74.zip
Modify the SliderWidget value by using the mouse wheel
svn-id: r35513
Diffstat (limited to 'gui/widget.h')
-rw-r--r--gui/widget.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/widget.h b/gui/widget.h
index a37ef5c7f4..39bf81b352 100644
--- a/gui/widget.h
+++ b/gui/widget.h
@@ -229,6 +229,7 @@ public:
void handleMouseUp(int x, int y, int button, int clickCount);
void handleMouseEntered(int button) { setFlags(WIDGET_HILITED); draw(); }
void handleMouseLeft(int button) { clearFlags(WIDGET_HILITED); draw(); }
+ void handleMouseWheel(int x, int y, int direction);
protected:
void drawWidget();