X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3732409acc7a1e0b3cdb1f0a5dec7cc49a4b28b..32485259c1342115488d219776dfebeb3d4d81b1:/include/wx/msw/notebook.h?ds=sidebyside diff --git a/include/wx/msw/notebook.h b/include/wx/msw/notebook.h index 27e9160960..483eecbeb2 100644 --- a/include/wx/msw/notebook.h +++ b/include/wx/msw/notebook.h @@ -211,7 +211,7 @@ protected: void UpdateBgBrush(); // return the themed brush for painting our children - virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, wxWindow *win); + virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd); // draw child background virtual bool MSWPrintChild(WXHDC hDC, wxWindow *win); @@ -222,6 +222,16 @@ protected: bool DoDrawBackground(WXHDC hDC, wxWindow *child = NULL); #endif // wxUSE_UXTHEME + // these function are only used for reducing flicker on notebook resize and + // we don't need to do this for WinCE +#ifndef __WXWINCE__ + void OnEraseBackground(wxEraseEvent& event); + void OnPaint(wxPaintEvent& event); + + // true if we have already subclassed our updown control + bool m_hasSubclassedUpdown; +#endif // __WXWINCE__ + // the current selection (-1 if none) int m_nSelection;