]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: statbox.h | |
3 | // Purpose: wxStaticBox 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_MSW_STATBOX_H_ | |
13 | #define _WX_MSW_STATBOX_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "statbox.h" | |
17 | #endif | |
18 | ||
19 | // Group box | |
20 | class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase | |
21 | { | |
22 | public: | |
23 | wxStaticBox() { } | |
24 | ||
25 | wxStaticBox(wxWindow *parent, wxWindowID id, | |
26 | const wxString& label, | |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
29 | long style = 0, | |
30 | const wxString& name = wxStaticBoxNameStr) | |
31 | { | |
32 | Create(parent, id, label, pos, size, style, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, wxWindowID id, | |
36 | const wxString& label, | |
37 | const wxPoint& pos = wxDefaultPosition, | |
38 | const wxSize& size = wxDefaultSize, | |
39 | long style = 0, | |
40 | const wxString& name = wxStaticBoxNameStr); | |
41 | ||
42 | protected: | |
43 | virtual wxSize DoGetBestSize() const; | |
44 | ||
45 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
46 | virtual WXHBRUSH MSWGetBgBrushForSelf(wxWindow *parent, WXHDC hDC); | |
47 | ||
48 | ||
49 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticBox) | |
50 | }; | |
51 | ||
52 | #endif // _WX_MSW_STATBOX_H_ | |
53 |