]> git.saurik.com Git - wxWidgets.git/blame - include/wx/univ/statbox.h
Change SetStringSelection to return bool like in other classes and ports
[wxWidgets.git] / include / wx / univ / statbox.h
CommitLineData
1e6feb95
VZ
1//////////////////////////////////////////////////////////////////////////////
2// Name: wx/univ/statbox.h
3// Purpose: wxStaticBox declaration
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 15.08.00
7// RCS-ID: $Id$
442b35b5 8// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
371a5b4e 9// Licence: wxWindows licence
1e6feb95
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UNIV_STATBOX_H_
13#define _WX_UNIV_STATBOX_H_
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
a3870b2f 16 #pragma interface "univstatbox.h"
1e6feb95
VZ
17#endif
18
19class WXDLLEXPORT wxStaticBox : public wxStaticBoxBase
20{
21public:
22 wxStaticBox() { }
23
24 wxStaticBox(wxWindow *parent,
25 const wxString& label,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize)
28 {
29 Create(parent, -1, label, pos, size);
30 }
31
32 wxStaticBox(wxWindow *parent, wxWindowID id,
33 const wxString& label,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize,
36 long style = 0,
37 const wxString& name = wxStaticBoxNameStr)
38 {
39 Create(parent, id, label, pos, size, style, name);
40 }
41
42 bool Create(wxWindow *parent,
43 wxWindowID id,
44 const wxString& label,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = 0,
48 const wxString& name = wxStaticBoxNameStr);
49
50 // the origin of the static box is inside the border and under the label:
51 // take account of this
52 virtual wxPoint GetBoxAreaOrigin() const;
53
193e19cf
RR
54 virtual bool HasTransparentBackground() { return TRUE; }
55
1e6feb95
VZ
56protected:
57 // draw the control
58 virtual void DoDraw(wxControlRenderer *renderer);
59
60 // get the size of the border
61 wxRect GetBorderGeometry() const;
62
30827629
VZ
63 // returning TRUE from here ensures that we act as a container window for
64 // our children
65 virtual bool IsStaticBox() const { return TRUE; }
66
1e6feb95
VZ
67private:
68 DECLARE_DYNAMIC_CLASS(wxStaticBox)
69};
70
71#endif // _WX_UNIV_STATBOX_H_