]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/panelg.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "panelg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/object.h"
26 #include "wx/colour.h"
27 #include "wx/settings.h"
30 #include "wx/generic/panelg.h"
32 #if !USE_SHARED_LIBRARY
33 IMPLEMENT_DYNAMIC_CLASS(wxPanel
, wxWindow
)
35 BEGIN_EVENT_TABLE(wxPanel
, wxWindow
)
36 EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged
)
37 EVT_NAVIGATION_KEY(wxPanel::OnNavigationKey
)
46 bool wxPanel::Create(wxWindow
*parent
, wxWindowID id
,
52 bool ret
= wxWindow::Create(parent
, id
, pos
, size
, style
, name
);
57 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
58 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
65 void wxPanel::InitDialog(void)
67 wxInitDialogEvent
event(GetId());
68 event
.SetEventObject(this);
69 GetEventHandler()->ProcessEvent(event
);
72 // Responds to colour changes, and passes event on to children.
73 void wxPanel::OnSysColourChanged(wxSysColourChangedEvent
& event
)
75 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
78 // Propagate the event to the non-top-level children
79 wxWindow::OnSysColourChanged(event
);
82 void wxPanel::OnNavigationKey( wxNavigationKeyEvent
& event
)
84 if (GetChildren().GetCount() < 2)
90 // don't process these ones here
91 if (event
.IsWindowChange())
97 wxWindow
*winFocus
= event
.GetCurrentFocus();
98 if (!winFocus
) winFocus
= wxWindow::FindFocus();
106 wxNode
*start_node
= GetChildren().Find( winFocus
);
107 if (!start_node
) start_node
= GetChildren().First();
109 wxNode
*node
= event
.GetDirection() ? start_node
->Next() : start_node
->Previous();
111 while (node
!= start_node
)
116 if (GetParent() != NULL)
118 wxNavigationKeyEvent new_event;
119 new_event.SetDirection( event.GetDirection() );
120 new_event.SetWindowChange(FALSE);
121 new_event.SetCurrentFocus( this );
123 if (GetParent()->GetEventHandler()->ProcessEvent(new_event))
130 node
= event
.GetDirection() ? GetChildren().First() : GetChildren().Last();
133 wxWindow
*child
= (wxWindow
*) node
->Data();
135 if (child
->AcceptsFocus())