Lines Matching refs:aRect

1500             Rectangle aRect;  in Center()  local
1501 pFrame->GetPosSize( aRect ); in Center()
1502 pFrame->maGeometry.nX = aRect.Left(); in Center()
1503 pFrame->maGeometry.nY = aRect.Top(); in Center()
1504 pFrame->maGeometry.nWidth = aRect.GetWidth(); in Center()
1505 pFrame->maGeometry.nHeight = aRect.GetHeight(); in Center()
2203 Rectangle aRect; in ShowFullScreen() local
2205 aRect = Rectangle( Point(0,0), GetDisplay()->GetScreenSize( m_nScreen ) ); in ShowFullScreen()
2207 aRect = GetDisplay()->GetXineramaScreens()[nScreen]; in ShowFullScreen()
2212 maGeometry.nX = aRect.Left(); in ShowFullScreen()
2213 maGeometry.nY = aRect.Top(); in ShowFullScreen()
2214 maGeometry.nWidth = aRect.GetWidth(); in ShowFullScreen()
2215 maGeometry.nHeight = aRect.GetHeight(); in ShowFullScreen()
2235 Rectangle aRect = maRestorePosSize; in ShowFullScreen() local
2240 if( !aRect.IsEmpty() ) in ShowFullScreen()
2241 SetPosSize( aRect.Left(), aRect.Top(), aRect.GetWidth(), aRect.GetHeight(), in ShowFullScreen()
3624 XRectangle aRect = { 0, 0, 0, 0 }; in HandleExposeEvent() local
3629 aRect.x = pEvent->xexpose.x; in HandleExposeEvent()
3630 aRect.y = pEvent->xexpose.y; in HandleExposeEvent()
3631 aRect.width = pEvent->xexpose.width; in HandleExposeEvent()
3632 aRect.height = pEvent->xexpose.height; in HandleExposeEvent()
3637 aRect.x = pEvent->xgraphicsexpose.x; in HandleExposeEvent()
3638 aRect.y = pEvent->xgraphicsexpose.y; in HandleExposeEvent()
3639 aRect.width = pEvent->xgraphicsexpose.width; in HandleExposeEvent()
3640 aRect.height = pEvent->xgraphicsexpose.height; in HandleExposeEvent()
3651 … maPaintRegion.Union( Rectangle( Point(aRect.x, aRect.y), Size(aRect.width+1, aRect.height+1) ) ); in HandleExposeEvent()