]> 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 aa8eaf229eb9731065a8474cffd145c543ad046e..e41f06ba4ff3dbff734097fe28944852c2ee9047 100644 (file)
@@ -44,12 +44,19 @@ class WXDLLEXPORT wxStaticText: public wxControl
            const wxString& name = wxStaticTextNameStr);
 
   // accessors
-  void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
-  void SetLabel(const wxString&);
-
+  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