]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/events.i
Added wxIEHtmlWin wrappers to wxPython.
[wxWidgets.git] / wxPython / src / events.i
index c270a652bc79aee9d40cceeb52971a0786f63be0..cd34979002fbec314b4d1e55519fddf03562ff79 100644 (file)
@@ -193,6 +193,30 @@ public:
 
 //---------------------------------------------------------------------------
 
+class wxMouseCaptureChangedEvent : public wxEvent
+{
+public:
+    wxMouseCaptureChangedEvent(wxWindowID id = 0, wxWindow* gainedCapture = NULL);
+    wxWindow* GetCapturedWindow() const;
+};
+
+//---------------------------------------------------------------------------
+
+class wxSetCursorEvent : public wxEvent
+{
+public:
+    wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0);
+
+    wxCoord GetX() const;
+    wxCoord GetY() const;
+
+    void SetCursor(const wxCursor& cursor);
+    const wxCursor& GetCursor() const;
+    bool HasCursor() const;
+};
+
+//---------------------------------------------------------------------------
+
 class wxKeyEvent: public wxEvent {
 public:
     wxKeyEvent(int keyEventType);