git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27973
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// implementation from now on
// --------------------------
// implementation from now on
// --------------------------
- // responds to colour changes
- void OnSysColourChanged(wxSysColourChangedEvent& event);
-
// calls layout for layout constraints and sizers
void OnSize(wxSizeEvent& event);
// calls layout for layout constraints and sizers
void OnSize(wxSizeEvent& event);
#endif
BEGIN_EVENT_TABLE(wxPanel, wxWindow)
#endif
BEGIN_EVENT_TABLE(wxPanel, wxWindow)
- EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged)
-
EVT_SIZE(wxPanel::OnSize)
WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel)
EVT_SIZE(wxPanel::OnSize)
WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel)
// event handlers
// ----------------------------------------------------------------------------
// 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 wxPanel::OnSize(wxSizeEvent& event)
{
if (GetAutoLayout())
void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent& event)
{
InitColours();
void wxStatusBarGeneric::OnSysColourChanged(wxSysColourChangedEvent& event)
{
InitColours();
// Propagate the event to the non-top-level children
wxWindow::OnSysColourChanged(event);
// Propagate the event to the non-top-level children
wxWindow::OnSysColourChanged(event);