wxTE_AUTO_URL for wxGTK2 from Mart R. [patch 1126182]

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32159 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Hock
2005-02-19 02:55:32 +00:00
parent f131c6bc04
commit 9440c3d0e9
5 changed files with 629 additions and 1 deletions

View File

@@ -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()