]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/panelg.cpp
c36c49c46d2bb3397d4eb1ef64a85582b3c63488
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/panelg.cpp
3 // Purpose: wxPanel and the keyboard handling code
4 // Author: Julian Smart, Robert Roebling, Vadim Zeitlin
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "panelg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/object.h"
34 #include "wx/colour.h"
35 #include "wx/settings.h"
39 #include "wx/containr.h"
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 IMPLEMENT_DYNAMIC_CLASS(wxPanel
, wxWindow
)
48 BEGIN_EVENT_TABLE(wxPanel
, wxWindow
)
49 EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged
)
51 EVT_SIZE(wxPanel::OnSize
)
53 WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel
)
56 // ============================================================================
58 // ============================================================================
60 WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel
)
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
70 bool wxPanel::Create(wxWindow
*parent
, wxWindowID id
,
76 return wxWindow::Create(parent
, id
, pos
, size
, style
, name
);
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 void wxPanel::InitDialog()
89 wxInitDialogEvent
event(GetId());
90 event
.SetEventObject(this);
91 GetEventHandler()->ProcessEvent(event
);
94 // Responds to colour changes, and passes event on to children.
95 void wxPanel::OnSysColourChanged(wxSysColourChangedEvent
& event
)
97 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
100 // Propagate the event to the non-top-level children
101 wxWindow::OnSysColourChanged(event
);
104 void wxPanel::OnSize(wxSizeEvent
& WXUNUSED(event
))
106 #if wxUSE_CONSTRAINTS
109 #endif // wxUSE_CONSTRAINTS