]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
222594ea | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_STATBOX_H_ |
13 | #define _WX_STATBOX_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
222594ea | 16 | #pragma interface "statbox.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
2bda0e17 | 19 | // Group box |
1e6feb95 | 20 | class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase |
2bda0e17 | 21 | { |
06b57134 | 22 | public: |
bfc6fde4 | 23 | wxStaticBox() { } |
2bda0e17 | 24 | |
06b57134 | 25 | wxStaticBox(wxWindow *parent, wxWindowID id, |
c49245f8 VZ |
26 | const wxString& label, |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
29 | long style = 0, | |
30 | const wxString& name = wxStaticBoxNameStr) | |
06b57134 VZ |
31 | { |
32 | Create(parent, id, label, pos, size, style, name); | |
33 | } | |
4438caf4 | 34 | |
06b57134 | 35 | bool Create(wxWindow *parent, wxWindowID id, |
c49245f8 VZ |
36 | const wxString& label, |
37 | const wxPoint& pos = wxDefaultPosition, | |
38 | const wxSize& size = wxDefaultSize, | |
39 | long style = 0, | |
40 | const wxString& name = wxStaticBoxNameStr); | |
4438caf4 VZ |
41 | |
42 | // implementation from now on | |
43 | // -------------------------- | |
44 | ||
c140b7e7 | 45 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
2bda0e17 | 46 | |
06b57134 VZ |
47 | // overriden base class virtuals |
48 | virtual bool AcceptsFocus() const { return FALSE; } | |
4438caf4 | 49 | |
bfc6fde4 | 50 | protected: |
f68586e5 | 51 | virtual wxSize DoGetBestSize() const; |
1e6feb95 VZ |
52 | |
53 | private: | |
fc7a2a60 | 54 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticBox) |
2bda0e17 KB |
55 | }; |
56 | ||
57 | #endif | |
bbcdf8bc | 58 | // _WX_STATBOX_H_ |