-
- return ret;
-}
-
-void wxPanel::InitDialog(void)
-{
- wxInitDialogEvent event(GetId());
- event.SetEventObject(this);
- GetEventHandler()->ProcessEvent(event);
-}
-
-// Responds to colour changes, and passes event on to children.
-void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event)
-{
- SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
- Refresh();
-
- // Propagate the event to the non-top-level children
- wxWindow::OnSysColourChanged(event);
-}
-
-void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event )
-{
- // there is not much to do if we have only one child (or not at all)
- if (GetChildren().GetCount() < 2)
- {
- event.Skip();
- return;
- }
-
- // don't process these ones here
- if (event.IsWindowChange())
- {
- event.Skip();
- return;
- }
-
- // Did the event emitter tell us where the last focus was?
- // wxGTK does this in wxWindow, but wxMSW does not. It is
- // also done in wxPanel if the event is propagated up.
- wxWindow *winFocus = event.GetCurrentFocus();
-
- // Do we know where the focus was ourselves, then?
- if (!winFocus)
- winFocus = m_winLastFocused;
-
- if (!winFocus)
- winFocus = wxWindow::FindFocus();
-
- if (!winFocus)
- {
- event.Skip();
- return;
- }
-
- wxWindowList::Node *start_node = GetChildren().Find( winFocus );
- if ( !start_node )
- start_node = GetChildren().Find( m_winLastFocused );
- if ( !start_node )
- start_node = GetChildren().GetFirst();
-
- wxWindowList::Node *node = event.GetDirection() ? start_node->GetNext()
- : start_node->GetPrevious();
-
- while ( node != start_node )