]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_textctrl.i
Added wx.combo.BitmapComboBox
[wxWidgets.git] / wxPython / src / _textctrl.i
index d5ccdbab89866e2db943e328421cc16e7bc995fc..630ba209ba9647fdc337e90d3292b564b49bd417 100644 (file)
@@ -110,7 +110,9 @@ enum wxTextCtrlHitTestResult
 
 enum {
     wxOutOfRangeTextCoord,
-    wxInvalidTextCoord
+    wxInvalidTextCoord,
+
+    wxTEXT_TYPE_ANY
 };
 
 //---------------------------------------------------------------------------
@@ -225,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;
@@ -253,8 +259,8 @@ public:
     virtual void Remove(long from, long to);
 
     // load/save the controls contents from/to the file
-    virtual bool LoadFile(const wxString& file);
-    virtual bool SaveFile(const wxString& file = wxPyEmptyString);
+    virtual bool LoadFile(const wxString& file, int fileType = wxTEXT_TYPE_ANY);
+    virtual bool SaveFile(const wxString& file = wxPyEmptyString, int fileType = wxTEXT_TYPE_ANY);
 
     // sets/clears the dirty flag
     virtual void MarkDirty();
@@ -338,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);