]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/textctrl.h
fix for SetValue() losing effect after focus change (patch 1150911)
[wxWidgets.git] / include / wx / gtk1 / textctrl.h
index 4d71583c8de7af214750cee0327117f14d6e4f4b..6a52dba4f30ded50bba820a73ed4b849613a3492 100644 (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()