class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase
{
public:
- // creation
- // --------
-
wxTextCtrl();
wxTextCtrl( wxWindow* pParent
,wxWindowID vId
,const wxString& rsName = wxTextCtrlNameStr
);
- // implement base class pure virtuals
+ //
+ // Implement base class pure virtuals
// ----------------------------------
-
+ //
virtual wxString GetValue(void) const;
virtual void SetValue(const wxString& rsValue);
virtual bool IsModified(void) const;
virtual bool IsEditable(void) const;
- // If the return values from and to are the same, there is no selection.
virtual void GetSelection( long* pFrom
,long* pTo
) const;
-
- // operations
+ //
+ // Operations
// ----------
-
- // editing
+ //
virtual void Clear(void);
virtual void Replace( long lFrom
,long lTo
,long lTo
);
- // load the controls contents from the file
virtual bool LoadFile(const wxString& rsFile);
- // clears the dirty flag
virtual void DiscardEdits(void);
- // writing text inserts it at the current position, appending always
- // inserts it at the end
virtual void WriteText(const wxString& rsText);
virtual void AppendText(const wxString& rsText);
- // translate between the position (which is just an index in the text ctrl
- // considering all its contents as a single strings) and (x, y) coordinates
- // which represent column and line.
+ virtual bool SetStyle( long lStart
+ ,long lEnd
+ ,const wxTextAttr& rStyle
+ );
virtual long XYToPosition( long lX
,long lY
) const;
virtual void ShowPosition(long lPos);
- // Clipboard operations
virtual void Copy(void);
virtual void Cut(void);
virtual void Paste(void);
virtual bool CanCut(void) const;
virtual bool CanPaste(void) const;
- // Undo/redo
virtual void Undo(void);
virtual void Redo(void);
virtual bool CanUndo(void) const;
virtual bool CanRedo(void) const;
- // Insertion point
virtual void SetInsertionPoint(long lPos);
virtual void SetInsertionPointEnd(void);
virtual long GetInsertionPoint(void) const;
,long lTo
);
virtual void SetEditable(bool bEditable);
+ virtual void SetWindowStyleFlag(long lStyle);
//
// Implementation from now on
//
void AdjustSpaceLimit(void);
virtual wxSize DoGetBestSize(void) const;
+ virtual bool OS2ShouldPreProcessMessage(WXMSG* pMsg);
+ virtual WXDWORD OS2GetStyle( long lStyle
+ ,WXDWORD* dwExstyle
+ ) const;
private:
bool m_bIsMLE;
DECLARE_EVENT_TABLE()