X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b01abb82d79983cdc0e94f46e8f2ea99705aab2..42ed9e53adbb0ec00b967270f072e39f3b998cd3:/src/stc/ScintillaWX.h?ds=sidebyside diff --git a/src/stc/ScintillaWX.h b/src/stc/ScintillaWX.h index a7ac8023e0..7f537f456f 100644 --- a/src/stc/ScintillaWX.h +++ b/src/stc/ScintillaWX.h @@ -9,7 +9,6 @@ // Author: Robin Dunn // // Created: 13-Jan-2000 -// RCS-ID: $Id$ // Copyright: (c) 2000 by Total Control Software // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -152,7 +151,9 @@ public: void DoLeftButtonUp(Point pt, unsigned int curTime, bool ctrl); void DoLeftButtonMove(Point pt); void DoMiddleButtonUp(Point pt); - void DoMouseWheel(int rotation, int delta, int linesPerAction, int ctrlDown, bool isPageScroll); + void DoMouseWheel(wxMouseWheelAxis axis, int rotation, int delta, + int linesPerAction, int columnsPerAction, + bool ctrlDown, bool isPageScroll); void DoAddChar(int key); int DoKeyDown(const wxKeyEvent& event, bool* consumed); void DoTick() { Tick(); } @@ -191,7 +192,8 @@ private: wxDragResult dragResult; #endif - int wheelRotation; + int wheelVRotation; + int wheelHRotation; // For use in creating a system caret bool HasCaretSizeChanged();