]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/stattext.h
Beginnings of BLOB support - Do not use BLOBs yet though, as they do not work, but...
[wxWidgets.git] / include / wx / mac / stattext.h
index 1117b6fc9aef7db2d0129785ea5fc6c3fd9a2eb4..e41f06ba4ff3dbff734097fe28944852c2ee9047 100644 (file)
@@ -44,11 +44,19 @@ class WXDLLEXPORT wxStaticText: public wxControl
            const wxString& name = wxStaticTextNameStr);
 
   // accessors
-  void SetLabel(const wxString& , bool resize );
-  void SetLabel( const wxString &str ) { SetLabel( str , true ) ; }
+  void SetLabel( const wxString &str ) ;
   // operations
   virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
   virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
+  // events
+  void OnPaint( wxPaintEvent &event ) ;
+  void OnDraw( wxDC &dc ) ;
+  wxSize DoGetBestSize() const ;
+  virtual bool AcceptsFocus() const { return FALSE; }
+ private :
+       wxString        m_label ;
+
+   DECLARE_EVENT_TABLE()
 };
 
 #endif