]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/textctrl.h
Toolbar/tooltip udates
[wxWidgets.git] / include / wx / mac / textctrl.h
index d7f946d3d1a6d4e3daef96036bae90e60631f85f..2327eec3d563b5eaeddfad7060ad9d6cfdee61be 100644 (file)
@@ -30,6 +30,7 @@ public:
   // creation
   // --------
   wxTextCtrl();
+  ~wxTextCtrl();
   inline wxTextCtrl(wxWindow *parent, wxWindowID id,
                     const wxString& value = wxEmptyString,
                     const wxPoint& pos = wxDefaultPosition,
@@ -142,8 +143,18 @@ public:
 
        virtual bool MacCanFocus() const { return true ; }
     
+    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 ;
   
   DECLARE_EVENT_TABLE()
 };