1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_SW_INC_CRSTATE_HXX
20 #define INCLUDED_SW_INC_CRSTATE_HXX
22 #include <com/sun/star/text/HoriOrientation.hpp>
23 #include <tools/gen.hxx>
24 #include <swtypes.hxx>
29 FILL_TAB
, ///< default, fill with tabs
30 FILL_SPACE
, ///< fill with spaces and tabs
31 FILL_MARGIN
, ///< only align left, center, right
32 FILL_INDENT
///< by left paragraph indention
37 SwRect aCrsr
; ///< position and size of the ShadowCursor
38 sal_uInt16 nParaCnt
; ///< number of paragraphs to insert
39 sal_uInt16 nTabCnt
; ///< number of tabs respectively size of indentation
40 sal_uInt16 nSpaceCnt
; ///< number of spaces to insert
41 sal_uInt16 nColumnCnt
; ///< number of necessary column breaks
42 sal_Int16 eOrient
; ///< paragraph alignment
43 SwFillMode eMode
; ///< desired fill-up rule
44 SwFillCrsrPos( SwFillMode eMd
= FILL_TAB
) :
45 nParaCnt( 0 ), nTabCnt( 0 ), nSpaceCnt( 0 ), nColumnCnt( 0 ),
46 eOrient( com::sun::star::text::HoriOrientation::NONE
), eMode( eMd
)
50 // Multiportion types: two lines, bidirectional, 270 degrees rotation,
51 // ruby portion and 90 degrees rotation
60 SwRect aLine
; ///< Position and size of the line
61 SwRect aPortion
; ///< Position and size of the multi portion
62 SwRect aPortion2
; ///< needed for nested multi portions
63 sal_uInt8 nMultiType
; ///< Multiportion type
67 * SwSpecialPos. This structure is used to pass some additional information
68 * during the call of SwTextFrm::GetCharRect(). An SwSpecialPos defines a position
69 * inside a portion which does not have a representation in the core string or
70 * which is only represented by one position, e.g., field portions,
71 * number portions, ergo sum and quo vadis portions.
73 * nCharOfst - The offset inside the special portion. Fields and its
74 * follow fields are treated as one long special portion.
75 * nLineOfst - The number of lines between the beginning of the special
76 * portion and nCharOfst. A line offset required to be
77 * nCharOfst relative to the beginning of the line.
78 * nExtendRange - Setting this identifies portions which are in front or
79 * behind the core string (number portion, quo vadis)
83 * Get the position of the second character inside a number portion:
84 * nCharOfst = 2; nLineOfst = 0; nExtendRange = SP_EXTEND_RANGE_BEFORE;
85 * Call SwTextFrm:::GetCharRect with core string position 0.
89 * Field A - Length = 5
90 * Follow field B - Length = 9
91 * Get the position of the third character in follow field B, core position
93 * nCharOfst = 7; nLineOfst = 0; nExtendRange = SP_EXTEND_RANGE_NONE;
94 * Call SwTextFrm:::GetCharRect with core string position 33.
97 #define SP_EXTEND_RANGE_NONE 0
98 #define SP_EXTEND_RANGE_BEFORE 1
99 #define SP_EXTEND_RANGE_BEHIND 2
104 sal_uInt16 nLineOfst
;
105 sal_uInt8 nExtendRange
;
108 SwSpecialPos() : nCharOfst(0), nLineOfst(0),
109 nExtendRange(SP_EXTEND_RANGE_NONE
)
113 // CrsrTravelling-States (for GetCrsrOfst)
116 MV_NONE
, ///< default
117 MV_UPDOWN
, ///< Crsr Up/Down
118 MV_RIGHTMARGIN
, ///< at right margin
119 MV_LEFTMARGIN
, ///< at left margin
120 MV_SETONLYTEXT
, ///< stay with the cursor inside text
121 MV_TBLSEL
///< not in repeated headlines
124 // struct for later extensions
125 struct SwCrsrMoveState
127 SwFillCrsrPos
*pFill
; ///< for automatic filling with tabs etc
128 Sw2LinesPos
*p2Lines
; ///< for selections inside/around 2line portions
129 SwSpecialPos
* pSpecialPos
; ///< for positions inside fields
130 Point aRealHeight
; ///< contains then the position/height of the cursor
131 CrsrMoveState eState
;
132 sal_uInt8 nCursorBidiLevel
;
134 bool bRealHeight
; ///< should the real height be calculated?
135 bool bFieldInfo
; ///< should be fields recognized?
136 bool bPosCorr
; ///< Point had to be corrected
137 bool bFootnoteNoInfo
; ///< recognized footnote numbering
138 bool bExactOnly
; /**< let GetCrsrOfst look for exact matches only,
139 i.e. never let it run into GetContentPos */
140 bool bFillRet
; ///< only used temporary in FillMode
141 bool bSetInReadOnly
; ///< ReadOnly areas may be entered
142 bool bRealWidth
; ///< Calculation of the width required
143 bool b2Lines
; ///< Check 2line portions and fill p2Lines
144 bool bNoScroll
; ///< No scrolling of undersized textframes
145 bool bPosMatchesBounds
; /**< GetCrsrOfst should not return the next
146 position if screen position is inside second
147 have of bound rect */
149 bool bContentCheck
; // #i43742# Cursor position over content?
153 cursor in front of label
155 bool bInFrontOfLabel
;
156 bool bInNumPortion
; ///< point is in number portion #i23726#
157 int nInNumPostionOffset
; ///< distance from number portion's start
159 SwCrsrMoveState( CrsrMoveState eSt
= MV_NONE
) :
164 nCursorBidiLevel( 0 ),
166 bRealHeight( false ),
169 bFootnoteNoInfo( false ),
172 bSetInReadOnly( false ),
176 bPosMatchesBounds( false ),
177 bContentCheck( false ), // #i43742#
178 bInFrontOfLabel( false ), // #i27615#
179 bInNumPortion(false), // #i26726#
180 nInNumPostionOffset(0) // #i26726#
182 SwCrsrMoveState( SwFillCrsrPos
*pInitFill
) :
186 eState( MV_SETONLYTEXT
),
187 nCursorBidiLevel( 0 ),
189 bRealHeight( false ),
192 bFootnoteNoInfo( false ),
195 bSetInReadOnly( false ),
199 bPosMatchesBounds( false ),
200 bContentCheck( false ), // #i43742#
201 bInFrontOfLabel( false ), // #i27615#
202 bInNumPortion(false), // #i23726#
203 nInNumPostionOffset(0) // #i23726#
209 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */