- wxString GetValue() const;
- void SetValue(const wxString& value);
-
- void Copy();
- void Cut();
- void Paste();
- bool CanCopy() const;
- bool CanCut() const;
- bool CanPaste() const;
- void SetInsertionPoint( long pos );
- void SetInsertionPointEnd() { SetInsertionPoint( -1 ); }
- long GetInsertionPoint() const;
- virtual wxTextPos GetLastPosition() const;
- void Remove(long from, long to) { Replace(from, to, wxEmptyString); }
- void Replace( long from, long to, const wxString& value );
- void SetSelection( long from, long to );
- void GetSelection( long* from, long* to ) const;
- void SetEditable( bool editable );
- void Undo() ;
- void Redo() ;
- bool CanUndo() const;
- bool CanRedo() const;
- void SelectAll();
- bool IsEditable() const ;
- bool HasSelection() const ;
-
- // implementation