X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/05adb9d2fdc40d8620730be490bf406b8e367cf8..05159a2750ed2cc5945a85bc5fc6849ad1a30e75:/include/wx/mac/textctrl.h?ds=sidebyside diff --git a/include/wx/mac/textctrl.h b/include/wx/mac/textctrl.h index d7f946d3d1..5c2c753c43 100644 --- a/include/wx/mac/textctrl.h +++ b/include/wx/mac/textctrl.h @@ -12,7 +12,7 @@ #ifndef _WX_TEXTCTRL_H_ #define _WX_TEXTCTRL_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "textctrl.h" #endif @@ -30,6 +30,7 @@ public: // creation // -------- wxTextCtrl(); + ~wxTextCtrl(); inline wxTextCtrl(wxWindow *parent, wxWindowID id, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, @@ -77,6 +78,16 @@ public: // clears the dirty flag virtual void DiscardEdits(); + // set the max number of characters which may be entered in a single line + // text control + virtual void SetMaxLength(unsigned long len) ; + + // text control under some platforms supports the text styles: these + // methods allow to apply the given text style to the given selection or to + // set/get the style which will be used for all appended text + virtual bool SetStyle(long start, long end, const wxTextAttr& style); + virtual bool SetDefaultStyle(const wxTextAttr& style); + // writing text inserts it at the current position, appending always // inserts it at the end virtual void WriteText(const wxString& text); @@ -141,9 +152,21 @@ public: void OnUpdateRedo(wxUpdateUIEvent& event); virtual bool MacCanFocus() const { return true ; } - + virtual bool MacSetupCursor( const wxPoint& pt ) ; + + virtual void MacSuperShown( bool show ) ; + virtual bool Show(bool show = TRUE) ; + protected: virtual wxSize DoGetBestSize() const; + + bool m_editable ; + // one of the following objects is used for representation, the other one is NULL + void* m_macTE ; + void* m_macTXN ; + void* m_macTXNvars ; + bool m_macUsesTXN ; + unsigned long m_maxLength ; DECLARE_EVENT_TABLE() };