Displaying 1 result from an estimated 1 matches for "evtmous".
Did you mean:
evtmouse
2006 Dec 20
0
[790] trunk/wxruby2/swig/classes: Added TextUrlEvent class and EvtHandler mapping
...6 @@
</span><ins>+// Copyright 2004-2006 by Kevin Smith
+// released under the MIT-style wxruby2 license
+
+#if !defined(_wxTextUrlEvent_h_)
+#define _wxTextUrlEvent_h_
+
+class wxTextUrlEvent : public wxCommandEvent
+{
+public:
+ wxTextUrlEvent(int winid, const wxMouseEvent& evtMouse,
+ long start, long end)
+ : wxCommandEvent(wxEVT_COMMAND_TEXT_URL, winid)
+ , m_evtMouse(evtMouse), m_start(start), m_end(end)
+ { }
+
+ const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; }
+ long GetURLStart() const { return m_start; }...