]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/stattext.h
Fixed new lintian warnings.
[wxWidgets.git] / include / wx / msw / stattext.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stattext.h
3 // Purpose: wxStaticText class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_STATTEXT_H_
13 #define _WX_STATTEXT_H_
14
15 #ifdef __GNUG__
16 #pragma interface "stattext.h"
17 #endif
18
19 #include "wx/control.h"
20
21 class WXDLLEXPORT wxStaticText : public wxControl
22 {
23 DECLARE_DYNAMIC_CLASS(wxStaticText)
24
25 public:
26 wxStaticText() { }
27
28 wxStaticText(wxWindow *parent,
29 wxWindowID id,
30 const wxString& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = 0,
34 const wxString& name = wxStaticTextNameStr)
35 {
36 Create(parent, id, label, pos, size, style, name);
37 }
38
39 bool Create(wxWindow *parent,
40 wxWindowID id,
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxString& name = wxStaticTextNameStr);
46
47 // accessors
48 void SetLabel(const wxString& label);
49 bool SetFont( const wxFont &font );
50
51 // overriden base class virtuals
52 virtual bool AcceptsFocus() const { return FALSE; }
53
54 // callbacks
55 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
56
57 protected:
58 virtual wxSize DoGetBestSize() const;
59 };
60
61 #endif
62 // _WX_STATTEXT_H_