]>
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 JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_STATBOX_H_ |
13 | #define _WX_STATBOX_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "statbox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
32c1cda2 | 21 | WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr; |
2bda0e17 KB |
22 | |
23 | // Group box | |
06b57134 | 24 | class WXDLLEXPORT wxStaticBox : public wxControl |
2bda0e17 | 25 | { |
06b57134 | 26 | DECLARE_DYNAMIC_CLASS(wxStaticBox) |
4438caf4 | 27 | |
06b57134 | 28 | public: |
bfc6fde4 | 29 | wxStaticBox() { } |
2bda0e17 | 30 | |
06b57134 | 31 | wxStaticBox(wxWindow *parent, wxWindowID id, |
c49245f8 VZ |
32 | const wxString& label, |
33 | const wxPoint& pos = wxDefaultPosition, | |
34 | const wxSize& size = wxDefaultSize, | |
35 | long style = 0, | |
36 | const wxString& name = wxStaticBoxNameStr) | |
06b57134 VZ |
37 | { |
38 | Create(parent, id, label, pos, size, style, name); | |
39 | } | |
4438caf4 | 40 | |
06b57134 | 41 | bool Create(wxWindow *parent, wxWindowID id, |
c49245f8 VZ |
42 | const wxString& label, |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, | |
45 | long style = 0, | |
46 | const wxString& name = wxStaticBoxNameStr); | |
4438caf4 VZ |
47 | |
48 | // implementation from now on | |
49 | // -------------------------- | |
50 | ||
06b57134 | 51 | void OnEraseBackground(wxEraseEvent& event); |
4438caf4 | 52 | |
06b57134 | 53 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); |
2bda0e17 | 54 | |
06b57134 VZ |
55 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
56 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
4438caf4 | 57 | |
06b57134 VZ |
58 | // overriden base class virtuals |
59 | virtual bool AcceptsFocus() const { return FALSE; } | |
4438caf4 | 60 | |
bfc6fde4 | 61 | protected: |
4438caf4 | 62 | virtual wxSize DoGetBestSize(); |
bfc6fde4 | 63 | |
06b57134 VZ |
64 | private: |
65 | DECLARE_EVENT_TABLE() | |
2bda0e17 KB |
66 | }; |
67 | ||
68 | #endif | |
bbcdf8bc | 69 | // _WX_STATBOX_H_ |