]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/events.i
documented fs_zip bugfix
[wxWidgets.git] / wxPython / src / events.i
index d0c6713c0b7268cc2c3052b75886082e85539aa6..2a9e392b701a6e8c06fe21cd3599e9fc485b84e0 100644 (file)
@@ -156,6 +156,15 @@ public:
     wxPoint GetLogicalPosition(const wxDC& dc);
     long GetX();
     long GetY();
+
+    long          m_x, m_y;
+    bool          m_leftDown;
+    bool          m_middleDown;
+    bool          m_rightDown;
+    bool          m_controlDown;
+    bool          m_shiftDown;
+    bool          m_altDown;
+    bool          m_metaDown;
 };
 
 //---------------------------------------------------------------------------
@@ -177,6 +186,15 @@ public:
     long GetY();
     wxPoint GetPosition();
     %name(GetPositionTuple) void GetPosition(long* OUTPUT, long* OUTPUT);
+
+    long          m_x, m_y;
+    long          m_keyCode;
+    bool          m_controlDown;
+    bool          m_shiftDown;
+    bool          m_altDown;
+    bool          m_metaDown;
+    bool          m_scanCode;
+
 };
 
 //---------------------------------------------------------------------------
@@ -365,6 +383,7 @@ class wxNotifyEvent : public wxCommandEvent {
 public:
     wxNotifyEvent(int commandType = wxEVT_NULL, int id = 0);
     bool IsAllowed();
+    void Allow();
     void Veto();
 };