search for: _wxsetcursorevent_h_

Displaying 1 result from an estimated 1 matches for "_wxsetcursorevent_h_".

2007 Jun 28
0
[1094] trunk/wxruby2: Added SetCursorEvent and mapping
...&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2007-06-28 08:35:04 UTC (rev 1094) </span><span class="lines">@@ -0,0 +1,23 @@ </span><ins>+// Copyright 2007 by Kevin Smith +// released under the MIT-style wxruby2 license + +#if !defined(_wxSetCursorEvent_h_) +#define _wxSetCursorEvent_h_ + +class wxSetCursorEvent : public wxEvent +{ +public: + wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0); + wxSetCursorEvent(const wxSetCursorEvent & event); + + wxCoord GetX() const; + wxCoord GetY() const; + + void SetCursor(const wxCursor& cursor); + c...