]> git.saurik.com Git - wxWidgets.git/commitdiff
IsEmpty, ChangeValue, etc.
authorRobin Dunn <robin@alldunn.com>
Mon, 9 Oct 2006 02:37:33 +0000 (02:37 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 9 Oct 2006 02:37:33 +0000 (02:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41775 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_textctrl.i

index 20b89a9a235292799287ab504a9f97f2678dadab..630ba209ba9647fdc337e90d3292b564b49bd417 100644 (file)
@@ -227,6 +227,10 @@ public:
     virtual wxString GetValue() const;
     virtual void SetValue(const wxString& value);
 
+    virtual bool IsEmpty() const;
+
+    virtual void ChangeValue(const wxString &value);
+    
     virtual wxString GetRange(long from, long to) const;
 
     virtual int GetLineLength(long lineNo) const;
@@ -340,6 +344,9 @@ the client area origin nor scrolling. ", "",
     virtual void SelectAll();
     virtual void SetEditable(bool editable);
 
+    // generate the wxEVT_COMMAND_TEXT_UPDATED event, like SetValue() does
+    void SendTextUpdatedEvent();
+
 #ifdef __WXMSW__
     // Caret handling (Windows only)
     bool ShowNativeCaret(bool show = true);