1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <ascharanchoredobjectposition.hxx>
#include <frame.hxx>
#include <txtfrm.hxx>
#include <flyfrms.hxx>
#include <svx/svdobj.hxx>
#include <dcontact.hxx>
#include <frmfmt.hxx>
#include <frmatr.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <fmtornt.hxx>
#include <com/sun/star/text/HoriOrientation.hpp>
using namespace ::com::sun::star;
using namespace objectpositioning;
/** constructor */
SwAsCharAnchoredObjectPosition::SwAsCharAnchoredObjectPosition(
SdrObject& _rDrawObj,
const Point& _rProposedAnchorPos,
const AsCharFlags _nFlags,
const SwTwips _nLineAscent,
const SwTwips _nLineDescent,
const SwTwips _nLineAscentInclObjs,
const SwTwips _nLineDescentInclObjs )
: SwAnchoredObjectPosition( _rDrawObj ),
mrProposedAnchorPos( _rProposedAnchorPos ),
mnFlags( _nFlags ),
mnLineAscent( _nLineAscent ),
mnLineDescent( _nLineDescent ),
mnLineAscentInclObjs( _nLineAscentInclObjs ),
mnLineDescentInclObjs( _nLineDescentInclObjs ),
maAnchorPos ( Point() ),
mnRelPos ( 0 ),
maObjBoundRect ( SwRect() ),
mnLineAlignment ( 0 )
{}
/** destructor */
SwAsCharAnchoredObjectPosition::~SwAsCharAnchoredObjectPosition()
{}
/** method to cast <SwAnchoredObjectPosition::GetAnchorFrame()> to needed type */
const SwTextFrame& SwAsCharAnchoredObjectPosition::GetAnchorTextFrame() const
{
OSL_ENSURE( dynamic_cast<const SwTextFrame*>( &GetAnchorFrame() ) != nullptr,
"SwAsCharAnchoredObjectPosition::GetAnchorTextFrame() - wrong anchor frame type" );
return static_cast<const SwTextFrame&>(GetAnchorFrame());
}
/** calculate position for object
OD 30.07.2003 #110978#
members <maAnchorPos>, <mnRelPos>, <maObjBoundRect> and
<mnLineAlignment> are calculated.
calculated position is set at the given object.
*/
void SwAsCharAnchoredObjectPosition::CalcPosition()
{
const SwTextFrame& rAnchorFrame = GetAnchorTextFrame();
// swap anchor frame, if swapped. Note: destructor takes care of the 'undo'
SwFrameSwapper aFrameSwapper( &rAnchorFrame, false );
SWRECTFN( ( &rAnchorFrame ) )
Point aAnchorPos( mrProposedAnchorPos );
const SwFrameFormat& rFrameFormat = GetFrameFormat();
SwRect aObjBoundRect( GetAnchoredObj().GetObjRect() );
SwTwips nObjWidth = (aObjBoundRect.*fnRect->fnGetWidth)();
// determine spacing values considering layout-/text-direction
const SvxLRSpaceItem& rLRSpace = rFrameFormat.GetLRSpace();
const SvxULSpaceItem& rULSpace = rFrameFormat.GetULSpace();
SwTwips nLRSpaceLeft, nLRSpaceRight, nULSpaceUpper, nULSpaceLower;
{
if ( rAnchorFrame.IsVertical() )
{
// Seems to be easier to do it all the horizontal way
// So, from now on think horizontal.
rAnchorFrame.SwitchVerticalToHorizontal( aObjBoundRect );
rAnchorFrame.SwitchVerticalToHorizontal( aAnchorPos );
// convert the spacing values
nLRSpaceLeft = rULSpace.GetUpper();
nLRSpaceRight = rULSpace.GetLower();
nULSpaceUpper = rLRSpace.GetRight();
nULSpaceLower = rLRSpace.GetLeft();
}
else
{
if ( rAnchorFrame.IsRightToLeft() )
{
nLRSpaceLeft = rLRSpace.GetRight();
nLRSpaceRight = rLRSpace.GetLeft();
}
else
{
nLRSpaceLeft = rLRSpace.GetLeft();
nLRSpaceRight = rLRSpace.GetRight();
}
nULSpaceUpper = rULSpace.GetUpper();
nULSpaceLower = rULSpace.GetLower();
}
}
// consider left and upper spacing by adjusting anchor position.
// left spacing is only considered, if requested.
if( mnFlags & AsCharFlags::UlSpace )
{
aAnchorPos.X() += nLRSpaceLeft;
}
aAnchorPos.Y() += nULSpaceUpper;
// for drawing objects: consider difference between its bounding rectangle
// and its snapping rectangle by adjusting anchor position.
// left difference is only considered, if requested.
if( !IsObjFly() )
{
SwRect aSnapRect = GetObject().GetSnapRect();
if ( rAnchorFrame.IsVertical() )
{
rAnchorFrame.SwitchVerticalToHorizontal( aSnapRect );
}
if( mnFlags & AsCharFlags::UlSpace )
{
aAnchorPos.X() += aSnapRect.Left() - aObjBoundRect.Left();
}
aAnchorPos.Y() += aSnapRect.Top() - aObjBoundRect.Top();
}
// enlarge bounding rectangle of object by its spacing.
aObjBoundRect.Left( aObjBoundRect.Left() - nLRSpaceLeft );
aObjBoundRect.Width( aObjBoundRect.Width() + nLRSpaceRight );
aObjBoundRect.Top( aObjBoundRect.Top() - nULSpaceUpper );
aObjBoundRect.Height( aObjBoundRect.Height() + nULSpaceLower );
// calculate relative position to given base line.
const SwFormatVertOrient& rVert = rFrameFormat.GetVertOrient();
const SwTwips nObjBoundHeight = ( mnFlags & AsCharFlags::Rotate )
? aObjBoundRect.Width()
: aObjBoundRect.Height();
const SwTwips nRelPos = GetRelPosToBase( nObjBoundHeight, rVert );
// for initial positioning:
// adjust the proposed anchor position by difference between
// calculated relative position to base line and current maximal line ascent.
// Note: In the following line formatting the base line will be adjusted
// by the same difference.
if( mnFlags & AsCharFlags::Init && nRelPos < 0 && mnLineAscentInclObjs < -nRelPos )
{
if( mnFlags & AsCharFlags::Rotate )
aAnchorPos.X() -= mnLineAscentInclObjs + nRelPos;
else
aAnchorPos.Y() -= mnLineAscentInclObjs + nRelPos;
}
// consider BIDI-multiportion by adjusting proposed anchor position
if( mnFlags & AsCharFlags::Bidi )
aAnchorPos.X() -= aObjBoundRect.Width();
// calculate relative position considering rotation and inside rotation
// reverse direction.
Point aRelPos;
{
if( mnFlags & AsCharFlags::Rotate )
{
if( mnFlags & AsCharFlags::Reverse )
aRelPos.X() = -nRelPos - aObjBoundRect.Width();
else
{
aRelPos.X() = nRelPos;
aRelPos.Y() = -aObjBoundRect.Height();
}
}
else
aRelPos.Y() = nRelPos;
}
if( !IsObjFly() )
{
if( !( mnFlags & AsCharFlags::Quick ) )
{
// save calculated Y-position value for 'automatic' vertical positioning,
// in order to avoid a switch to 'manual' vertical positioning in
// <SwDrawContact::Changed_(..)>.
const sal_Int16 eVertOrient = rVert.GetVertOrient();
if( rVert.GetPos() != nRelPos && eVertOrient != text::VertOrientation::NONE )
{
SwFormatVertOrient aVert( rVert );
aVert.SetPos( nRelPos );
const_cast<SwFrameFormat&>(rFrameFormat).LockModify();
const_cast<SwFrameFormat&>(rFrameFormat).SetFormatAttr( aVert );
const_cast<SwFrameFormat&>(rFrameFormat).UnlockModify();
}
// determine absolute anchor position considering layout directions.
// Note: Use copy of <aAnchorPos>, because it's needed for
// setting relative position.
Point aAbsAnchorPos( aAnchorPos );
if ( rAnchorFrame.IsRightToLeft() )
{
rAnchorFrame.SwitchLTRtoRTL( aAbsAnchorPos );
aAbsAnchorPos.X() -= nObjWidth;
}
if ( rAnchorFrame.IsVertical() )
rAnchorFrame.SwitchHorizontalToVertical( aAbsAnchorPos );
// set proposed anchor position at the drawing object.
// OD 2004-04-06 #i26791# - distinction between 'master' drawing
// object and 'virtual' drawing object no longer needed.
GetObject().SetAnchorPos( aAbsAnchorPos );
// move drawing object to set its correct relative position.
{
SwRect aSnapRect = GetObject().GetSnapRect();
if ( rAnchorFrame.IsVertical() )
rAnchorFrame.SwitchVerticalToHorizontal( aSnapRect );
Point aDiff;
if ( rAnchorFrame.IsRightToLeft() )
aDiff = aRelPos + aAbsAnchorPos - aSnapRect.TopLeft();
else
aDiff = aRelPos + aAnchorPos - aSnapRect.TopLeft();
if ( rAnchorFrame.IsVertical() )
aDiff = Point( -aDiff.Y(), aDiff.X() );
// OD 2004-04-06 #i26791# - distinction between 'master' drawing
// object and 'virtual' drawing object no longer needed.
GetObject().Move( Size( aDiff.X(), aDiff.Y() ) );
}
}
// switch horizontal, LTR anchor position to absolute values.
if ( rAnchorFrame.IsRightToLeft() )
{
rAnchorFrame.SwitchLTRtoRTL( aAnchorPos );
aAnchorPos.X() -= nObjWidth;
}
if ( rAnchorFrame.IsVertical() )
rAnchorFrame.SwitchHorizontalToVertical( aAnchorPos );
// #i44347# - keep last object rectangle at anchored object
OSL_ENSURE( dynamic_cast<const SwAnchoredDrawObject*>( &GetAnchoredObj() ) != nullptr,
"<SwAsCharAnchoredObjectPosition::CalcPosition()> - wrong type of anchored object." );
SwAnchoredDrawObject& rAnchoredDrawObj =
static_cast<SwAnchoredDrawObject&>( GetAnchoredObj() );
rAnchoredDrawObj.SetLastObjRect( rAnchoredDrawObj.GetObjRect().SVRect() );
}
else
{
// determine absolute anchor position and calculate corresponding
// relative position and its relative position attribute.
// Note: The relative position contains the spacing values.
Point aRelAttr;
if ( rAnchorFrame.IsRightToLeft() )
{
rAnchorFrame.SwitchLTRtoRTL( aAnchorPos );
aAnchorPos.X() -= nObjWidth;
}
if ( rAnchorFrame.IsVertical() )
{
rAnchorFrame.SwitchHorizontalToVertical( aAnchorPos );
aRelAttr = Point( -nRelPos, 0 );
aRelPos = Point( -aRelPos.Y(), aRelPos.X() );
}
else
aRelAttr = Point( 0, nRelPos );
// OD 2004-03-23 #i26791#
OSL_ENSURE( dynamic_cast<const SwFlyInContentFrame*>( &GetAnchoredObj()) != nullptr,
"<SwAsCharAnchoredObjectPosition::CalcPosition()> - wrong anchored object." );
const SwFlyInContentFrame& rFlyInContentFrame =
static_cast<const SwFlyInContentFrame&>(GetAnchoredObj());
if ( !(mnFlags & AsCharFlags::Quick) &&
( aAnchorPos != rFlyInContentFrame.GetRefPoint() ||
aRelAttr != rFlyInContentFrame.GetCurrRelPos() ) )
{
// set new anchor position and relative position
SwFlyInContentFrame* pFlyInContentFrame = &(const_cast<SwFlyInContentFrame&>(rFlyInContentFrame));
pFlyInContentFrame->SetRefPoint( aAnchorPos, aRelAttr, aRelPos );
if( nObjWidth != (pFlyInContentFrame->Frame().*fnRect->fnGetWidth)() )
{
// recalculate object bound rectangle, if object width has changed.
aObjBoundRect = GetAnchoredObj().GetObjRect();
aObjBoundRect.Left( aObjBoundRect.Left() - rLRSpace.GetLeft() );
aObjBoundRect.Width( aObjBoundRect.Width() + rLRSpace.GetRight() );
aObjBoundRect.Top( aObjBoundRect.Top() - rULSpace.GetUpper() );
aObjBoundRect.Height( aObjBoundRect.Height() + rULSpace.GetLower() );
}
}
OSL_ENSURE( (rFlyInContentFrame.Frame().*fnRect->fnGetHeight)(),
"SwAnchoredObjectPosition::CalcPosition(..) - fly frame has an invalid height" );
}
// keep calculated values
maAnchorPos = aAnchorPos;
mnRelPos = nRelPos;
maObjBoundRect = aObjBoundRect;
}
/** determine the relative position to base line for object position type AS_CHAR
OD 29.07.2003 #110978#
Note about values set at member <mnLineAlignment> -
value gives feedback for the line formatting.
0 - no feedback; 1|2|3 - proposed formatting of characters
at top|at center|at bottom of line.
*/
SwTwips SwAsCharAnchoredObjectPosition::GetRelPosToBase(
const SwTwips _nObjBoundHeight,
const SwFormatVertOrient& _rVert )
{
SwTwips nRelPosToBase = 0;
mnLineAlignment = 0;
const sal_Int16 eVertOrient = _rVert.GetVertOrient();
if ( eVertOrient == text::VertOrientation::NONE )
nRelPosToBase = _rVert.GetPos();
else
{
if ( eVertOrient == text::VertOrientation::CENTER )
nRelPosToBase -= _nObjBoundHeight / 2;
else if ( eVertOrient == text::VertOrientation::TOP )
nRelPosToBase -= _nObjBoundHeight;
else if ( eVertOrient == text::VertOrientation::BOTTOM )
nRelPosToBase = 0;
else if ( eVertOrient == text::VertOrientation::CHAR_CENTER )
nRelPosToBase -= ( _nObjBoundHeight + mnLineAscent - mnLineDescent ) / 2;
else if ( eVertOrient == text::VertOrientation::CHAR_TOP )
nRelPosToBase -= mnLineAscent;
else if ( eVertOrient == text::VertOrientation::CHAR_BOTTOM )
nRelPosToBase += mnLineDescent - _nObjBoundHeight;
else
{
if( _nObjBoundHeight >= mnLineAscentInclObjs + mnLineDescentInclObjs )
{
// object is at least as high as the line. Thus, no more is
// positioning necessary. Also, the max. ascent isn't changed.
nRelPosToBase -= mnLineAscentInclObjs;
if ( eVertOrient == text::VertOrientation::LINE_CENTER )
mnLineAlignment = 2;
else if ( eVertOrient == text::VertOrientation::LINE_TOP )
mnLineAlignment = 1;
else if ( eVertOrient == text::VertOrientation::LINE_BOTTOM )
mnLineAlignment = 3;
}
else if ( eVertOrient == text::VertOrientation::LINE_CENTER )
{
nRelPosToBase -= ( _nObjBoundHeight + mnLineAscentInclObjs - mnLineDescentInclObjs ) / 2;
mnLineAlignment = 2;
}
else if ( eVertOrient == text::VertOrientation::LINE_TOP )
{
nRelPosToBase -= mnLineAscentInclObjs;
mnLineAlignment = 1;
}
else if ( eVertOrient == text::VertOrientation::LINE_BOTTOM )
{
nRelPosToBase += mnLineDescentInclObjs - _nObjBoundHeight;
mnLineAlignment = 3;
}
}
}
return nRelPosToBase;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|