]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/generic/panelg.h
Only compile wxStd{Input,Output}Stream if wxUSE_STREAMS==1.
[wxWidgets.git] / include / wx / generic / panelg.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/generic/panelg.h
3// Purpose: wxPanel: a container for child controls
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_GENERIC_PANEL_H_
13#define _WX_GENERIC_PANEL_H_
14
15// ----------------------------------------------------------------------------
16// headers and forward declarations
17// ----------------------------------------------------------------------------
18
19#include "wx/window.h"
20#include "wx/containr.h"
21
22class WXDLLIMPEXP_FWD_CORE wxControlContainer;
23
24extern WXDLLIMPEXP_DATA_CORE(const char) wxPanelNameStr[];
25
26// ----------------------------------------------------------------------------
27// wxPanel contains other controls and implements TAB traversal between them
28// ----------------------------------------------------------------------------
29
30class WXDLLIMPEXP_CORE wxPanel : public wxWindow
31{
32public:
33 wxPanel() { Init(); }
34
35 // Old-style constructor (no default values for coordinates to avoid
36 // ambiguity with the new one)
37 wxPanel(wxWindow *parent,
38 int x, int y, int width, int height,
39 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
40 const wxString& name = wxPanelNameStr)
41 {
42 Init();
43
44 Create(parent, wxID_ANY, wxPoint(x, y), wxSize(width, height), style, name);
45 }
46
47 // Constructor
48 wxPanel(wxWindow *parent,
49 wxWindowID winid = wxID_ANY,
50 const wxPoint& pos = wxDefaultPosition,
51 const wxSize& size = wxDefaultSize,
52 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
53 const wxString& name = wxPanelNameStr)
54 {
55 Init();
56
57 Create(parent, winid, pos, size, style, name);
58 }
59
60 // Pseudo ctor
61 bool Create(wxWindow *parent,
62 wxWindowID winid = wxID_ANY,
63 const wxPoint& pos = wxDefaultPosition,
64 const wxSize& size = wxDefaultSize,
65 long style = wxTAB_TRAVERSAL | wxNO_BORDER,
66 const wxString& name = wxPanelNameStr);
67
68 virtual ~wxPanel();
69
70 // implementation from now on
71 // --------------------------
72
73 virtual void InitDialog();
74
75#ifdef __WXUNIVERSAL__
76 virtual bool IsCanvasWindow() const { return true; }
77#endif
78
79#ifdef __WXMSW__
80 // This is a hack to support inheriting of background through child
81 // wxPanel: at least wxNotebook needs this under wxMSW as its background
82 // should apply to its children which are usually wxPanels which normally
83 // don't have a transparent background. Calling this function allows to
84 // change this for the panels which are used as notebook pages.
85 void MSWSetTransparentBackground(bool isTransparent = true)
86 {
87 m_isTransparent = isTransparent;
88 }
89
90 virtual bool HasTransparentBackground() { return m_isTransparent; }
91#endif // __WXMSW__
92
93 WX_DECLARE_CONTROL_CONTAINER();
94
95protected:
96 // common part of all ctors
97 void Init();
98
99 // choose the default border for this window
100 virtual wxBorder GetDefaultBorder() const { return wxWindowBase::GetDefaultBorder(); }
101
102private:
103#ifdef __WXMSW__
104 bool m_isTransparent;
105#endif // __WXMSW__
106
107 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPanel)
108 DECLARE_EVENT_TABLE()
109};
110
111#endif
112 // _WX_GENERIC_PANEL_H_