Displaying 1 result from an estimated 1 matches for "m_evtmous".
Did you mean:
m_evtmouse
2006 Dec 20
0
[790] trunk/wxruby2/swig/classes: Added TextUrlEvent class and EvtHandler mapping
...+
+#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; }
+ long GetURLEnd() const { return m_end; }
+
+protected:
+ wxMouseEvent m_evtMouse;
+ long m_start,
+ m_...