]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/stattext.h
Controls will readjust their size and minsize when SetLabel or SetFont
[wxWidgets.git] / include / wx / msw / stattext.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "stattext.h"
17 #endif
18
19 class WXDLLEXPORT wxStaticText : public wxStaticTextBase
20 {
21 public:
22 wxStaticText() { }
23
24 wxStaticText(wxWindow *parent,
25 wxWindowID id,
26 const wxString& label,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = 0,
30 const wxString& name = wxStaticTextNameStr)
31 {
32 Create(parent, id, label, pos, size, style, name);
33 }
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 const wxString& label,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxString& name = wxStaticTextNameStr);
42
43 protected:
44 // implement/override some base class virtuals
45 virtual wxBorder GetDefaultBorder() const;
46 virtual void DoSetSize(int x, int y, int w, int h,
47 int sizeFlags = wxSIZE_AUTO);
48 virtual wxSize DoGetBestSize() const;
49 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const;
50
51 DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticText)
52 };
53
54 #endif
55 // _WX_STATTEXT_H_