]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/ScintillaWX.h
fixed results of strange cvs code merge
[wxWidgets.git] / src / stc / ScintillaWX.h
index b773eac3a98db80780692c09b20451055f87ab09..00528bcd0a4e3d03577760c5b29e7c4d1eb212c0 100644 (file)
@@ -119,8 +119,9 @@ public:
     void DoButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt);
     void DoButtonUp(Point pt, unsigned int curTime, bool ctrl);
     void DoButtonMove(Point pt);
+    void DoMouseWheel(int rotation, int delta, int linesPerAction, int ctrlDown);
     void DoAddChar(char ch);
-    int  DoKeyDown(int key, bool shift, bool ctrl, bool alt);
+    int  DoKeyDown(int key, bool shift, bool ctrl, bool alt, bool* consumed);
     void DoTick() { Tick(); }
 
     bool DoDropText(long x, long y, const wxString& data);
@@ -146,6 +147,7 @@ private:
 
     wxSTCDropTarget*    dropTarget;
     wxDragResult        dragResult;
+    int                 wheelRotation;
 };
 
 //----------------------------------------------------------------------