]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/events.i
XPMHAND.H dependency removed
[wxWidgets.git] / wxPython / src / events.i
index d1454016dccc7fd65fa8165d752a45abdf57ffd6..47a7825ade8a9183fa6971be02e15d160998f268 100644 (file)
@@ -33,7 +33,7 @@
 
 int wxNewEventType();
 
-class wxEvent {
+class wxEvent : public wxObject {
 public:
     wxEvent(int id = 0);
     ~wxEvent();
@@ -160,6 +160,10 @@ public:
     long GetX();
     long GetY();
 
+    int GetWheelRotation() const { return m_wheelRotation; }
+    int GetWheelDelta() const { return m_wheelDelta; }
+    int GetLinesPerAction() const { return m_linesPerAction; }
+
     long          m_x, m_y;
     bool          m_leftDown;
     bool          m_middleDown;
@@ -168,6 +172,9 @@ public:
     bool          m_shiftDown;
     bool          m_altDown;
     bool          m_metaDown;
+    int           m_wheelRotation;
+    int           m_wheelDelta;
+    int           m_linesPerAction;
 };
 
 //---------------------------------------------------------------------------