]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/stattext.h
suppress (harmless) gcc warning about non-virtual dtor in a class with virtual functions
[wxWidgets.git] / include / wx / mac / carbon / stattext.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: stattext.h
3// Purpose: wxStaticText class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_STATTEXT_H_
13#define _WX_STATTEXT_H_
14
8cf73271
SC
15class WXDLLEXPORT wxStaticText: public wxStaticTextBase
16{
4f305456
SC
17public:
18 wxStaticText() { }
8cf73271 19
4f305456 20 wxStaticText(wxWindow *parent, wxWindowID id,
8cf73271
SC
21 const wxString& label,
22 const wxPoint& pos = wxDefaultPosition,
23 const wxSize& size = wxDefaultSize,
24 long style = 0,
25 const wxString& name = wxStaticTextNameStr)
26 {
27 Create(parent, id, label, pos, size, style, name);
28 }
29
30 bool Create(wxWindow *parent, wxWindowID id,
31 const wxString& label,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = 0,
35 const wxString& name = wxStaticTextNameStr);
36
37 // accessors
38 void SetLabel( const wxString &str ) ;
c0e6c051 39 bool SetFont( const wxFont &font );
8cf73271 40
6f02a879
VZ
41 virtual bool AcceptsFocus() const { return FALSE; }
42
4f305456
SC
43protected :
44
39bc0347
VZ
45 virtual wxString DoGetLabel() const;
46 virtual void DoSetLabel(const wxString& str);
47
8cf73271 48 virtual wxSize DoGetBestSize() const ;
8cf73271 49
4f305456 50 DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticText)
8cf73271
SC
51};
52
53#endif
54 // _WX_STATTEXT_H_