// implementation from now on
// --------------------------
- // responds to colour changes
- void OnSysColourChanged(wxSysColourChangedEvent& event);
-
// calls layout for layout constraints and sizers
void OnSize(wxSizeEvent& event);
#endif
BEGIN_EVENT_TABLE(wxPanel, wxWindow)
- EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged)
-
EVT_SIZE(wxPanel::OnSize)
WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel)
// event handlers
// ----------------------------------------------------------------------------
-// Responds to colour changes, and passes event on to children.
-void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event)
-{
- SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
- Refresh();
-
- // Propagate the event to the non-top-level children
- wxWindow::OnSysColourChanged(event);
-}
-
void wxPanel::OnSize(wxSizeEvent& event)
{
if (GetAutoLayout())
void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent& event)
{
InitColours();
- Refresh();
// Propagate the event to the non-top-level children
wxWindow::OnSysColourChanged(event);