Lines Matching refs:aRect

104 static HIRect ImplGetHIRectFromRectangle(Rectangle aRect)  in ImplGetHIRectFromRectangle()  argument
107 aHIRect.origin.x = static_cast<float>(aRect.Left()); in ImplGetHIRectFromRectangle()
108 aHIRect.origin.y = static_cast<float>(aRect.Top()); in ImplGetHIRectFromRectangle()
109 aHIRect.size.width = static_cast<float>(aRect.GetWidth()); in ImplGetHIRectFromRectangle()
110 aHIRect.size.height = static_cast<float>(aRect.GetHeight()); in ImplGetHIRectFromRectangle()
387 Rectangle aRect; in hitTestNativeControl() local
388 bool bValid = AquaGetScrollRect( /* TODO: m_nScreen */ nPart, rControlRegion, aRect ); in hitTestNativeControl()
389 rIsInside = bValid ? aRect.IsInside( rPos ) : sal_False; in hitTestNativeControl()
399 if( rPos.X() - aRect.Left() < 4 ) in hitTestNativeControl()
405 if( rPos.Y() - aRect.Top() < 4 ) in hitTestNativeControl()
1203 CGRect aRect = { { 0, 0 }, { 0, 0 } }; in drawNativeControl() local
1205 aRect = CGPathGetBoundingBox( mxClipPath ); in drawNativeControl()
1206 if( aRect.size.width != 0 && aRect.size.height != 0 ) in drawNativeControl()
1207 buttonRect.Intersection( Rectangle( Point( static_cast<long int>(aRect.origin.x), in drawNativeControl()
1208 static_cast<long int>(aRect.origin.y) ), in drawNativeControl()
1209 Size( static_cast<long int>(aRect.size.width), in drawNativeControl()
1210 static_cast<long int>(aRect.size.height) ) ) ); in drawNativeControl()
1286 Rectangle aRect; in getNativeControlRegion() local
1287 if( AquaGetScrollRect( /* m_nScreen */ nPart, aCtrlBoundRect, aRect ) ) in getNativeControlRegion()
1290 rNativeBoundingRegion = aRect; in getNativeControlRegion()
1291 rNativeContentRegion = aRect; in getNativeControlRegion()
1324 Rectangle aRect( aCtrlBoundRect ); in getNativeControlRegion() local
1325 if( aRect.GetHeight() < 16 ) in getNativeControlRegion()
1326 aRect.Bottom() = aRect.Top() + 9; // values taken from HIG for medium progress in getNativeControlRegion()
1328 aRect.Bottom() = aRect.Top() + 15; // values taken from HIG for large progress in getNativeControlRegion()
1329 rNativeBoundingRegion = aRect; in getNativeControlRegion()
1330 rNativeContentRegion = aRect; in getNativeControlRegion()
1337 Rectangle aRect( aCtrlBoundRect ); in getNativeControlRegion() local
1338aRect.Bottom() = aRect.Top() + INTRO_PROGRESS_HEIGHT; // values taken from HIG for medium progress in getNativeControlRegion()
1339 rNativeBoundingRegion = aRect; in getNativeControlRegion()
1340 rNativeContentRegion = aRect; in getNativeControlRegion()
1483 Rectangle aRect(aCtrlBoundRect); in getNativeControlRegion() local
1486 aRect.Left() += 1; in getNativeControlRegion()
1487 aRect.Top() += 1; in getNativeControlRegion()
1493 aRect.Left() += 1; in getNativeControlRegion()
1494 aRect.Top() += 1; in getNativeControlRegion()
1495 aRect.Right() -= 1; in getNativeControlRegion()
1496 aRect.Bottom() -= 1; in getNativeControlRegion()
1499 rNativeContentRegion = aRect; in getNativeControlRegion()
1500 rNativeBoundingRegion = aRect; in getNativeControlRegion()