X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/777105f2b7f91a17fab7d9c4808e282547bb9393..0944fceb987def04dc89d03d58c35793d0ecdfed:/include/wx/gtk1/textctrl.h diff --git a/include/wx/gtk1/textctrl.h b/include/wx/gtk1/textctrl.h index 4d71583c8d..b55dc917c9 100644 --- a/include/wx/gtk1/textctrl.h +++ b/include/wx/gtk1/textctrl.h @@ -19,7 +19,7 @@ // wxTextCtrl //----------------------------------------------------------------------------- -class wxTextCtrl: public wxTextCtrlBase +class WXDLLIMPEXP_CORE wxTextCtrl: public wxTextCtrlBase { public: wxTextCtrl() { Init(); } @@ -32,6 +32,8 @@ public: const wxValidator& validator = wxDefaultValidator, const wxString &name = wxTextCtrlNameStr); + ~wxTextCtrl(); + bool Create(wxWindow *parent, wxWindowID id, const wxString &value = wxEmptyString, @@ -224,6 +226,11 @@ private: // number of calls to Freeze() minus number of calls to Thaw() unsigned int m_frozenness; + + // For wxTE_AUTO_URL + void OnUrlMouseEvent(wxMouseEvent&); + GdkCursor *m_gdkHandCursor; + GdkCursor *m_gdkXTermCursor; #endif DECLARE_EVENT_TABLE()