textctrl is now coded.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,139 +19,172 @@ public:
|
|||||||
// --------
|
// --------
|
||||||
|
|
||||||
wxTextCtrl();
|
wxTextCtrl();
|
||||||
wxTextCtrl(wxWindow *parent, wxWindowID id,
|
wxTextCtrl( wxWindow* pParent
|
||||||
const wxString& value = wxEmptyString,
|
,wxWindowID vId
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
,const wxString& rsValue = wxEmptyString
|
||||||
const wxSize& size = wxDefaultSize,
|
,const wxPoint& rPos = wxDefaultPosition
|
||||||
long style = 0,
|
,const wxSize& rSize = wxDefaultSize
|
||||||
|
,long lStyle = 0
|
||||||
#if wxUSE_VALIDATORS
|
#if wxUSE_VALIDATORS
|
||||||
const wxValidator& validator = wxDefaultValidator,
|
,const wxValidator& rValidator = wxDefaultValidator
|
||||||
#endif
|
#endif
|
||||||
const wxString& name = wxTextCtrlNameStr)
|
,const wxString& rsName = wxTextCtrlNameStr
|
||||||
|
)
|
||||||
{
|
{
|
||||||
Create(parent, id, value, pos, size, style, validator, name);
|
Create(pParent, vId, rsValue, rPos, rSize, lStyle, rValidator, rsName);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Create(wxWindow *parent, wxWindowID id,
|
bool Create( wxWindow* pParent
|
||||||
const wxString& value = wxEmptyString,
|
,wxWindowID vId
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
,const wxString& rsValue = wxEmptyString
|
||||||
const wxSize& size = wxDefaultSize,
|
,const wxPoint& rPos = wxDefaultPosition
|
||||||
long style = 0,
|
,const wxSize& rSize = wxDefaultSize
|
||||||
|
,long lStyle = 0
|
||||||
#if wxUSE_VALIDATORS
|
#if wxUSE_VALIDATORS
|
||||||
const wxValidator& validator = wxDefaultValidator,
|
,const wxValidator& rValidator = wxDefaultValidator
|
||||||
#endif
|
#endif
|
||||||
const wxString& name = wxTextCtrlNameStr);
|
,const wxString& rsName = wxTextCtrlNameStr
|
||||||
|
);
|
||||||
|
|
||||||
// implement base class pure virtuals
|
// implement base class pure virtuals
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
||||||
virtual wxString GetValue() const;
|
virtual wxString GetValue(void) const;
|
||||||
virtual void SetValue(const wxString& value);
|
virtual void SetValue(const wxString& rsValue);
|
||||||
|
|
||||||
virtual int GetLineLength(long lineNo) const;
|
virtual int GetLineLength(long nLineNo) const;
|
||||||
virtual wxString GetLineText(long lineNo) const;
|
virtual wxString GetLineText(long nLineNo) const;
|
||||||
virtual int GetNumberOfLines() const;
|
virtual int GetNumberOfLines(void) const;
|
||||||
|
|
||||||
virtual bool IsModified() const;
|
virtual bool IsModified(void) const;
|
||||||
virtual bool IsEditable() const;
|
virtual bool IsEditable(void) const;
|
||||||
|
|
||||||
// If the return values from and to are the same, there is no selection.
|
// If the return values from and to are the same, there is no selection.
|
||||||
virtual void GetSelection(long* from, long* to) const;
|
virtual void GetSelection( long* pFrom
|
||||||
|
,long* pTo
|
||||||
|
) const;
|
||||||
|
|
||||||
// operations
|
// operations
|
||||||
// ----------
|
// ----------
|
||||||
|
|
||||||
// editing
|
// editing
|
||||||
virtual void Clear();
|
virtual void Clear(void);
|
||||||
virtual void Replace(long from, long to, const wxString& value);
|
virtual void Replace( long lFrom
|
||||||
virtual void Remove(long from, long to);
|
,long lTo
|
||||||
|
,const wxString& rsValue
|
||||||
|
);
|
||||||
|
virtual void Remove( long lFrom
|
||||||
|
,long lTo
|
||||||
|
);
|
||||||
|
|
||||||
// load the controls contents from the file
|
// load the controls contents from the file
|
||||||
virtual bool LoadFile(const wxString& file);
|
virtual bool LoadFile(const wxString& rsFile);
|
||||||
|
|
||||||
// clears the dirty flag
|
// clears the dirty flag
|
||||||
virtual void DiscardEdits();
|
virtual void DiscardEdits(void);
|
||||||
|
|
||||||
// writing text inserts it at the current position, appending always
|
// writing text inserts it at the current position, appending always
|
||||||
// inserts it at the end
|
// inserts it at the end
|
||||||
virtual void WriteText(const wxString& text);
|
virtual void WriteText(const wxString& rsText);
|
||||||
virtual void AppendText(const wxString& text);
|
virtual void AppendText(const wxString& rsText);
|
||||||
|
|
||||||
// translate between the position (which is just an index in the text ctrl
|
// 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
|
// considering all its contents as a single strings) and (x, y) coordinates
|
||||||
// which represent column and line.
|
// which represent column and line.
|
||||||
virtual long XYToPosition(long x, long y) const;
|
virtual long XYToPosition( long lX
|
||||||
virtual bool PositionToXY(long pos, long *x, long *y) const;
|
,long lY
|
||||||
|
) const;
|
||||||
|
virtual bool PositionToXY( long lPos
|
||||||
|
,long* plX
|
||||||
|
,long* plY
|
||||||
|
) const;
|
||||||
|
|
||||||
virtual void ShowPosition(long pos);
|
virtual void ShowPosition(long lPos);
|
||||||
|
|
||||||
// Clipboard operations
|
// Clipboard operations
|
||||||
virtual void Copy();
|
virtual void Copy(void);
|
||||||
virtual void Cut();
|
virtual void Cut(void);
|
||||||
virtual void Paste();
|
virtual void Paste(void);
|
||||||
|
|
||||||
virtual bool CanCopy() const;
|
virtual bool CanCopy(void) const;
|
||||||
virtual bool CanCut() const;
|
virtual bool CanCut(void) const;
|
||||||
virtual bool CanPaste() const;
|
virtual bool CanPaste(void) const;
|
||||||
|
|
||||||
// Undo/redo
|
// Undo/redo
|
||||||
virtual void Undo();
|
virtual void Undo(void);
|
||||||
virtual void Redo();
|
virtual void Redo(void);
|
||||||
|
|
||||||
virtual bool CanUndo() const;
|
virtual bool CanUndo(void) const;
|
||||||
virtual bool CanRedo() const;
|
virtual bool CanRedo(void) const;
|
||||||
|
|
||||||
// Insertion point
|
// Insertion point
|
||||||
virtual void SetInsertionPoint(long pos);
|
virtual void SetInsertionPoint(long lPos);
|
||||||
virtual void SetInsertionPointEnd();
|
virtual void SetInsertionPointEnd(void);
|
||||||
virtual long GetInsertionPoint() const;
|
virtual long GetInsertionPoint(void) const;
|
||||||
virtual long GetLastPosition() const;
|
virtual long GetLastPosition(void) const;
|
||||||
|
|
||||||
virtual void SetSelection(long from, long to);
|
virtual void SetSelection( long lFrom
|
||||||
virtual void SetEditable(bool editable);
|
,long lTo
|
||||||
|
);
|
||||||
|
virtual void SetEditable(bool bEditable);
|
||||||
|
|
||||||
|
//
|
||||||
// Implementation from now on
|
// Implementation from now on
|
||||||
// --------------------------
|
// --------------------------
|
||||||
|
//
|
||||||
|
virtual void Command(wxCommandEvent& rEvent);
|
||||||
|
virtual bool OS2Command( WXUINT uParam
|
||||||
|
,WXWORD wId
|
||||||
|
);
|
||||||
|
|
||||||
virtual void Command(wxCommandEvent& event);
|
virtual WXHBRUSH OnCtlColor( WXHDC hDC
|
||||||
virtual bool OS2Command(WXUINT param, WXWORD id);
|
,WXHWND pWnd
|
||||||
|
,WXUINT nCtlColor
|
||||||
|
,WXUINT message
|
||||||
|
,WXWPARAM wParam
|
||||||
|
,WXLPARAM lParam
|
||||||
|
);
|
||||||
|
|
||||||
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
virtual bool SetBackgroundColour(const wxColour& colour);
|
||||||
WXUINT message, WXWPARAM wParam,
|
virtual bool SetForegroundColour(const wxColour& colour);
|
||||||
WXLPARAM lParam);
|
|
||||||
|
|
||||||
virtual void AdoptAttributesFromHWND();
|
virtual void AdoptAttributesFromHWND(void);
|
||||||
virtual void SetupColours();
|
virtual void SetupColours(void);
|
||||||
|
|
||||||
virtual bool AcceptsFocus() const;
|
virtual bool AcceptsFocus(void) const;
|
||||||
|
|
||||||
// callbacks
|
// callbacks
|
||||||
void OnDropFiles(wxDropFilesEvent& event);
|
void OnDropFiles(wxDropFilesEvent& rEvent);
|
||||||
void OnChar(wxKeyEvent& event); // Process 'enter' if required
|
void OnChar(wxKeyEvent& rEvent); // Process 'enter' if required
|
||||||
|
|
||||||
void OnCut(wxCommandEvent& event);
|
void OnCut(wxCommandEvent& rEvent);
|
||||||
void OnCopy(wxCommandEvent& event);
|
void OnCopy(wxCommandEvent& rEvent);
|
||||||
void OnPaste(wxCommandEvent& event);
|
void OnPaste(wxCommandEvent& rEvent);
|
||||||
void OnUndo(wxCommandEvent& event);
|
void OnUndo(wxCommandEvent& rEvent);
|
||||||
void OnRedo(wxCommandEvent& event);
|
void OnRedo(wxCommandEvent& rEvent);
|
||||||
|
|
||||||
void OnUpdateCut(wxUpdateUIEvent& event);
|
void OnUpdateCut(wxUpdateUIEvent& rEvent);
|
||||||
void OnUpdateCopy(wxUpdateUIEvent& event);
|
void OnUpdateCopy(wxUpdateUIEvent& rEvent);
|
||||||
void OnUpdatePaste(wxUpdateUIEvent& event);
|
void OnUpdatePaste(wxUpdateUIEvent& rEvent);
|
||||||
void OnUpdateUndo(wxUpdateUIEvent& event);
|
void OnUpdateUndo(wxUpdateUIEvent& rEvent);
|
||||||
void OnUpdateRedo(wxUpdateUIEvent& event);
|
void OnUpdateRedo(wxUpdateUIEvent& rEvent);
|
||||||
|
|
||||||
|
inline bool IsMLE(void) {return m_bIsMLE;}
|
||||||
|
inline void SetMLE(bool bIsMLE) {m_bIsMLE = bIsMLE;}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
//
|
||||||
// call this to increase the size limit (will do nothing if the current
|
// call this to increase the size limit (will do nothing if the current
|
||||||
// limit is big enough)
|
// limit is big enough)
|
||||||
void AdjustSpaceLimit();
|
//
|
||||||
|
void AdjustSpaceLimit(void);
|
||||||
virtual wxSize DoGetBestSize() const;
|
virtual wxSize DoGetBestSize(void) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
bool m_bIsMLE;
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
DECLARE_DYNAMIC_CLASS(wxTextCtrl)
|
DECLARE_DYNAMIC_CLASS(wxTextCtrl)
|
||||||
};
|
}; // end of CLASS wxTextCtrl
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// _WX_TEXTCTRL_H_
|
// _WX_TEXTCTRL_H_
|
||||||
|
Reference in New Issue
Block a user