]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/statbox.h
wxTreeCtrl has colours and fonts too now
[wxWidgets.git] / include / wx / msw / statbox.h
... / ...
CommitLineData
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_STATBOX_H_
13#define _WX_STATBOX_H_
14
15#ifdef __GNUG__
16 #pragma interface "statbox.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
22
23// Group box
24class WXDLLEXPORT wxStaticBox : public wxControl
25{
26DECLARE_DYNAMIC_CLASS(wxStaticBox)
27
28public:
29 wxStaticBox() { }
30
31 wxStaticBox(wxWindow *parent, wxWindowID id,
32 const wxString& label,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = 0,
36 const wxString& name = wxStaticBoxNameStr)
37 {
38 Create(parent, id, label, pos, size, style, name);
39 }
40
41 bool Create(wxWindow *parent, wxWindowID id,
42 const wxString& label,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = 0,
46 const wxString& name = wxStaticBoxNameStr);
47
48 // implementation from now on
49 // --------------------------
50
51 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
52
53 // overriden base class virtuals
54 virtual bool AcceptsFocus() const { return FALSE; }
55
56protected:
57 virtual wxSize DoGetBestSize() const;
58};
59
60#endif
61 // _WX_STATBOX_H_