Using wxNullColour will reset to defaults.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27864
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxWindowBase::SetBackgroundColour( const wxColour &colour )
{
bool wxWindowBase::SetBackgroundColour( const wxColour &colour )
{
- if ( !colour.Ok() || (colour == m_backgroundColour) )
+ if ( colour == m_backgroundColour )
+ m_hasBgCol = colour.Ok();
m_backgroundColour = colour;
m_backgroundColour = colour;
+ SetThemeEnabled( !m_hasBgCol && !m_foregroundColour.Ok() );
return true;
}
bool wxWindowBase::SetForegroundColour( const wxColour &colour )
{
return true;
}
bool wxWindowBase::SetForegroundColour( const wxColour &colour )
{
- if ( !colour.Ok() || (colour == m_foregroundColour) )
+ if (colour == m_foregroundColour )
+ m_hasFgCol = colour.Ok();
m_foregroundColour = colour;
m_foregroundColour = colour;
+ SetThemeEnabled( !m_hasFgCol && !m_backgroundColour.Ok() );
+ // This will work around the fact that I don't know what to do to reset to
+ // theme settings when colour == wxNullColour, GetBackgroundColour will
+ // fetch the default if needed, giving us a valid colour to use below.
+ // Vaclav needs to help here to implement the RightThing...
+ wxColour newColour = GetBackgroundColour();
+
// We need the pixel value e.g. for background clearing.
// We need the pixel value e.g. for background clearing.
- m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) );
+ newColour.CalcPixel( gdk_window_get_colormap( window ) );
if (m_wxwindow)
{
// wxMSW doesn't clear the window here, either.
if (m_wxwindow)
{
// wxMSW doesn't clear the window here, either.
- gdk_window_set_background( window, m_backgroundColour.GetColor() );
+ gdk_window_set_background( window, newColour.GetColor() );
bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
{
bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
{
- wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") );
+ wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
if (!wxWindowBase::SetBackgroundColour(colour))
if (!wxWindowBase::SetBackgroundColour(colour))
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
- m_delayedBackgroundColour = TRUE;
- return TRUE;
+ m_delayedBackgroundColour = true;
+ return true;
}
else
{
GtkSetBackgroundColour( colour );
}
}
else
{
GtkSetBackgroundColour( colour );
}
}
void wxWindowGTK::GtkSetForegroundColour( const wxColour &colour )
}
void wxWindowGTK::GtkSetForegroundColour( const wxColour &colour )
{
// don't leave if the GTK widget has just
// been realized
{
// don't leave if the GTK widget has just
// been realized
- if (!m_delayedForegroundColour) return FALSE;
+ if (!m_delayedForegroundColour) return false;
}
GdkWindow *window = (GdkWindow*) NULL;
}
GdkWindow *window = (GdkWindow*) NULL;
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
- m_delayedForegroundColour = TRUE;
+ m_delayedForegroundColour = true;
}
else
{
GtkSetForegroundColour( colour );
}
}
else
{
GtkSetForegroundColour( colour );
}
+ // This will work around the fact that I don't know what to do to reset to
+ // theme settings when colour == wxNullColour, GetBackgroundColour will
+ // fetch the default if needed, giving us a valid colour to use below.
+ // Vaclav needs to help here to implement the RightThing...
+ wxColour newColour = GetBackgroundColour();
+
// We need the pixel value e.g. for background clearing.
// We need the pixel value e.g. for background clearing.
- m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) );
+ newColour.CalcPixel( gdk_window_get_colormap( window ) );
if (m_wxwindow)
{
// wxMSW doesn't clear the window here, either.
if (m_wxwindow)
{
// wxMSW doesn't clear the window here, either.
- gdk_window_set_background( window, m_backgroundColour.GetColor() );
+ gdk_window_set_background( window, newColour.GetColor() );
bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
{
bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
{
- wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") );
+ wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
if (!wxWindowBase::SetBackgroundColour(colour))
if (!wxWindowBase::SetBackgroundColour(colour))
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
GdkWindow *window = (GdkWindow*) NULL;
if (m_wxwindow)
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
- m_delayedBackgroundColour = TRUE;
- return TRUE;
+ m_delayedBackgroundColour = true;
+ return true;
}
else
{
GtkSetBackgroundColour( colour );
}
}
else
{
GtkSetBackgroundColour( colour );
}
}
void wxWindowGTK::GtkSetForegroundColour( const wxColour &colour )
}
void wxWindowGTK::GtkSetForegroundColour( const wxColour &colour )
{
// don't leave if the GTK widget has just
// been realized
{
// don't leave if the GTK widget has just
// been realized
- if (!m_delayedForegroundColour) return FALSE;
+ if (!m_delayedForegroundColour) return false;
}
GdkWindow *window = (GdkWindow*) NULL;
}
GdkWindow *window = (GdkWindow*) NULL;
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
// indicate that a new style has been set
// but it couldn't get applied as the
// widget hasn't been realized yet.
- m_delayedForegroundColour = TRUE;
+ m_delayedForegroundColour = true;
}
else
{
GtkSetForegroundColour( colour );
}
}
else
{
GtkSetForegroundColour( colour );
}