- for ( wxWindow *win = this; win; win = win->GetParent() )
- {
- wxNotebook *nbook = wxDynamicCast(win, wxNotebook);
- if ( nbook )
- {
- WXHBRUSH hbr = nbook->GetThemeBackgroundBrush();
- if ( hbr )
- {
- RECT rc;
- GetWindowRect(GetHwnd(), &rc);
-
- MapWindowPoints(NULL, GetHwndOf(nbook), (POINT *)&rc, 1);
- SetBrushOrgEx(hdc, -rc.left, -rc.top, NULL);
- return hbr;
- }
- }
- }