+ // Attempts to get colour for UX theme page background
+ wxColour GetThemeBackgroundColour() const;
+
+ // implementation only
+ // -------------------
+
+#if wxUSE_UXTHEME
+ virtual bool SetBackgroundColour(const wxColour& colour)
+ {
+ if ( !wxNotebookBase::SetBackgroundColour(colour) )
+ return false;
+
+ UpdateBgBrush();
+
+ return true;
+ }
+
+ virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, wxWindow *win);
+ virtual wxColour MSWGetBgColourForChild(wxWindow *win);
+#endif // wxUSE_UXTHEME
+