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
|
/* -*- 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 .
*/
#pragma once
#include <scriptinfo.hxx>
#include <swrect.hxx>
#include <swtypes.hxx>
#include "portxt.hxx"
#include <svx/ctredlin.hxx>
#include <vector>
#include <deque>
class SwMarginPortion;
class SwDropPortion;
class SwTextFormatter;
class SwCharRange
{
private:
TextFrameIndex m_nStart;
TextFrameIndex m_nLen;
public:
SwCharRange(TextFrameIndex const nInitStart = TextFrameIndex(0),
TextFrameIndex const nInitLen = TextFrameIndex(0))
: m_nStart( nInitStart ), m_nLen(nInitLen) {}
TextFrameIndex & Start() { return m_nStart; }
TextFrameIndex const& Start() const { return m_nStart; }
void LeftMove(TextFrameIndex const nNew)
{ if ( nNew < m_nStart ) { m_nLen += m_nStart-nNew; m_nStart = nNew; } }
TextFrameIndex & Len() { return m_nLen; }
TextFrameIndex const& Len() const { return m_nLen; }
bool operator<(const SwCharRange &rRange) const
{ return m_nStart < rRange.m_nStart; }
bool operator>(const SwCharRange &rRange) const
{ return m_nStart + m_nLen > rRange.m_nStart + rRange.m_nLen; }
bool operator!=(const SwCharRange &rRange) const
{ return *this < rRange || *this > rRange; }
SwCharRange &operator+=(const SwCharRange &rRange);
};
// SwRepaint is a document-global SwRect
// nOfst states from where in the first line should be painted
// nRightOfst gives the right margin
class SwRepaint : public SwRect
{
SwTwips m_nOffset;
SwTwips m_nRightOffset;
public:
SwRepaint() : SwRect(), m_nOffset( 0 ), m_nRightOffset( 0 ) {}
SwTwips GetOffset() const { return m_nOffset; }
void SetOffset( const SwTwips nNew ) { m_nOffset = nNew; }
SwTwips GetRightOfst() const { return m_nRightOffset; }
void SetRightOfst( const SwTwips nNew ) { m_nRightOffset = nNew; }
};
/// Collection of SwLinePortion instances, representing one line of text.
/// Typically owned by an SwParaPortion.
class SW_DLLPUBLIC SwLineLayout : public SwTextPortion
{
private:
SwLineLayout *m_pNext; // The next Line
std::unique_ptr<std::vector<tools::Long>> m_pLLSpaceAdd; // Used for justified alignment
std::unique_ptr<std::deque<sal_uInt16>> m_pKanaComp; // Used for Kana compression
SwTwips m_nRealHeight; // The height resulting from line spacing and register
SwTwips m_nTextHeight; // The max height of all non-FlyCnt portions in this Line
bool m_bFormatAdj : 1;
bool m_bDummy : 1;
bool m_bEndHyph : 1;
bool m_bMidHyph : 1;
bool m_bFly : 1;
bool m_bRest : 1;
bool m_bBlinking : 1;
bool m_bClipping : 1; // Clipping needed for exact line height
bool m_bContent : 1; // Text for line numbering
bool m_bRedline : 1; // The Redlining
bool m_bRedlineEnd: 1; // Redlining for paragraph mark: tracked change at the end
bool m_bForcedLeftMargin : 1; // Left adjustment moved by the Fly
bool m_bHanging : 1; // Contains a hanging portion in the margin
bool m_bUnderscore : 1;
enum RedlineType m_eRedlineEnd; // redline type of pilcrow and line break symbols
OUString m_sRedlineText; // shortened text of (first) tracked deletion shown in margin
SwTwips GetHangingMargin_() const;
void DeleteNext();
public:
// From SwPosSize
using SwPosSize::Height;
virtual void Height(const SwTwips nNew, const bool bText = true) override;
// From SwLinePortion
virtual SwLinePortion *Insert( SwLinePortion *pPortion ) override;
virtual SwLinePortion *Append( SwLinePortion *pPortion ) override;
SwLinePortion *GetFirstPortion() const;
// Flags
void ResetFlags();
void SetFormatAdj( const bool bNew ) { m_bFormatAdj = bNew; }
bool IsFormatAdj() const { return m_bFormatAdj; }
void SetEndHyph( const bool bNew ) { m_bEndHyph = bNew; }
bool IsEndHyph() const { return m_bEndHyph; }
void SetMidHyph( const bool bNew ) { m_bMidHyph = bNew; }
bool IsMidHyph() const { return m_bMidHyph; }
void SetFly( const bool bNew ) { m_bFly = bNew; }
bool IsFly() const { return m_bFly; }
void SetRest( const bool bNew ) { m_bRest = bNew; }
bool IsRest() const { return m_bRest; }
void SetBlinking( const bool bNew ) { m_bBlinking = bNew; }
bool IsBlinking() const { return m_bBlinking; }
void SetContent( const bool bNew ) { m_bContent = bNew; }
bool HasContent() const { return m_bContent; }
void SetRedline( const bool bNew ) { m_bRedline = bNew; }
bool HasRedline() const { return m_bRedline; }
void SetRedlineEnd( const bool bNew ) { m_bRedlineEnd = bNew; }
bool HasRedlineEnd() const { return m_bRedlineEnd; }
void SetRedlineEndType( const enum RedlineType eNew ) { m_eRedlineEnd = eNew; }
RedlineType GetRedlineEndType() const { return m_eRedlineEnd; }
void SetRedlineText ( const OUString& sText ) { m_sRedlineText = sText; }
const OUString* GetRedlineText() const { return &m_sRedlineText; }
void SetForcedLeftMargin() { m_bForcedLeftMargin = true; }
bool HasForcedLeftMargin() const { return m_bForcedLeftMargin; }
void SetHanging( const bool bNew ) { m_bHanging = bNew; }
bool IsHanging() const { return m_bHanging; }
void SetUnderscore( const bool bNew ) { m_bUnderscore = bNew; }
bool HasUnderscore() const { return m_bUnderscore; }
// Respecting empty dummy lines
void SetDummy( const bool bNew ) { m_bDummy = bNew; }
bool IsDummy() const { return m_bDummy; }
void SetClipping( const bool bNew ) { m_bClipping = bNew; }
bool IsClipping() const { return m_bClipping; }
SwLineLayout();
virtual ~SwLineLayout() override;
SwLineLayout *GetNext() { return m_pNext; }
const SwLineLayout *GetNext() const { return m_pNext; }
void SetNext( SwLineLayout *pNew ) { m_pNext = pNew; }
void Init( SwLinePortion *pNextPortion = nullptr);
// Collects the data for the line
void CalcLine( SwTextFormatter &rLine, SwTextFormatInfo &rInf );
void SetRealHeight( SwTwips nNew ) { m_nRealHeight = nNew; }
SwTwips GetRealHeight() const { return m_nRealHeight; }
SwTwips GetTextHeight() const { return m_nTextHeight; }
// Creates the glue chain for short lines
SwMarginPortion *CalcLeftMargin();
SwTwips GetHangingMargin() const
{ return GetHangingMargin_(); }
// For special treatment for empty lines
virtual bool Format( SwTextFormatInfo &rInf ) override;
// Stuff for justified alignment
bool IsSpaceAdd() const { return m_pLLSpaceAdd != nullptr; }
void InitSpaceAdd(); // Creates pLLSpaceAdd if necessary
void CreateSpaceAdd( const tools::Long nInit = 0 );
void FinishSpaceAdd() { m_pLLSpaceAdd.reset(); }
sal_uInt16 GetLLSpaceAddCount() const { return sal::static_int_cast< sal_uInt16 >(m_pLLSpaceAdd->size()); }
void SetLLSpaceAdd( tools::Long nNew, sal_uInt16 nIdx )
{
if ( nIdx == GetLLSpaceAddCount() )
m_pLLSpaceAdd->push_back( nNew );
else
(*m_pLLSpaceAdd)[ nIdx ] = nNew;
}
tools::Long GetLLSpaceAdd( sal_uInt16 nIdx ) { return (*m_pLLSpaceAdd)[ nIdx ]; }
void RemoveFirstLLSpaceAdd() { m_pLLSpaceAdd->erase( m_pLLSpaceAdd->begin() ); }
std::vector<tools::Long>* GetpLLSpaceAdd() const { return m_pLLSpaceAdd.get(); }
// Stuff for Kana compression
void SetKanaComp( std::unique_ptr<std::deque<sal_uInt16>> pNew ){ m_pKanaComp = std::move(pNew); }
void FinishKanaComp() { m_pKanaComp.reset(); }
std::deque<sal_uInt16>* GetpKanaComp() const { return m_pKanaComp.get(); }
std::deque<sal_uInt16>& GetKanaComp() { return *m_pKanaComp; }
/** determine ascent and descent for positioning of as-character anchored
object
OD 07.01.2004 #i11859# - previously local method <lcl_MaxAscDescent>
Method calculates maximum ascents and descents of the line layout.
One value considering as-character anchored objects, one without these
objects.
Portions for other anchored objects aren't considered.
OD 2005-05-20 #i47162# - add optional parameter <_bNoFlyCntPorAndLinePor>
to control, if the fly content portions and line portion are considered.
@param _orAscent
output parameter - maximum ascent without as-character anchored objects
@param _orDescent
output parameter - maximum descent without as-character anchored objects
@param _orObjAscent
output parameter - maximum ascent with as-character anchored objects
@param _orObjDescent
output parameter - maximum descent with as-character anchored objects
@param _pDontConsiderPortion
input parameter - portion, which isn't considered for calculating
<_orObjAscent> and <_orObjDescent>, if it isn't a portion for a
as-character anchored object or it isn't as high as the line.
@param _bNoFlyCntPorAndLinePor
optional input parameter - boolean, indicating that fly content portions
and the line portion are considered or not.
*/
void MaxAscentDescent( SwTwips& _orAscent,
SwTwips& _orDescent,
SwTwips& _orObjAscent,
SwTwips& _orObjDescent,
const SwLinePortion* _pDontConsiderPortion = nullptr,
const bool _bNoFlyCntPorAndLinePor = false ) const;
void dumpAsXml(xmlTextWriterPtr pWriter, const OUString& rText,
TextFrameIndex& nOffset) const override;
};
/// Collection of SwLineLayout instances, represents the paragraph text in Writer layout.
/// Typically owned by an SwTextFrame.
class SwParaPortion : public SwLineLayout
{
// Area that needs repainting
SwRepaint m_aRepaint;
// Area that needs reformatting
SwCharRange m_aReformat;
SwScriptInfo m_aScriptInfo;
// Fraction aZoom;
tools::Long m_nDelta;
// If a SwTextFrame is locked, no changes occur to the formatting data (under
// pLine) (compare with Orphans)
bool m_bFlys : 1; // Overlapping Flys?
bool m_bPrep : 1; // PREP_*
bool m_bPrepWidows : 1; // PrepareHint::Widows
bool m_bPrepAdjust : 1; // PrepareHint::AdjustSizeWithoutFormatting
bool m_bPrepMustFit : 1; // PrepareHint::MustFit
bool m_bFollowField : 1; // We have a bit of field left for the Follow
bool m_bFixLineHeight : 1; // Fixed line height
bool m_bFootnoteNum : 1; // contains a footnotenumberportion
bool m_bMargin : 1; // contains a hanging punctuation in the margin
public:
SwParaPortion();
virtual ~SwParaPortion() override;
// Resets all formatting information (except for bFlys)
inline void FormatReset();
// Resets the Flags
inline void ResetPreps();
// Get/Set methods
SwRepaint& GetRepaint() { return m_aRepaint; }
const SwRepaint& GetRepaint() const { return m_aRepaint; }
SwCharRange& GetReformat() { return m_aReformat; }
const SwCharRange& GetReformat() const { return m_aReformat; }
void SetDelta(tools::Long nDelta) { m_nDelta = nDelta; }
tools::Long GetDelta() const { return m_nDelta; }
SwScriptInfo& GetScriptInfo() { return m_aScriptInfo; }
const SwScriptInfo& GetScriptInfo() const { return m_aScriptInfo; }
// For SwTextFrame::Format: returns the paragraph's current length
TextFrameIndex GetParLen() const;
// For Prepare()
bool UpdateQuoVadis( std::u16string_view rQuo );
// Flags
void SetFly() { m_bFlys = true; }
bool HasFly() const { return m_bFlys; }
// Preps
void SetPrep() { m_bPrep = true; }
bool IsPrep() const { return m_bPrep; }
void SetPrepWidows() { m_bPrepWidows = true; }
bool IsPrepWidows() const { return m_bPrepWidows; }
void SetPrepMustFit( const bool bNew ) { m_bPrepMustFit = bNew; }
bool IsPrepMustFit() const { return m_bPrepMustFit; }
void SetPrepAdjust() { m_bPrepAdjust = true; }
bool IsPrepAdjust() const { return m_bPrepAdjust; }
void SetFollowField( const bool bNew ) { m_bFollowField = bNew; }
bool IsFollowField() const { return m_bFollowField; }
void SetFixLineHeight() { m_bFixLineHeight = true; }
bool IsFixLineHeight() const { return m_bFixLineHeight; }
void SetFootnoteNum( const bool bNew ) { m_bFootnoteNum = bNew; }
bool IsFootnoteNum() const { return m_bFootnoteNum; }
void SetMargin( const bool bNew = true ) { m_bMargin = bNew; }
bool IsMargin() const { return m_bMargin; }
// Set nErgo in the QuoVadisPortion
void SetErgoSumNum( const OUString &rErgo );
const SwDropPortion *FindDropPortion() const;
void dumpAsXml(xmlTextWriterPtr pWriter, const OUString& rText,
TextFrameIndex& nOffset) const override;
};
inline void SwParaPortion::ResetPreps()
{
m_bPrep = m_bPrepWidows = m_bPrepAdjust = m_bPrepMustFit = false;
}
inline void SwParaPortion::FormatReset()
{
m_nDelta = 0;
m_aReformat = SwCharRange(TextFrameIndex(0), TextFrameIndex(COMPLETE_STRING));
// bFlys needs to be retained in SwTextFrame::Format_() so that empty
// paragraphs that needed to avoid Frames with no flow, reformat
// when the Frame disappears from the Area
// bFlys = false;
ResetPreps();
m_bFollowField = m_bFixLineHeight = m_bMargin = false;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|