]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/events.i
compilation error fix (trailing comma in an enum)
[wxWidgets.git] / wxPython / src / events.i
index 5d2bd07da5272c9765b9f43fd9078791b0889350..cd34979002fbec314b4d1e55519fddf03562ff79 100644 (file)
@@ -202,6 +202,21 @@ public:
 
 //---------------------------------------------------------------------------
 
+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);