- // Set up port
- WindowRef rootwindow = GetMacRootWindow() ;
- wxWindow* wxrootwindow = wxFindWinFromMacWindow( rootwindow ) ;
- wxMacDrawingHelper focus( wxrootwindow );
-
- ::SetThemeWindowBackground( rootwindow , kThemeBrushDialogBackgroundActive , false ) ;
- // Update window at old and new positions
- SetRect(&newbounds, m_x, m_y, m_x + m_width, m_y + m_height);
- InvalWindowRect( rootwindow , &oldbounds );
- InvalWindowRect( rootwindow , &newbounds );
-
- MacRepositionScrollBars() ;
-
- if ( !wxrootwindow->IsKindOf( CLASSINFO( wxDialog ) ) )
- {
- ::SetThemeWindowBackground( rootwindow, kThemeBrushDocumentWindowBackground, false );
- }