office-gobmx/chart2/source/tools/RelativePositionHelper.cxx
Rüdiger Timm 4e5837d5ec INTEGRATION: CWS changefileheader (1.3.94); FILE MERGED
2008/04/01 15:04:24 thb 1.3.94.2: #i85898# Stripping all external header guards
2008/03/28 16:44:25 rt 1.3.94.1: #i87441# Change license header to LPGL v3.
2008-04-10 21:17:44 +00:00

402 lines
13 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: RelativePositionHelper.cxx,v $
* $Revision: 1.4 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_chart2.hxx"
#include "RelativePositionHelper.hxx"
#include <rtl/math.hxx>
using namespace ::com::sun::star;
namespace chart
{
// static
chart2::RelativePosition RelativePositionHelper::getReanchoredPosition(
const chart2::RelativePosition & rPosition,
const chart2::RelativeSize & rObjectSize,
drawing::Alignment aNewAnchor )
{
chart2::RelativePosition aResult( rPosition );
if( rPosition.Anchor != aNewAnchor )
{
sal_Int32 nShiftHalfWidths = 0;
sal_Int32 nShiftHalfHeights = 0;
// normalize to top-left
switch( rPosition.Anchor )
{
case drawing::Alignment_TOP_LEFT:
break;
case drawing::Alignment_LEFT:
nShiftHalfHeights -= 1;
break;
case drawing::Alignment_BOTTOM_LEFT:
nShiftHalfHeights -= 2;
break;
case drawing::Alignment_TOP:
nShiftHalfWidths -= 1;
break;
case drawing::Alignment_CENTER:
nShiftHalfWidths -= 1;
nShiftHalfHeights -= 1;
break;
case drawing::Alignment_BOTTOM:
nShiftHalfWidths -= 1;
nShiftHalfHeights -= 2;
break;
case drawing::Alignment_TOP_RIGHT:
nShiftHalfWidths -= 2;
break;
case drawing::Alignment_RIGHT:
nShiftHalfWidths -= 2;
nShiftHalfHeights -= 1;
break;
case drawing::Alignment_BOTTOM_RIGHT:
nShiftHalfWidths -= 2;
nShiftHalfHeights -= 2;
break;
case drawing::Alignment_MAKE_FIXED_SIZE:
break;
}
// transform
switch( aNewAnchor )
{
case drawing::Alignment_TOP_LEFT:
break;
case drawing::Alignment_LEFT:
nShiftHalfHeights += 1;
break;
case drawing::Alignment_BOTTOM_LEFT:
nShiftHalfHeights += 2;
break;
case drawing::Alignment_TOP:
nShiftHalfWidths += 1;
break;
case drawing::Alignment_CENTER:
nShiftHalfWidths += 1;
nShiftHalfHeights += 1;
break;
case drawing::Alignment_BOTTOM:
nShiftHalfWidths += 1;
nShiftHalfHeights += 2;
break;
case drawing::Alignment_TOP_RIGHT:
nShiftHalfWidths += 2;
break;
case drawing::Alignment_RIGHT:
nShiftHalfWidths += 2;
nShiftHalfHeights += 1;
break;
case drawing::Alignment_BOTTOM_RIGHT:
nShiftHalfWidths += 2;
nShiftHalfHeights += 2;
break;
case drawing::Alignment_MAKE_FIXED_SIZE:
break;
}
if( nShiftHalfWidths != 0 )
aResult.Primary += (rObjectSize.Primary / 2.0) * nShiftHalfWidths;
if( nShiftHalfHeights != 0 )
aResult.Secondary += (rObjectSize.Secondary / 2.0) * nShiftHalfHeights;
}
return aResult;
}
// static
awt::Point RelativePositionHelper::getUpperLeftCornerOfAnchoredObject(
awt::Point aPoint
, awt::Size aObjectSize
, drawing::Alignment aAnchor )
{
awt::Point aResult( aPoint );
double fXDelta = 0.0;
double fYDelta = 0.0;
// adapt x-value
switch( aAnchor )
{
case drawing::Alignment_TOP:
case drawing::Alignment_CENTER:
case drawing::Alignment_BOTTOM:
fXDelta -= static_cast< double >( aObjectSize.Width ) / 2.0;
break;
case drawing::Alignment_TOP_RIGHT:
case drawing::Alignment_RIGHT:
case drawing::Alignment_BOTTOM_RIGHT:
fXDelta -= aObjectSize.Width;
break;
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_LEFT:
case drawing::Alignment_BOTTOM_LEFT:
default:
// nothing to do
break;
}
// adapt y-value
switch( aAnchor )
{
case drawing::Alignment_LEFT:
case drawing::Alignment_CENTER:
case drawing::Alignment_RIGHT:
fYDelta -= static_cast< double >( aObjectSize.Height ) / 2.0;
break;
case drawing::Alignment_BOTTOM_LEFT:
case drawing::Alignment_BOTTOM:
case drawing::Alignment_BOTTOM_RIGHT:
fYDelta -= aObjectSize.Height;
break;
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_TOP:
case drawing::Alignment_TOP_RIGHT:
default:
// nothing to do
break;
}
aResult.X += static_cast< sal_Int32 >( ::rtl::math::round( fXDelta ));
aResult.Y += static_cast< sal_Int32 >( ::rtl::math::round( fYDelta ));
return aResult;
}
// static
awt::Point RelativePositionHelper::getCenterOfAnchoredObject(
awt::Point aPoint
, awt::Size aUnrotatedObjectSize
, drawing::Alignment aAnchor
, double fAnglePi )
{
awt::Point aResult( aPoint );
double fXDelta = 0.0;
double fYDelta = 0.0;
// adapt x-value
switch( aAnchor )
{
case drawing::Alignment_TOP:
case drawing::Alignment_CENTER:
case drawing::Alignment_BOTTOM:
// nothing to do
break;
case drawing::Alignment_TOP_RIGHT:
case drawing::Alignment_RIGHT:
case drawing::Alignment_BOTTOM_RIGHT:
fXDelta -= aUnrotatedObjectSize.Width/2;
break;
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_LEFT:
case drawing::Alignment_BOTTOM_LEFT:
default:
fXDelta += aUnrotatedObjectSize.Width/2;
break;
}
// adapt y-value
switch( aAnchor )
{
case drawing::Alignment_LEFT:
case drawing::Alignment_CENTER:
case drawing::Alignment_RIGHT:
// nothing to do
break;
case drawing::Alignment_BOTTOM_LEFT:
case drawing::Alignment_BOTTOM:
case drawing::Alignment_BOTTOM_RIGHT:
fYDelta -= aUnrotatedObjectSize.Height/2;
break;
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_TOP:
case drawing::Alignment_TOP_RIGHT:
fYDelta += aUnrotatedObjectSize.Height/2;
default:
// nothing to do
break;
}
//take rotation into account:
aResult.X += static_cast< sal_Int32 >(
::rtl::math::round( fXDelta * rtl::math::cos( fAnglePi ) + fYDelta * rtl::math::sin( fAnglePi ) ) );
aResult.Y += static_cast< sal_Int32 >(
::rtl::math::round( - fXDelta * rtl::math::sin( fAnglePi ) + fYDelta * rtl::math::cos( fAnglePi ) ) );
return aResult;
}
bool RelativePositionHelper::centerGrow(
chart2::RelativePosition & rInOutPosition,
chart2::RelativeSize & rInOutSize,
double fAmountX, double fAmountY,
bool bCheck /* = true */ )
{
chart2::RelativePosition aPos( rInOutPosition );
chart2::RelativeSize aSize( rInOutSize );
const double fPosCheckThreshold = 0.02;
const double fSizeCheckThreshold = 0.1;
// grow/shrink, back to relaative
aSize.Primary += fAmountX;
aSize.Secondary += fAmountY;
double fShiftAmountX = fAmountX / 2.0;
double fShiftAmountY = fAmountY / 2.0;
// shift X
switch( rInOutPosition.Anchor )
{
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_LEFT:
case drawing::Alignment_BOTTOM_LEFT:
aPos.Primary -= fShiftAmountX;
break;
case drawing::Alignment_TOP:
case drawing::Alignment_CENTER:
case drawing::Alignment_BOTTOM:
// nothing
break;
case drawing::Alignment_TOP_RIGHT:
case drawing::Alignment_RIGHT:
case drawing::Alignment_BOTTOM_RIGHT:
aPos.Primary += fShiftAmountX;
break;
case drawing::Alignment_MAKE_FIXED_SIZE:
break;
}
// shift Y
switch( rInOutPosition.Anchor )
{
case drawing::Alignment_TOP:
case drawing::Alignment_TOP_LEFT:
case drawing::Alignment_TOP_RIGHT:
aPos.Secondary -= fShiftAmountY;
break;
case drawing::Alignment_CENTER:
case drawing::Alignment_LEFT:
case drawing::Alignment_RIGHT:
// nothing
break;
case drawing::Alignment_BOTTOM:
case drawing::Alignment_BOTTOM_LEFT:
case drawing::Alignment_BOTTOM_RIGHT:
aPos.Secondary += fShiftAmountY;
break;
case drawing::Alignment_MAKE_FIXED_SIZE:
break;
}
// anchor must not be changed
OSL_ASSERT( rInOutPosition.Anchor == aPos.Anchor );
if( rInOutPosition.Primary == aPos.Primary &&
rInOutPosition.Secondary == aPos.Secondary &&
rInOutSize.Primary == aSize.Primary &&
rInOutSize.Secondary == aSize.Secondary )
return false;
// check
if( bCheck )
{
// Note: this somewhat complicated check allows the output being
// out-of-bounds if the input was also out-of-bounds, and the change is
// for "advantage". E.g., you have a chart that laps out on the left
// side. If you shrink it, this should be possible, also if it still
// laps out on the left side afterwards. But you shouldn't be able to
// grow it then.
chart2::RelativePosition aUpperLeft(
RelativePositionHelper::getReanchoredPosition( aPos, aSize, drawing::Alignment_TOP_LEFT ));
chart2::RelativePosition aLowerRight(
RelativePositionHelper::getReanchoredPosition( aPos, aSize, drawing::Alignment_BOTTOM_RIGHT ));
// Do not grow, if this leads to corners being off-screen
if( fAmountX > 0.0 &&
( (aUpperLeft.Primary < fPosCheckThreshold) ||
(aLowerRight.Primary > (1.0 - fPosCheckThreshold)) ))
return false;
if( fAmountY > 0.0 &&
( (aUpperLeft.Secondary < fPosCheckThreshold) ||
(aLowerRight.Secondary > (1.0 - fPosCheckThreshold)) ))
return false;
// Do not shrink, if this leads to a size too small
if( fAmountX < 0.0 &&
( aSize.Primary < fSizeCheckThreshold ))
return false;
if( fAmountY < 0.0 &&
( aSize.Secondary < fSizeCheckThreshold ))
return false;
}
rInOutPosition = aPos;
rInOutSize = aSize;
return true;
}
bool RelativePositionHelper::moveObject(
chart2::RelativePosition & rInOutPosition,
const chart2::RelativeSize & rObjectSize,
double fAmountX, double fAmountY,
bool bCheck /* = true */ )
{
chart2::RelativePosition aPos( rInOutPosition );
aPos.Primary += fAmountX;
aPos.Secondary += fAmountY;
const double fPosCheckThreshold = 0.02;
if( bCheck )
{
chart2::RelativePosition aUpperLeft(
RelativePositionHelper::getReanchoredPosition( aPos, rObjectSize, drawing::Alignment_TOP_LEFT ));
chart2::RelativePosition aLowerRight( aUpperLeft );
aLowerRight.Primary += rObjectSize.Primary;
aLowerRight.Secondary += rObjectSize.Secondary;
const double fFarEdgeThreshold = 1.0 - fPosCheckThreshold;
if( ( fAmountX > 0.0 && (aLowerRight.Primary > fFarEdgeThreshold)) ||
( fAmountX < 0.0 && (aUpperLeft.Primary < fPosCheckThreshold)) ||
( fAmountY > 0.0 && (aLowerRight.Secondary > fFarEdgeThreshold)) ||
( fAmountY < 0.0 && (aUpperLeft.Secondary < fPosCheckThreshold)) )
return false;
}
rInOutPosition = aPos;
return true;
}
} // namespace chart