Lines Matching refs:aScreenSize

1211         Size aScreenSize = GetX11SalData()->GetDisplay()->GetScreenSize( m_nScreen );  in Center()  local
1212 nScreenWidth = aScreenSize.Width(); in Center()
1213 nScreenHeight = aScreenSize.Height(); in Center()
1243 Size aScreenSize = GetX11SalData()->GetDisplay()->GetScreenSize( m_nScreen ); in calcDefaultSize() local
1244 long w = aScreenSize.Width(); in calcDefaultSize()
1245 long h = aScreenSize.Height(); in calcDefaultSize()
1248 if (aScreenSize.Width() <= 1024 || aScreenSize.Height() <= 768) in calcDefaultSize()
1252 if( aScreenSize.Width() >= 800 ) in calcDefaultSize()
1254 if( aScreenSize.Width() >= 1024 ) in calcDefaultSize()
1257 if( aScreenSize.Height() >= 600 ) in calcDefaultSize()
1259 if( aScreenSize.Height() >= 768 ) in calcDefaultSize()
1261 if( aScreenSize.Height() >= 1024 ) in calcDefaultSize()
1268 w = static_cast<long>(aScreenSize.Width() * 0.8); in calcDefaultSize()
1269 h = static_cast<long>(aScreenSize.Height() * 0.8); in calcDefaultSize()
1538 Size aScreenSize = GetX11SalData()->GetDisplay()->GetScreenSize( m_nScreen ); in SetPosSize() local
1545 …f( (nX + (long)maGeometry.nWidth + (long)maGeometry.nRightDecoration) > (long)aScreenSize.Width() ) in SetPosSize()
1546 nX = aScreenSize.Width() - maGeometry.nWidth - maGeometry.nRightDecoration; in SetPosSize()
1547 …(nY + (long)maGeometry.nHeight + (long)maGeometry.nBottomDecoration) > (long)aScreenSize.Height() ) in SetPosSize()
1548 nY = aScreenSize.Height() - maGeometry.nHeight - maGeometry.nBottomDecoration; in SetPosSize()
1556 if( nX > (long)aScreenSize.Width() - 10 ) in SetPosSize()
1557 nX = (long)aScreenSize.Width() - 10; in SetPosSize()
1558 if( nY > (long)aScreenSize.Height() - 10 ) in SetPosSize()
1559 nY = (long)aScreenSize.Height() - 10; in SetPosSize()
1879 Size aScreenSize = pDisp->GetScreenSize( m_nScreen ); in ShowFullScreen() local
1882 maGeometry.nWidth = aScreenSize.Width(); in ShowFullScreen()
1883 maGeometry.nHeight = aScreenSize.Height(); in ShowFullScreen()