]> git.saurik.com Git - wxWidgets.git/blame - src/generic/panelg.cpp
removed use of p2cstr
[wxWidgets.git] / src / generic / panelg.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
d9506e77
VZ
2// Name: src/generic/panelg.cpp
3// Purpose: wxPanel and the keyboard handling code
4// Author: Julian Smart, Robert Roebling, Vadim Zeitlin
c801d85f
KB
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
d9506e77
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
d9506e77 21 #pragma implementation "panelg.h"
c801d85f
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
d9506e77 28 #pragma hdrstop
c801d85f
KB
29#endif
30
31#ifndef WX_PRECOMP
d9506e77
VZ
32 #include "wx/object.h"
33 #include "wx/font.h"
34 #include "wx/colour.h"
35 #include "wx/settings.h"
36 #include "wx/log.h"
c801d85f
KB
37#endif
38
456bc6d9
VZ
39#include "wx/containr.h"
40#include "wx/panel.h"
c801d85f 41
d9506e77
VZ
42// ----------------------------------------------------------------------------
43// wxWin macros
44// ----------------------------------------------------------------------------
45
51596bcb 46#if wxUSE_EXTENDED_RTTI
73c36334
JS
47WX_DEFINE_FLAGS( wxPanelStyle )
48
3ff066a4 49wxBEGIN_FLAGS( wxPanelStyle )
73c36334
JS
50 // new style border flags, we put them first to
51 // use them for streaming out
3ff066a4
SC
52 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
53 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
54 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
55 wxFLAGS_MEMBER(wxBORDER_RAISED)
56 wxFLAGS_MEMBER(wxBORDER_STATIC)
57 wxFLAGS_MEMBER(wxBORDER_NONE)
ca65c044 58
73c36334 59 // old style border flags
3ff066a4
SC
60 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
61 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
62 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
63 wxFLAGS_MEMBER(wxRAISED_BORDER)
64 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 65 wxFLAGS_MEMBER(wxBORDER)
73c36334
JS
66
67 // standard window styles
3ff066a4
SC
68 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
69 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
70 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
71 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 72 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
73 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
74 wxFLAGS_MEMBER(wxVSCROLL)
75 wxFLAGS_MEMBER(wxHSCROLL)
73c36334 76
3ff066a4 77wxEND_FLAGS( wxPanelStyle )
73c36334 78
51596bcb
SC
79IMPLEMENT_DYNAMIC_CLASS_XTI(wxPanel, wxWindow,"wx/panel.h")
80
3ff066a4 81wxBEGIN_PROPERTIES_TABLE(wxPanel)
af498247 82 wxPROPERTY_FLAGS( WindowStyle , wxPanelStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
066f1b7a 83// style wxTAB_TRAVERSAL
3ff066a4 84wxEND_PROPERTIES_TABLE()
51596bcb 85
3ff066a4
SC
86wxBEGIN_HANDLERS_TABLE(wxPanel)
87wxEND_HANDLERS_TABLE()
51596bcb 88
ca65c044 89wxCONSTRUCTOR_5( wxPanel , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
51596bcb
SC
90
91#else
c801d85f 92IMPLEMENT_DYNAMIC_CLASS(wxPanel, wxWindow)
51596bcb 93#endif
c801d85f
KB
94
95BEGIN_EVENT_TABLE(wxPanel, wxWindow)
456bc6d9
VZ
96 EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged)
97
98 EVT_SIZE(wxPanel::OnSize)
99
100 WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel)
c801d85f
KB
101END_EVENT_TABLE()
102
d9506e77
VZ
103// ============================================================================
104// implementation
105// ============================================================================
106
6b55490a 107WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel)
456bc6d9 108
d9506e77
VZ
109// ----------------------------------------------------------------------------
110// wxPanel creation
111// ----------------------------------------------------------------------------
c801d85f 112
edccf428 113void wxPanel::Init()
c801d85f 114{
9948d31f 115 m_container.SetContainerWindow(this);
c801d85f
KB
116}
117
debe6624 118bool wxPanel::Create(wxWindow *parent, wxWindowID id,
90c3bdac
VZ
119 const wxPoint& pos,
120 const wxSize& size,
121 long style,
122 const wxString& name)
c801d85f 123{
e736b21a
VZ
124 if ( !wxWindow::Create(parent, id, pos, size, style, name) )
125 return false;
126
fc55f961
VS
127 // so that non-solid background renders correctly under GTK+:
128 SetThemeEnabled(true);
ca65c044 129
e736b21a 130 return true;
c801d85f
KB
131}
132
456bc6d9
VZ
133wxPanel::~wxPanel()
134{
456bc6d9
VZ
135}
136
19193a2c
KB
137void wxPanel::InitDialog()
138{
139 wxInitDialogEvent event(GetId());
140 event.SetEventObject(this);
141 GetEventHandler()->ProcessEvent(event);
142}
143
d9506e77 144// ----------------------------------------------------------------------------
c40ce5ce 145// event handlers
d9506e77
VZ
146// ----------------------------------------------------------------------------
147
c801d85f
KB
148// Responds to colour changes, and passes event on to children.
149void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event)
150{
a756f210 151 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
c801d85f
KB
152 Refresh();
153
154 // Propagate the event to the non-top-level children
155 wxWindow::OnSysColourChanged(event);
156}
157
28edd9ef 158void wxPanel::OnSize(wxSizeEvent& event)
d9506e77 159{
d9506e77
VZ
160 if (GetAutoLayout())
161 Layout();
987263fe 162#if wxUSE_CONSTRAINTS
879dcac2
DW
163#if defined(__WXPM__)
164 else
165 {
2b5f62a0
VZ
166 // Need to properly move child windows under OS/2
167
879dcac2
DW
168 PSWP pWinSwp = GetSwp();
169
170 if (pWinSwp->cx == 0 && pWinSwp->cy == 0 && pWinSwp->fl == 0)
2b5f62a0 171 {
879dcac2 172 // Uninitialized
2b5f62a0 173
879dcac2 174 ::WinQueryWindowPos(GetHWND(), pWinSwp);
ca65c044
WS
175 }
176 else
879dcac2
DW
177 {
178 SWP vSwp;
179 int nYDiff;
180
181 ::WinQueryWindowPos(GetHWND(), &vSwp);
182 nYDiff = pWinSwp->cy - vSwp.cy;
183 MoveChildren(nYDiff);
184 pWinSwp->cx = vSwp.cx;
185 pWinSwp->cy = vSwp.cy;
186 }
187 }
188#endif
2b5f62a0
VZ
189#endif // wxUSE_CONSTRAINTS
190
28edd9ef 191 event.Skip();
d9506e77
VZ
192}
193