Applied patch [ 1181975 ] [wxMSW] Removes all flicker from wxNotebook

with modifications. Disabled until you set USE_NOTEBOOK_ANTIFLICKER
to 1. Also added code to refresh edges of the notebook to eliminate
droppings.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-04-19 08:47:36 +00:00
parent 4930046b96
commit 254fbd140e
2 changed files with 137 additions and 0 deletions

View File

@@ -232,6 +232,11 @@ protected:
WXHBRUSH m_hbrBackground;
#endif // wxUSE_UXTHEME
// No need to optimize for WinCE
#ifndef __WXWINCE__
void OnEraseBackground(wxEraseEvent& event);
void OnPaint(wxPaintEvent& event);
#endif
DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook)
DECLARE_EVENT_TABLE()