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 .
22 #include <com/sun/star/text/HoriOrientation.hpp>
23 #include <tools/gen.hxx>
24 #include <swtypes.hxx>
30 FILL_TAB
, ///< default, fill with tabs
31 FILL_SPACE
, ///< fill with spaces and tabs
32 FILL_MARGIN
, ///< only align left, center, right
33 FILL_INDENT
///< by left paragraph indention
38 SwRect aCrsr
; ///< position and size of the ShadowCursor
39 sal_uInt16 nParaCnt
; ///< number of paragraphs to insert
40 sal_uInt16 nTabCnt
; ///< number of tabs respectively size of indentation
41 sal_uInt16 nSpaceCnt
; ///< number of spaces to insert
42 sal_uInt16 nColumnCnt
; ///< number of necessary column breaks
43 sal_Int16 eOrient
; ///< paragraph alignment
44 SwFillMode eMode
; ///< desired fill-up rule
45 SwFillCrsrPos( SwFillMode eMd
= FILL_TAB
) :
46 nParaCnt( 0 ), nTabCnt( 0 ), nSpaceCnt( 0 ), nColumnCnt( 0 ),
47 eOrient( com::sun::star::text::HoriOrientation::NONE
), eMode( eMd
)
51 // Multiportion types: two lines, bidirectional, 270 degrees rotation,
52 // ruby portion and 90 degrees rotation
61 SwRect aLine
; ///< Position and size of the line
62 SwRect aPortion
; ///< Position and size of the multi portion
63 SwRect aPortion2
; ///< needed for nested multi portions
64 sal_uInt8 nMultiType
; ///< Multiportion type
68 * SwSpecialPos. This structure is used to pass some additional information
69 * during the call of SwTxtFrm::GetCharRect(). An SwSpecialPos defines a position
70 * inside a portion which does not have a representation in the core string or
71 * which is only represented by one position, e.g., field portions,
72 * number portions, ergo sum and quo vadis portions.
74 * nCharOfst - The offset inside the special portion. Fields and its
75 * follow fields are treated as one long special portion.
76 * nLineOfst - The number of lines between the beginning of the special
77 * portion and nCharOfst. A line offset required to be
78 * nCharOfst relative to the beginning of the line.
79 * nExtendRange - Setting this identifies portions which are in front or
80 * behind the core string (number portion, quo vadis)
84 * Get the position of the second character inside a number portion:
85 * nCharOfst = 2; nLineOfst = 0; nExtendRange = SP_EXTEND_RANGE_BEFORE;
86 * Call SwTxtFrm:::GetCharRect with core string position 0.
90 * Field A - Length = 5
91 * Follow field B - Length = 9
92 * Get the position of the third character in follow field B, core position
94 * nCharOfst = 7; nLineOfst = 0; nExtendRange = SP_EXTEND_RANGE_NONE;
95 * Call SwTxtFrm:::GetCharRect with core string position 33.
98 #define SP_EXTEND_RANGE_NONE 0
99 #define SP_EXTEND_RANGE_BEFORE 1
100 #define SP_EXTEND_RANGE_BEHIND 2
104 xub_StrLen nCharOfst
;
105 sal_uInt16 nLineOfst
;
106 sal_uInt8 nExtendRange
;
109 SwSpecialPos() : nCharOfst(0), nLineOfst(0),
110 nExtendRange(SP_EXTEND_RANGE_NONE
)
114 // CrsrTravelling-States (for GetCrsrOfst)
117 MV_NONE
, ///< default
118 MV_UPDOWN
, ///< Crsr Up/Down
119 MV_RIGHTMARGIN
, ///< at right margin
120 MV_LEFTMARGIN
, ///< at left margin
121 MV_SETONLYTEXT
, ///< stay with the cursor inside text
122 MV_TBLSEL
///< not in repeated headlines
125 // struct for later extensions
126 struct SwCrsrMoveState
128 SwFillCrsrPos
*pFill
; ///< for automatic filling with tabs etc
129 Sw2LinesPos
*p2Lines
; ///< for selections inside/around 2line portions
130 SwSpecialPos
* pSpecialPos
; ///< for positions inside fields
131 Point aRealHeight
; ///< contains then the position/height of the cursor
132 CrsrMoveState eState
;
133 sal_uInt8 nCursorBidiLevel
;
135 sal_Bool bRealHeight
; ///< should the real height be calculated?
136 sal_Bool bFieldInfo
; ///< should be fields recognized?
137 sal_Bool bPosCorr
; ///< Point had to be corrected
138 sal_Bool bFtnNoInfo
; ///< recognized footnote numbering
139 sal_Bool bExactOnly
; /**< let GetCrsrOfst look for exact matches only,
140 i.e. never let it run into GetCntntPos */
141 sal_Bool bFillRet
; ///< only used temporary in FillMode
142 sal_Bool bSetInReadOnly
; ///< ReadOnly areas may be entered
143 sal_Bool bRealWidth
; ///< Calculation of the width required
144 sal_Bool b2Lines
; ///< Check 2line portions and fill p2Lines
145 sal_Bool bNoScroll
; ///< No scrolling of undersized textframes
146 bool bPosMatchesBounds
; /**< GetCrsrOfst should not return the next
147 position if screen position is inside second
148 have of bound rect */
150 sal_Bool bCntntCheck
; // #i43742# Cursor position over content?
154 cursor in front of label
156 sal_Bool bInFrontOfLabel
;
157 sal_Bool bInNumPortion
; ///< point is in number portion #i23726#
158 int nInNumPostionOffset
; ///< distance from number portion's start
160 SwCrsrMoveState( CrsrMoveState eSt
= MV_NONE
) :
165 nCursorBidiLevel( 0 ),
167 bRealHeight( sal_False
),
168 bFieldInfo( sal_False
),
169 bPosCorr( sal_False
),
170 bFtnNoInfo( sal_False
),
171 bExactOnly( sal_False
),
172 bSetInReadOnly( sal_False
),
173 bRealWidth( sal_False
),
174 b2Lines( sal_False
),
175 bNoScroll( sal_False
),
176 bPosMatchesBounds( sal_False
),
177 bCntntCheck( sal_False
), // #i43742#
178 bInFrontOfLabel( sal_False
), // #i27615#
179 bInNumPortion(sal_False
), // #i26726#
180 nInNumPostionOffset(0) // #i26726#
182 SwCrsrMoveState( SwFillCrsrPos
*pInitFill
) :
185 eState( MV_SETONLYTEXT
),
186 nCursorBidiLevel( 0 ),
188 bRealHeight( sal_False
),
189 bFieldInfo( sal_False
),
190 bPosCorr( sal_False
),
191 bFtnNoInfo( sal_False
),
192 bExactOnly( sal_False
),
193 bSetInReadOnly( sal_False
),
194 bRealWidth( sal_False
),
195 b2Lines( sal_False
),
196 bNoScroll( sal_False
),
197 bPosMatchesBounds( sal_False
),
198 bCntntCheck( sal_False
), // #i43742#
199 bInFrontOfLabel( sal_False
), // #i27615#
200 bInNumPortion(sal_False
), // #i23726#
201 nInNumPostionOffset(0) // #i23726#
209 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */