X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fa2f57be4db838388659fe48dbf5546daf5364f8..2fd716136a961ab6038996343e42257c2d81aac2:/include/wx/msw/textctrl.h diff --git a/include/wx/msw/textctrl.h b/include/wx/msw/textctrl.h index f5fc2fb35b..1da13fffd2 100644 --- a/include/wx/msw/textctrl.h +++ b/include/wx/msw/textctrl.h @@ -12,7 +12,7 @@ #ifndef _WX_TEXTCTRL_H_ #define _WX_TEXTCTRL_H_ -class WXDLLEXPORT wxTextCtrl : public wxTextCtrlBase +class WXDLLIMPEXP_CORE wxTextCtrl : public wxTextCtrlBase { public: // creation @@ -71,8 +71,6 @@ public: // implement base class pure virtuals // ---------------------------------- - virtual bool DoLoadFile(const wxString& file, int fileType); - virtual bool IsModified() const; virtual void MarkDirty(); virtual void DiscardEdits(); @@ -187,6 +185,8 @@ protected: // common part of all ctors void Init(); + virtual bool DoLoadFile(const wxString& file, int fileType); + // creates the control of appropriate class (plain or rich edit) with the // styles corresponding to m_windowStyle // @@ -198,10 +198,6 @@ protected: virtual void DoSetValue(const wxString &value, int flags = 0); - // implement wxTextEntry pure virtual: it implements all the operations for - // the simple EDIT controls - virtual WXHWND GetEditHWND() const { return m_hWnd; } - // return true if this control has a user-set limit on amount of text (i.e. // the limit is due to a previous call to SetMaxLength() and not built in) bool HasSpaceLimit(unsigned int *len) const; @@ -230,9 +226,6 @@ protected: // set the selection (possibly without scrolling the caret into view) void DoSetSelection(long from, long to, int flags); - // return true if there is a non empty selection in the control - bool HasSelection() const; - // get the length of the line containing the character at the given // position long GetLengthOfLineContainingPos(long pos) const; @@ -253,12 +246,18 @@ protected: // text ourselves: we want this to be exactly 1 int m_updatesCount; +private: virtual void EnableTextChangedEvents(bool enable) { m_updatesCount = enable ? -1 : -2; } -private: + // implement wxTextEntry pure virtual: it implements all the operations for + // the simple EDIT controls + virtual WXHWND GetEditHWND() const { return m_hWnd; } + + void OnKeyDown(wxKeyEvent& event); + DECLARE_EVENT_TABLE() DECLARE_DYNAMIC_CLASS_NO_COPY(wxTextCtrl)