sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __FRMTLAY_H__
|
sl@0
|
20 |
#define __FRMTLAY_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <gdi.h>
|
sl@0
|
25 |
#include <txtfrmat.h>
|
sl@0
|
26 |
#include <txtetext.h>
|
sl@0
|
27 |
#include <frmlaydt.h>
|
sl@0
|
28 |
#include <frmparam.h>
|
sl@0
|
29 |
#include <frmvis.h>
|
sl@0
|
30 |
#include <tagma.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
class CWindowGc;
|
sl@0
|
33 |
class MLayDoc;
|
sl@0
|
34 |
class TLayDocTextSource;
|
sl@0
|
35 |
class TCursorPosition;
|
sl@0
|
36 |
|
sl@0
|
37 |
class TLayDocTextSource;
|
sl@0
|
38 |
class CTmTextLayout;
|
sl@0
|
39 |
class TTmHighlightExtensions;
|
sl@0
|
40 |
class MTmSource;
|
sl@0
|
41 |
class TTmFormatParamBase;
|
sl@0
|
42 |
|
sl@0
|
43 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
44 |
#include <frmtlay_internal.h>
|
sl@0
|
45 |
#endif
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
This interface class defines an interface for clients of Form to provided
|
sl@0
|
49 |
implementations of customisation interfaces relating to the source text
|
sl@0
|
50 |
document as requried by the internals of Form and Tagma. Its use by
|
sl@0
|
51 |
Form clients is optional.
|
sl@0
|
52 |
Derived objects of this interface are registered with the CTextLayout
|
sl@0
|
53 |
API and are called from the TLayDocTextSource class at present.
|
sl@0
|
54 |
@publishedAll
|
sl@0
|
55 |
@released
|
sl@0
|
56 |
@see MTmInlineTextSource
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
class MFormCustomInterfaceProvider
|
sl@0
|
59 |
{
|
sl@0
|
60 |
public:
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Form uses this method to request an interface implmentation for the
|
sl@0
|
63 |
specified interface Uid. See class description for interfaces covered
|
sl@0
|
64 |
by this API.
|
sl@0
|
65 |
@param aInterfaceId
|
sl@0
|
66 |
The unique identifier for the interface wanted by Form.
|
sl@0
|
67 |
@return
|
sl@0
|
68 |
Ptr to interface instance or 0 if not supported by client
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
virtual TAny* GetExtendedInterface(const TUid& aInterfaceId) = 0;
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
/** Parameter used to control which part of a line (top, baseline or bottom)
|
sl@0
|
75 |
should be scrolled to a certain vertical position in a view rectangle. Used
|
sl@0
|
76 |
as a parameter in functions like CTextView::HandleGlobalChangeL() and
|
sl@0
|
77 |
CTextLayout::SetViewL(). The selected part of the line is called the hotspot.
|
sl@0
|
78 |
@publishedAll
|
sl@0
|
79 |
@released
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
class TViewYPosQualifier
|
sl@0
|
82 |
{
|
sl@0
|
83 |
friend class CTextLayout;
|
sl@0
|
84 |
friend class CTextView;
|
sl@0
|
85 |
public:
|
sl@0
|
86 |
/** Which part of a line (top, baseline or bottom) should appear at a
|
sl@0
|
87 |
vertical pixel position. */
|
sl@0
|
88 |
enum TPartOfLine
|
sl@0
|
89 |
{
|
sl@0
|
90 |
/** The top pixel is placed at the specified vertical point. */
|
sl@0
|
91 |
EFViewTopOfLine = 1,
|
sl@0
|
92 |
/** The baseline is placed at the specified vertical point. */
|
sl@0
|
93 |
EFViewBaseLine = 0,
|
sl@0
|
94 |
/** The bottom pixel is placed at the specified vertical point. */
|
sl@0
|
95 |
EFViewBottomOfLine = 2
|
sl@0
|
96 |
};
|
sl@0
|
97 |
|
sl@0
|
98 |
/** Whether the top line in the view should be fully visible. */
|
sl@0
|
99 |
enum TFullyVisible
|
sl@0
|
100 |
{
|
sl@0
|
101 |
/** Force a partially visible top line to be fully visible. */
|
sl@0
|
102 |
EFViewForceLineFullyVisible = ETrue,
|
sl@0
|
103 |
/** Do not force a partially visible top line to be fully visible. */
|
sl@0
|
104 |
EFViewDontForceLineFullyVisible = EFalse
|
sl@0
|
105 |
};
|
sl@0
|
106 |
public:
|
sl@0
|
107 |
inline TViewYPosQualifier();
|
sl@0
|
108 |
IMPORT_C void SetHotSpot(TPartOfLine aHotSpot);
|
sl@0
|
109 |
IMPORT_C void SetFillScreen(TBool aFillScreen = ETrue);
|
sl@0
|
110 |
IMPORT_C void SetMakeLineFullyVisible(TFullyVisible aMakeLineFullyVisible = EFViewForceLineFullyVisible);
|
sl@0
|
111 |
private:
|
sl@0
|
112 |
TPartOfLine iHotSpot;
|
sl@0
|
113 |
TBool iFillScreen;
|
sl@0
|
114 |
TFullyVisible iFullyVisible;
|
sl@0
|
115 |
};
|
sl@0
|
116 |
|
sl@0
|
117 |
/**
|
sl@0
|
118 |
A structure used to return the results of a reformatting operation.
|
sl@0
|
119 |
@see CTextLayout::HandleBlockChangeL()
|
sl@0
|
120 |
@publishedAll
|
sl@0
|
121 |
@released
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
class TViewRectChanges
|
sl@0
|
124 |
|
sl@0
|
125 |
{
|
sl@0
|
126 |
public:
|
sl@0
|
127 |
inline TViewRectChanges();
|
sl@0
|
128 |
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
/** The vertical coordinate of the top of the first line of reformatted
|
sl@0
|
131 |
text. */
|
sl@0
|
132 |
TInt iFormattedFrom;
|
sl@0
|
133 |
/** The vertical coordinate of the bottom of the last line of reformatted
|
sl@0
|
134 |
text. */
|
sl@0
|
135 |
TInt iFormattedTo;
|
sl@0
|
136 |
/** The number of pixels by which text above the reformatted or edited
|
sl@0
|
137 |
block has scrolled (positive values mean the text moved down). */
|
sl@0
|
138 |
TInt iScrollAtTop;
|
sl@0
|
139 |
/** The number of pixels by which text below the reformatted or edited
|
sl@0
|
140 |
block has scrolled (positive values mean the text moved down). */
|
sl@0
|
141 |
TInt iScrollAtBottom;
|
sl@0
|
142 |
};
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
The cursor or cursor selection within a document.
|
sl@0
|
146 |
|
sl@0
|
147 |
If the cursor and anchor position differ, the selection covers the text from
|
sl@0
|
148 |
the lower to the higher position, not including the character after the higher
|
sl@0
|
149 |
position. If the selection is changed (by shift plus arrow keys in many UIs)
|
sl@0
|
150 |
the cursor position changes and the anchor remains the same.
|
sl@0
|
151 |
@publishedAll
|
sl@0
|
152 |
@released
|
sl@0
|
153 |
*/
|
sl@0
|
154 |
class TCursorSelection
|
sl@0
|
155 |
|
sl@0
|
156 |
{
|
sl@0
|
157 |
public:
|
sl@0
|
158 |
inline TCursorSelection();
|
sl@0
|
159 |
inline TCursorSelection(TInt aCursorPos,TInt aAnchorPos);
|
sl@0
|
160 |
inline void SetSelection(TInt aCursorPos,TInt aAnchorPos);
|
sl@0
|
161 |
inline TInt LowerPos() const;
|
sl@0
|
162 |
inline TInt HigherPos() const;
|
sl@0
|
163 |
inline TInt Length() const;
|
sl@0
|
164 |
public:
|
sl@0
|
165 |
/** The cursor position. */
|
sl@0
|
166 |
TInt iCursorPos;
|
sl@0
|
167 |
/** The anchor position. */
|
sl@0
|
168 |
TInt iAnchorPos;
|
sl@0
|
169 |
};
|
sl@0
|
170 |
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
Parameters used by functions that draw text.
|
sl@0
|
173 |
|
sl@0
|
174 |
An object of this class is passed to CTextLayout::DrawL() and to
|
sl@0
|
175 |
InvertRangeL(). The draw context includes the view rectangle, the graphics
|
sl@0
|
176 |
context, the background colour and the margin widths.
|
sl@0
|
177 |
|
sl@0
|
178 |
You only need to use this class directly when you are using a CTextLayout
|
sl@0
|
179 |
object which is not owned by a CTextView object.
|
sl@0
|
180 |
@publishedAll
|
sl@0
|
181 |
@released
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
class TDrawTextLayoutContext
|
sl@0
|
184 |
|
sl@0
|
185 |
{
|
sl@0
|
186 |
private:
|
sl@0
|
187 |
enum TDrawMode
|
sl@0
|
188 |
{
|
sl@0
|
189 |
EFDrawText=0x001,
|
sl@0
|
190 |
EFDrawGraphics=0x002,
|
sl@0
|
191 |
EFUseClippingRect=0x004,
|
sl@0
|
192 |
EFUseWindowGc=0x008,
|
sl@0
|
193 |
EFUseGcClear=0x020,
|
sl@0
|
194 |
EFUseBackgroundColor=0x040,
|
sl@0
|
195 |
EFUseOverrideTextColor=0x080,
|
sl@0
|
196 |
EFParagraphFillTextOnly=0x100,
|
sl@0
|
197 |
EFAllFlags=0xfff
|
sl@0
|
198 |
};
|
sl@0
|
199 |
public:
|
sl@0
|
200 |
IMPORT_C TDrawTextLayoutContext();
|
sl@0
|
201 |
|
sl@0
|
202 |
IMPORT_C void SetGc(CGraphicsContext* aGc,CGraphicsContext* aPictureGc=NULL);
|
sl@0
|
203 |
IMPORT_C void SetBitmapGc(CBitmapContext* aGc,CBitmapContext* aPictureGc=NULL);
|
sl@0
|
204 |
IMPORT_C void SetWindowGc(CWindowGc* aGc,CWindowGc* aPictureGc=NULL);
|
sl@0
|
205 |
IMPORT_C void SetDrawToEveryPixel(TBool aDrawToEveryPixel);
|
sl@0
|
206 |
IMPORT_C void SetTextColorOverride(const TRgb *aOverrideColor);
|
sl@0
|
207 |
IMPORT_C void SetDrawTextOnly();
|
sl@0
|
208 |
IMPORT_C void SetDrawGraphicsOnly();
|
sl@0
|
209 |
IMPORT_C void SetDrawTextAndGraphics();
|
sl@0
|
210 |
IMPORT_C void SetClipping(TBool aClipping);
|
sl@0
|
211 |
// deprecated 7.0
|
sl@0
|
212 |
IMPORT_C void SetParagraphFillTextOnly(TBool aFillTextOnly);
|
sl@0
|
213 |
|
sl@0
|
214 |
//Enquiry functions
|
sl@0
|
215 |
IMPORT_C const TRgb* TextOverrideColor() const;
|
sl@0
|
216 |
IMPORT_C CGraphicsContext* PrimaryGc() const;
|
sl@0
|
217 |
IMPORT_C CGraphicsContext* PictureGc() const;
|
sl@0
|
218 |
IMPORT_C TBool UseClippingRect() const;
|
sl@0
|
219 |
IMPORT_C TBool UseGcClear() const;
|
sl@0
|
220 |
IMPORT_C TBool DrawText() const;
|
sl@0
|
221 |
IMPORT_C TBool DrawGraphics() const;
|
sl@0
|
222 |
IMPORT_C TBool UseBackgroundColor() const;
|
sl@0
|
223 |
// deprecated 7.0
|
sl@0
|
224 |
IMPORT_C TBool ParagraphFillTextOnly() const;
|
sl@0
|
225 |
|
sl@0
|
226 |
//Physical dimensions
|
sl@0
|
227 |
IMPORT_C TRect TextArea() const;
|
sl@0
|
228 |
IMPORT_C TInt DisplayHeight() const;
|
sl@0
|
229 |
IMPORT_C TPoint TopLeftTextArea() const;
|
sl@0
|
230 |
IMPORT_C TRect TotalMargin() const;
|
sl@0
|
231 |
IMPORT_C TRect LabelMargin() const;
|
sl@0
|
232 |
IMPORT_C TBool IsLabelMargin() const;
|
sl@0
|
233 |
IMPORT_C TRect GutterMargin() const;
|
sl@0
|
234 |
IMPORT_C TBool IsGutterMargin() const;
|
sl@0
|
235 |
IMPORT_C TPoint TopLeftText() const;
|
sl@0
|
236 |
IMPORT_C void WindowToText(TPoint& aWinPos) const;
|
sl@0
|
237 |
IMPORT_C void WindowToText(TRect& aRect) const;
|
sl@0
|
238 |
IMPORT_C void TextToWindow(TPoint& aTextAreaPos) const;
|
sl@0
|
239 |
IMPORT_C void TextToWindow(TRect& aRect) const;
|
sl@0
|
240 |
|
sl@0
|
241 |
TBool UseWindowGc() const;
|
sl@0
|
242 |
void SetDrawMode(TUint aDrawMode);
|
sl@0
|
243 |
TUint DrawMode() const;
|
sl@0
|
244 |
|
sl@0
|
245 |
public:
|
sl@0
|
246 |
/** The view rectangle (specified in window coordinates). This is used to
|
sl@0
|
247 |
set the area in which text can be drawn. Text can only be drawn within the
|
sl@0
|
248 |
intersection between the text area and the aDrawRect parameter passed to
|
sl@0
|
249 |
CTextLayout::DrawL() or InvertRangeL(). */
|
sl@0
|
250 |
TRect iViewRect;
|
sl@0
|
251 |
/** The label margin width. By default zero. Must have the same value as
|
sl@0
|
252 |
the label margin width as set in the text layout object. */
|
sl@0
|
253 |
TInt iLabelMarginWidth;
|
sl@0
|
254 |
/** The gutter margin width (also known as the line cursor margin width).
|
sl@0
|
255 |
By default zero. */
|
sl@0
|
256 |
TInt iGutterMarginWidth;
|
sl@0
|
257 |
/** The horizontal offset between window coordinates and text layout
|
sl@0
|
258 |
coordinates. */
|
sl@0
|
259 |
TInt iTextStartX;
|
sl@0
|
260 |
/** The background colour for the view rectangle. The background colour is
|
sl@0
|
261 |
used to fill the parts of the view rectangle in which text cannot appear,
|
sl@0
|
262 |
for example, below the last line of the document and in the label, line
|
sl@0
|
263 |
cursor and left text margins. */
|
sl@0
|
264 |
TLogicalRgb iBackgroundColor;
|
sl@0
|
265 |
private:
|
sl@0
|
266 |
CGraphicsContext* iGc;
|
sl@0
|
267 |
CGraphicsContext* iPictureGc;
|
sl@0
|
268 |
TLogicalRgb iOverrideTextColor;
|
sl@0
|
269 |
TUint iDrawMode;
|
sl@0
|
270 |
};
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
An abstract class which specifies the protocol for customising the way text
|
sl@0
|
274 |
and its background are drawn.
|
sl@0
|
275 |
|
sl@0
|
276 |
Common uses for this are to implement custom highlighting or to draw a
|
sl@0
|
277 |
background bitmap. You must create an object of a class derived from this class
|
sl@0
|
278 |
and call CTextLayout::SetCustomDraw(), passing a pointer to the object. All of
|
sl@0
|
279 |
these functions have default implementations. Your class can override any of the
|
sl@0
|
280 |
virtual functions listed below.
|
sl@0
|
281 |
@publishedAll
|
sl@0
|
282 |
@released
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
class MFormCustomDraw
|
sl@0
|
285 |
|
sl@0
|
286 |
{
|
sl@0
|
287 |
public:
|
sl@0
|
288 |
|
sl@0
|
289 |
class TParam
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
Parameters used by several custom draw functions
|
sl@0
|
292 |
@publishedAll
|
sl@0
|
293 |
@released
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
{
|
sl@0
|
296 |
public:
|
sl@0
|
297 |
TParam(CGraphicsContext& aGc,MGraphicsDeviceMap& aMap,const TPoint& aTextLayoutTopLeft,const TRect& aDrawRect):
|
sl@0
|
298 |
iGc(aGc), iMap(aMap), iTextLayoutTopLeft(aTextLayoutTopLeft), iDrawRect(aDrawRect) { }
|
sl@0
|
299 |
|
sl@0
|
300 |
CGraphicsContext& iGc;
|
sl@0
|
301 |
MGraphicsDeviceMap& iMap;
|
sl@0
|
302 |
const TPoint& iTextLayoutTopLeft;
|
sl@0
|
303 |
const TRect& iDrawRect;
|
sl@0
|
304 |
};
|
sl@0
|
305 |
|
sl@0
|
306 |
class TLineInfo
|
sl@0
|
307 |
/**
|
sl@0
|
308 |
Contains the line metrics.
|
sl@0
|
309 |
@publishedAll
|
sl@0
|
310 |
@released
|
sl@0
|
311 |
*/
|
sl@0
|
312 |
{
|
sl@0
|
313 |
public:
|
sl@0
|
314 |
TLineInfo(const TRect& aOuterRect,const TRect& aInnerRect,TInt aBaseline):
|
sl@0
|
315 |
iOuterRect(aOuterRect), iInnerRect(aInnerRect), iBaseline(aBaseline) { }
|
sl@0
|
316 |
|
sl@0
|
317 |
const TRect& iOuterRect;
|
sl@0
|
318 |
const TRect& iInnerRect;
|
sl@0
|
319 |
TInt iBaseline;
|
sl@0
|
320 |
};
|
sl@0
|
321 |
|
sl@0
|
322 |
IMPORT_C virtual void DrawBackground(const TParam& aParam,const TRgb& aBackground,TRect& aDrawn) const;
|
sl@0
|
323 |
IMPORT_C virtual void DrawLineGraphics(const TParam& aParam,const TLineInfo& aLineInfo) const;
|
sl@0
|
324 |
IMPORT_C virtual void DrawText(const TParam& aParam,const TLineInfo& aLineInfo,const TCharFormat& aFormat,
|
sl@0
|
325 |
const TDesC& aText,const TPoint& aTextOrigin,TInt aExtraPixels) const;
|
sl@0
|
326 |
IMPORT_C virtual TRgb SystemColor(TUint aColorIndex,TRgb aDefaultColor) const;
|
sl@0
|
327 |
|
sl@0
|
328 |
IMPORT_C virtual void DrawText(const TParam& aParam,const TLineInfo& aLineInfo,const TCharFormat& aFormat,
|
sl@0
|
329 |
const TDesC& aText,const TInt aStart, const TInt aEnd, const TPoint& aTextOrigin,TInt aExtraPixels) const;
|
sl@0
|
330 |
IMPORT_C virtual void MFormCustomDraw_Reserved_2();
|
sl@0
|
331 |
};
|
sl@0
|
332 |
|
sl@0
|
333 |
|
sl@0
|
334 |
/**
|
sl@0
|
335 |
An interface class that can be derived from to implement custom line breaking.
|
sl@0
|
336 |
|
sl@0
|
337 |
Custom line breaking allows the Text Views line wrapping algorithm to break
|
sl@0
|
338 |
lines in any way. For instance, it may be used to avoid the jagged white space
|
sl@0
|
339 |
at the right edge of text windows caused by normal line wrapping on a small
|
sl@0
|
340 |
screen.
|
sl@0
|
341 |
|
sl@0
|
342 |
All of these functions have a default implementation. To change the default
|
sl@0
|
343 |
behaviour, a pointer to an object that overrides any or all of the functions
|
sl@0
|
344 |
in the interface needs to be passed to the function CTextLayout::SetCustomWrap().
|
sl@0
|
345 |
@since 6.2
|
sl@0
|
346 |
|
sl@0
|
347 |
@see CTextLayout::SetCustomWrap()
|
sl@0
|
348 |
@publishedAll
|
sl@0
|
349 |
@released
|
sl@0
|
350 |
*/
|
sl@0
|
351 |
class MFormCustomWrap
|
sl@0
|
352 |
|
sl@0
|
353 |
{
|
sl@0
|
354 |
public:
|
sl@0
|
355 |
IMPORT_C virtual TUint LineBreakClass(TUint aCode,TUint& aRangeStart,TUint& aRangeEnd) const;
|
sl@0
|
356 |
IMPORT_C virtual TBool LineBreakPossible(TUint aPrevClass,TUint aNextClass,TBool aHaveSpaces) const;
|
sl@0
|
357 |
IMPORT_C virtual TBool GetLineBreakInContext(const TDesC& aText,TInt aMinBreakPos,TInt aMaxBreakPos,
|
sl@0
|
358 |
TBool aForwards,TInt& aBreakPos) const;
|
sl@0
|
359 |
IMPORT_C virtual TBool IsHangingCharacter(TUint aChar) const;
|
sl@0
|
360 |
private:
|
sl@0
|
361 |
IMPORT_C virtual void MFormCustomWrap_Reserved_1();
|
sl@0
|
362 |
IMPORT_C virtual void MFormCustomWrap_Reserved_2();
|
sl@0
|
363 |
};
|
sl@0
|
364 |
|
sl@0
|
365 |
|
sl@0
|
366 |
/**
|
sl@0
|
367 |
Mixin class used to customize visible appearance of invisible characters
|
sl@0
|
368 |
such as a paragraph mark or a tab.
|
sl@0
|
369 |
|
sl@0
|
370 |
@see CTextView::SetCustomInvisibleCharacterRemapper()
|
sl@0
|
371 |
@publishedAll
|
sl@0
|
372 |
@released
|
sl@0
|
373 |
*/
|
sl@0
|
374 |
class MFormCustomInvisibleCharacterRemapper
|
sl@0
|
375 |
{
|
sl@0
|
376 |
public:
|
sl@0
|
377 |
IMPORT_C static TUint DefaultMapping(TUint aChar, const TNonPrintingCharVisibility aNonPrintingCharVisibility, const TLayDocTextSource& aLayDoc);
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
Allows custom remapping of invisible characters.
|
sl@0
|
381 |
|
sl@0
|
382 |
Called by TLayDocTextSource::Map() if it has been created and registered
|
sl@0
|
383 |
with TLayDocTextSource using CTextLayout::SetInvisibleCharacterRemapper().
|
sl@0
|
384 |
|
sl@0
|
385 |
Unless there is a specific reason for doing otherwise it is recommended
|
sl@0
|
386 |
that where this function has not remapped a given character it should
|
sl@0
|
387 |
pass it to DefaultMapping() to let it try.
|
sl@0
|
388 |
|
sl@0
|
389 |
@param aChar
|
sl@0
|
390 |
Invisible character to be remapped
|
sl@0
|
391 |
@param aDesiredVisibilities
|
sl@0
|
392 |
Current state of flags showing visibility of invisible characters
|
sl@0
|
393 |
@param aLayDoc
|
sl@0
|
394 |
Const ref to the calling CLayDocTextSource
|
sl@0
|
395 |
@return
|
sl@0
|
396 |
The replacement character if remapping has taken place, else return original character
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
virtual TUint Remap(TUint aChar, const TNonPrintingCharVisibility aNonPrintingCharVisibility, const TLayDocTextSource& aLayDoc) = 0;
|
sl@0
|
399 |
};
|
sl@0
|
400 |
|
sl@0
|
401 |
/**
|
sl@0
|
402 |
Text layout.
|
sl@0
|
403 |
|
sl@0
|
404 |
CTextLayout is the lowest-level text formatting class in the Text Views API. It
|
sl@0
|
405 |
obtains text and formatting attributes via the MLayDoc interface class and
|
sl@0
|
406 |
formats the text to a certain width.
|
sl@0
|
407 |
|
sl@0
|
408 |
It has functions for drawing the text and performing hit-detection that is,
|
sl@0
|
409 |
converting x-y coordinates to document positions, and vice versa. It defines
|
sl@0
|
410 |
many public functions that are not generally useful, but are called by the
|
sl@0
|
411 |
higher-level CTextView class, or exist only for the convenience of closely
|
sl@0
|
412 |
associated classes like the printing and pagination systems. These are
|
sl@0
|
413 |
identified in the documentation by the text "not generally useful".
|
sl@0
|
414 |
|
sl@0
|
415 |
When using the CTextLayout class, you must be aware of what functions have
|
sl@0
|
416 |
previously been called. For example:
|
sl@0
|
417 |
|
sl@0
|
418 |
1) Formatting and scrolling functions must not be called if a CTextView object
|
sl@0
|
419 |
owns the CTextLayout object, because the CTextView object may be reformatting
|
sl@0
|
420 |
the CTextLayout object asynchronously by means of an active object, or may hold
|
sl@0
|
421 |
some state information about the CTextLayout object that would be invalidated
|
sl@0
|
422 |
by reformatting. These functions are identified in the documentation by the
|
sl@0
|
423 |
text "Do not use if a CTextView object owns this CTextLayout object.".
|
sl@0
|
424 |
|
sl@0
|
425 |
2) Functions that raise out of memory exceptions can leave the object in an
|
sl@0
|
426 |
inconsistent state; these functions can be identified as usual by their
|
sl@0
|
427 |
trailing L. When this occurs, it is necessary to discard the formatting
|
sl@0
|
428 |
information by calling DiscardFormat().
|
sl@0
|
429 |
|
sl@0
|
430 |
3) Some functions change formatting parameters like the wrap width or band
|
sl@0
|
431 |
height, but do not reformat to reflect the change. These functions are
|
sl@0
|
432 |
identified in the documentation by the text "Reformat needed".
|
sl@0
|
433 |
@publishedAll
|
sl@0
|
434 |
@released
|
sl@0
|
435 |
*/
|
sl@0
|
436 |
class CTextLayout: public CBase
|
sl@0
|
437 |
|
sl@0
|
438 |
{
|
sl@0
|
439 |
friend class CTestTextLayout;
|
sl@0
|
440 |
public:
|
sl@0
|
441 |
|
sl@0
|
442 |
/**Flags used by CTextLayout::SetViewL(). Whether to reformat and redraw.*/
|
sl@0
|
443 |
enum TDiscard
|
sl@0
|
444 |
{
|
sl@0
|
445 |
/** Discard all formatting; redraw. */
|
sl@0
|
446 |
EFViewDiscardAllFormat = TRUE,
|
sl@0
|
447 |
/** Do not discard all formatting; redraw. */
|
sl@0
|
448 |
EFViewDontDiscardFormat = FALSE
|
sl@0
|
449 |
};
|
sl@0
|
450 |
|
sl@0
|
451 |
/** Indicates whether blank space should scroll.
|
sl@0
|
452 |
Used by several CTextView and CTextLayout scrolling functions. */
|
sl@0
|
453 |
enum TAllowDisallow
|
sl@0
|
454 |
{
|
sl@0
|
455 |
/** Allow blank space to scroll. */
|
sl@0
|
456 |
EFAllowScrollingBlankSpace = TRUE,
|
sl@0
|
457 |
/** Disallow blank space from scrolling. */
|
sl@0
|
458 |
EFDisallowScrollingBlankSpace = FALSE
|
sl@0
|
459 |
};
|
sl@0
|
460 |
|
sl@0
|
461 |
enum // flags for HandleCharEditL
|
sl@0
|
462 |
{
|
sl@0
|
463 |
/** Insert a character, (not a paragraph delimiter). */
|
sl@0
|
464 |
EFCharacterInsert,
|
sl@0
|
465 |
/** Insert a paragraph delimiter. */
|
sl@0
|
466 |
EFParagraphDelimiter,
|
sl@0
|
467 |
/** Delete single character to the left. */
|
sl@0
|
468 |
EFLeftDelete,
|
sl@0
|
469 |
/** Delete single character to the right. */
|
sl@0
|
470 |
EFRightDelete
|
sl@0
|
471 |
};
|
sl@0
|
472 |
|
sl@0
|
473 |
enum
|
sl@0
|
474 |
{
|
sl@0
|
475 |
/** A value greater than any possible display height indicates that the
|
sl@0
|
476 |
entire visible area, at least, was scrolled, and so there is no point
|
sl@0
|
477 |
in blitting text; a full redraw is needed.
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
EFScrollRedrawWholeScreen = CLayoutData::EFLargeNumber,
|
sl@0
|
480 |
/** The maximum line width when wrapping is unset. */
|
sl@0
|
481 |
EFMaximumLineWidth = CLayoutData::EFBodyWidthForNoWrapping,
|
sl@0
|
482 |
};
|
sl@0
|
483 |
|
sl@0
|
484 |
enum
|
sl@0
|
485 |
{
|
sl@0
|
486 |
/** Wrapping off; overrides the paragraph format. */
|
sl@0
|
487 |
EFAllParagraphsNotWrapped = TRUE,
|
sl@0
|
488 |
/** Wrapping on, unless CParaFormat::iWrap is false. */
|
sl@0
|
489 |
EFParagraphsWrappedByDefault = FALSE
|
sl@0
|
490 |
};
|
sl@0
|
491 |
|
sl@0
|
492 |
/** Amount to format. Used by CTextLayout::SetAmountToFormat(). */
|
sl@0
|
493 |
enum TAmountFormatted
|
sl@0
|
494 |
{
|
sl@0
|
495 |
/** Format the whole document. */
|
sl@0
|
496 |
EFFormatAllText = FALSE,
|
sl@0
|
497 |
/** Format the visible band only. */
|
sl@0
|
498 |
EFFormatBand = TRUE,
|
sl@0
|
499 |
};
|
sl@0
|
500 |
|
sl@0
|
501 |
enum TScrollFlags
|
sl@0
|
502 |
{
|
sl@0
|
503 |
EFScrollOnlyToTopsOfLines = 1
|
sl@0
|
504 |
};
|
sl@0
|
505 |
|
sl@0
|
506 |
/** Formatting information. */
|
sl@0
|
507 |
enum TCurrentFormat
|
sl@0
|
508 |
{
|
sl@0
|
509 |
/** Returned by some CTextLayout enquiry functions to indicate that no
|
sl@0
|
510 |
formatting has taken place so that the requested value cannot be
|
sl@0
|
511 |
calculated. */
|
sl@0
|
512 |
EFNoCurrentFormat = -1,
|
sl@0
|
513 |
/** Returned by CTextLayout::ParagraphHeight() when the paragraph is not formatted. */
|
sl@0
|
514 |
EFNotInCurrentFormat = 0
|
sl@0
|
515 |
};
|
sl@0
|
516 |
public:
|
sl@0
|
517 |
class TRangeChange
|
sl@0
|
518 |
/**
|
sl@0
|
519 |
Specifies the range of characters involved when setting or clearing a
|
sl@0
|
520 |
text selection.
|
sl@0
|
521 |
|
sl@0
|
522 |
This class is used in the CTextLayout::Highlight() function. The following
|
sl@0
|
523 |
code demonstrates how it should be used to clear an existing highlight and
|
sl@0
|
524 |
set a new one:
|
sl@0
|
525 |
|
sl@0
|
526 |
@code
|
sl@0
|
527 |
CTextLayout::TRangeChange oldHighlight(anchorPos, old_cursorPos,
|
sl@0
|
528 |
CTextLayout::TRangeChange::EClear); // existing highlight
|
sl@0
|
529 |
CTextLayout::TRangeChange newHighlight(anchorPos, new_cursorPos,
|
sl@0
|
530 |
CTextLayout::TRangeChange::ESet); // new one
|
sl@0
|
531 |
newHighlight.OptimizeWith(oldHighlight); // doesn't matter which range is
|
sl@0
|
532 |
the parameter and which is the calling object
|
sl@0
|
533 |
layout.Highlight(oldHighlight,drawRect,context); // doesn't matter in which
|
sl@0
|
534 |
order this and following line occur
|
sl@0
|
535 |
layout.Highlight(newHighlight,drawRect,context);
|
sl@0
|
536 |
@endcode
|
sl@0
|
537 |
|
sl@0
|
538 |
@see CTextLayout::Highlight()
|
sl@0
|
539 |
@publishedAll
|
sl@0
|
540 |
@released
|
sl@0
|
541 |
*/
|
sl@0
|
542 |
{
|
sl@0
|
543 |
public:
|
sl@0
|
544 |
/** Enumerates the possible change types. */
|
sl@0
|
545 |
enum TChangeType
|
sl@0
|
546 |
{
|
sl@0
|
547 |
/** The object is being used to set a range. */
|
sl@0
|
548 |
ESet,
|
sl@0
|
549 |
/** The object is being used to clear a range. */
|
sl@0
|
550 |
EClear
|
sl@0
|
551 |
};
|
sl@0
|
552 |
IMPORT_C TRangeChange(TInt aStart, TInt aEnd, TChangeType aChange);
|
sl@0
|
553 |
IMPORT_C TRangeChange();
|
sl@0
|
554 |
IMPORT_C void Set(TInt aStart, TInt aEnd, TChangeType aChange);
|
sl@0
|
555 |
IMPORT_C TChangeType Get(TInt& aStart, TInt& aEnd) const;
|
sl@0
|
556 |
IMPORT_C void OptimizeWith(TRangeChange& aBuddy);
|
sl@0
|
557 |
IMPORT_C TBool NonNull() const;
|
sl@0
|
558 |
IMPORT_C TBool Clip(TInt aMin, TInt aMax);
|
sl@0
|
559 |
|
sl@0
|
560 |
TBool IsJoinedTo(const TRangeChange aRange);
|
sl@0
|
561 |
void Join(const TRangeChange aRange);
|
sl@0
|
562 |
|
sl@0
|
563 |
private:
|
sl@0
|
564 |
TInt iA;
|
sl@0
|
565 |
TInt iB;
|
sl@0
|
566 |
};
|
sl@0
|
567 |
|
sl@0
|
568 |
public:
|
sl@0
|
569 |
|
sl@0
|
570 |
class TTagmaForwarder: public MTmTextLayoutForwarder
|
sl@0
|
571 |
/**
|
sl@0
|
572 |
A standard inquiry interface for the text formatting engine, built on
|
sl@0
|
573 |
top of a CTextView object.
|
sl@0
|
574 |
|
sl@0
|
575 |
To use it, construct a TTagmaForwarder object, then call InitL(), which
|
sl@0
|
576 |
finishes background formatting, then call the MTmTextLayoutForwarder
|
sl@0
|
577 |
functions.
|
sl@0
|
578 |
|
sl@0
|
579 |
The class should only be used internally by FORM component.
|
sl@0
|
580 |
@internalComponent
|
sl@0
|
581 |
*/
|
sl@0
|
582 |
{
|
sl@0
|
583 |
public:
|
sl@0
|
584 |
inline TTagmaForwarder(const CTextLayout& aLayout);
|
sl@0
|
585 |
|
sl@0
|
586 |
private:
|
sl@0
|
587 |
// from MTmTextLayoutForwarder
|
sl@0
|
588 |
inline const CTmTextLayout& TextLayout() const;
|
sl@0
|
589 |
inline void GetOrigin(TPoint& aPoint) const;
|
sl@0
|
590 |
|
sl@0
|
591 |
const CTextLayout& iLayout;
|
sl@0
|
592 |
};
|
sl@0
|
593 |
|
sl@0
|
594 |
/**
|
sl@0
|
595 |
Accesses text supplied by MTmSource.
|
sl@0
|
596 |
@internalComponent
|
sl@0
|
597 |
*/
|
sl@0
|
598 |
class TUtf32SourceCache
|
sl@0
|
599 |
{
|
sl@0
|
600 |
public:
|
sl@0
|
601 |
TUtf32SourceCache(const MTmSource& aSource);
|
sl@0
|
602 |
TUtf32SourceCache(const CTextLayout& aLayout);
|
sl@0
|
603 |
TText GetUtf16(TInt aIndex);
|
sl@0
|
604 |
TChar GetUtf32(TInt aIndex);
|
sl@0
|
605 |
private:
|
sl@0
|
606 |
const MTmSource* iSource;
|
sl@0
|
607 |
TPtrC16 iCurrentView;
|
sl@0
|
608 |
TInt iCurrentViewIndex;
|
sl@0
|
609 |
};
|
sl@0
|
610 |
friend class TUtf32SourceCache;
|
sl@0
|
611 |
|
sl@0
|
612 |
IMPORT_C static CTextLayout *NewL(MLayDoc *aDoc,TInt aWrapWidth);
|
sl@0
|
613 |
IMPORT_C ~CTextLayout();
|
sl@0
|
614 |
IMPORT_C void DiscardFormat();
|
sl@0
|
615 |
IMPORT_C void SetLayDoc(MLayDoc *aDoc);
|
sl@0
|
616 |
IMPORT_C void SetWrapWidth(TInt aWrapWidth);
|
sl@0
|
617 |
IMPORT_C void SetBandHeight(TInt aHeight);
|
sl@0
|
618 |
IMPORT_C TInt BandHeight() const;
|
sl@0
|
619 |
IMPORT_C void SetImageDeviceMap(MGraphicsDeviceMap *aGd);
|
sl@0
|
620 |
IMPORT_C void SetLabelsDeviceMap(MGraphicsDeviceMap *aDeviceMap);
|
sl@0
|
621 |
IMPORT_C void SetAmountToFormat(TAmountFormatted aAmountOfFormat = EFFormatBand);
|
sl@0
|
622 |
IMPORT_C TBool IsFormattingBand() const;
|
sl@0
|
623 |
IMPORT_C void SetFormatMode(CLayoutData::TFormatMode aFormatMode,TInt aWrapWidth,MGraphicsDeviceMap* aFormatDevice);
|
sl@0
|
624 |
IMPORT_C void ForceNoWrapping(TBool aNoWrapping = EFAllParagraphsNotWrapped);
|
sl@0
|
625 |
IMPORT_C TBool IsWrapping() const;
|
sl@0
|
626 |
IMPORT_C void SetTruncating(TBool aOn);
|
sl@0
|
627 |
IMPORT_C TBool Truncating() const;
|
sl@0
|
628 |
IMPORT_C void SetTruncatingEllipsis(TChar aEllipsis);
|
sl@0
|
629 |
IMPORT_C TChar TruncatingEllipsis() const;
|
sl@0
|
630 |
IMPORT_C void SetLabelsMarginWidth(TInt aWidth);
|
sl@0
|
631 |
IMPORT_C void SetNonPrintingCharsVisibility(TNonPrintingCharVisibility aVisibility);
|
sl@0
|
632 |
IMPORT_C TNonPrintingCharVisibility NonPrintingCharsVisibility() const;
|
sl@0
|
633 |
IMPORT_C TBool IsBackgroundFormatting() const;
|
sl@0
|
634 |
IMPORT_C void NotifyTerminateBackgroundFormatting();
|
sl@0
|
635 |
// deprecated 7.0
|
sl@0
|
636 |
IMPORT_C void SetExcludePartialLines(TBool aExcludePartialLines = TRUE);
|
sl@0
|
637 |
// deprecated 7.0
|
sl@0
|
638 |
IMPORT_C TBool ExcludingPartialLines() const;
|
sl@0
|
639 |
IMPORT_C void SetFontHeightIncreaseFactor(TInt aPercentage);
|
sl@0
|
640 |
IMPORT_C TInt FontHeightIncreaseFactor() const;
|
sl@0
|
641 |
IMPORT_C void SetMinimumLineDescent(TInt aPixels);
|
sl@0
|
642 |
IMPORT_C TInt MinimumLineDescent() const;
|
sl@0
|
643 |
IMPORT_C TInt DocumentLength() const;
|
sl@0
|
644 |
IMPORT_C TInt ToParagraphStart(TInt& aDocPos) const;
|
sl@0
|
645 |
IMPORT_C TInt PixelsAboveBand() const;
|
sl@0
|
646 |
IMPORT_C TInt YBottomLastFormattedLine() const;
|
sl@0
|
647 |
IMPORT_C TInt FormattedHeightInPixels() const;
|
sl@0
|
648 |
IMPORT_C TInt PosRangeInBand(TInt& aDocPos) const;
|
sl@0
|
649 |
IMPORT_C TBool PosInBand(const TTmDocPos& aDocPos,TTmLineInfo* aLineInfo = NULL) const;
|
sl@0
|
650 |
IMPORT_C TBool PosInBand(TTmDocPos aDocPos,TPoint& aXyPos) const;
|
sl@0
|
651 |
IMPORT_C TBool PosInBand(TInt aDocPos,TPoint& aXyPos) const;
|
sl@0
|
652 |
IMPORT_C TBool PosIsFormatted(TInt aDocPos) const;
|
sl@0
|
653 |
IMPORT_C TInt FirstCharOnLine(TInt aLineNo) const;
|
sl@0
|
654 |
IMPORT_C TInt FormattedLength() const;
|
sl@0
|
655 |
IMPORT_C TInt FirstFormattedPos() const;
|
sl@0
|
656 |
IMPORT_C TInt NumFormattedLines() const;
|
sl@0
|
657 |
IMPORT_C TInt FirstLineInBand() const;
|
sl@0
|
658 |
IMPORT_C TInt GetLineRect(TInt aYPos,TRect& aLine) const;
|
sl@0
|
659 |
IMPORT_C TInt ParagraphHeight(TInt aDocPos) const;
|
sl@0
|
660 |
IMPORT_C TRect ParagraphRectL(TInt aDocPos) const;
|
sl@0
|
661 |
IMPORT_C TBool CalculateHorizontalExtremesL(TInt& aLeftX,TInt& aRightX,TBool aOnlyVisibleLines,
|
sl@0
|
662 |
TBool aIgnoreWrapCharacters = FALSE) const;
|
sl@0
|
663 |
IMPORT_C void GetCharacterHeightAndAscentL(TInt aDocPos,TInt& aHeight,TInt& aAscent) const;
|
sl@0
|
664 |
IMPORT_C void GetFontHeightAndAscentL(const TFontSpec& aFontSpec,TInt& aHeight,TInt& aAscent) const;
|
sl@0
|
665 |
IMPORT_C TInt XyPosToDocPosL(TPoint &aPos, TUint aFlags = 0) const;
|
sl@0
|
666 |
IMPORT_C TBool DocPosToXyPosL(TInt aDocPos, TPoint& aPos, TUint aFlags = 0) const;
|
sl@0
|
667 |
IMPORT_C TBool FindXyPos(const TPoint& aXyPos,TTmPosInfo2& aPosInfo,TTmLineInfo* aLineInfo = NULL) const;
|
sl@0
|
668 |
IMPORT_C TBool FindDocPos(const TTmDocPosSpec& aDocPos,TTmPosInfo2& aPosInfo,TTmLineInfo* aLineInfo = NULL) const;
|
sl@0
|
669 |
IMPORT_C TRect GetLineRectL(TInt aDocPos1,TInt aDocPos2) const;
|
sl@0
|
670 |
IMPORT_C TBool PictureRectangleL(TInt aDocPos,TRect& aPictureRect,TBool* aCanScaleOrCrop = NULL) const;
|
sl@0
|
671 |
IMPORT_C TBool PictureRectangleL(const TPoint& aXyPos,TRect& aPictureRect,TBool* aCanScaleOrCrop = NULL) const;
|
sl@0
|
672 |
IMPORT_C TInt FirstDocPosFullyInBand() const;
|
sl@0
|
673 |
IMPORT_C void GetMinimumSizeL(TInt aWrapWidth,TSize& aSize);
|
sl@0
|
674 |
IMPORT_C void GetMinimumSizeL(TInt aWrapWidth,TBool aAllowLegalLineBreaksOnly,TSize& aSize);
|
sl@0
|
675 |
IMPORT_C TInt MajorVersion() const;
|
sl@0
|
676 |
IMPORT_C TInt SetViewL(const TTmDocPos& aDocPos,TInt& aYPos,TViewYPosQualifier aYPosQualifier,
|
sl@0
|
677 |
TDiscard aDiscardFormat = EFViewDontDiscardFormat);
|
sl@0
|
678 |
IMPORT_C TInt SetViewL(TInt aDocPos,TInt& aYPos,TViewYPosQualifier aYPosQualifier,
|
sl@0
|
679 |
TDiscard aDiscardFormat = EFViewDontDiscardFormat);
|
sl@0
|
680 |
IMPORT_C void FormatBandL();
|
sl@0
|
681 |
IMPORT_C void FormatCharRangeL(TInt aStartDocPos,TInt aEndDocPos);
|
sl@0
|
682 |
void FormatCharRangeL(TInt aStartDocPos,TInt aEndDocPos,TInt aPixelOffset);
|
sl@0
|
683 |
IMPORT_C TBool FormatNextLineL(TInt& aBotPixel);
|
sl@0
|
684 |
IMPORT_C TBool FormatLineL(CParaFormat* aParaFormat,TInt& aDocPos,TInt& aHeight,TBool& aPageBreak);
|
sl@0
|
685 |
IMPORT_C TInt ScrollParagraphsL(TInt& aNumParas,TAllowDisallow aScrollBlankSpace);
|
sl@0
|
686 |
IMPORT_C TInt ScrollLinesL(TInt& aNumLines,TAllowDisallow aScrollBlankSpace = EFDisallowScrollingBlankSpace);
|
sl@0
|
687 |
IMPORT_C TInt ChangeBandTopL(TInt& aPixels,TAllowDisallow aScrollBlankSpace = EFDisallowScrollingBlankSpace);
|
sl@0
|
688 |
IMPORT_C void ChangeBandTopNoLimitBorderL(TInt aPixels);
|
sl@0
|
689 |
IMPORT_C void PageUpL(TInt& aYCursorPos,TInt& aPixelsScrolled);
|
sl@0
|
690 |
IMPORT_C void PageDownL(TInt& aYCursorPos,TInt& aPixelsScrolled);
|
sl@0
|
691 |
IMPORT_C TBool HandleCharEditL(TUint aType,TInt& aCursorPos,TInt& aGood,TInt& aFormattedUpTo,
|
sl@0
|
692 |
TInt& aFormattedFrom,TInt& aScroll,TBool aFormatChanged);
|
sl@0
|
693 |
IMPORT_C void HandleBlockChangeL(TCursorSelection aSelection,TInt aOldCharsChanged,TViewRectChanges& aViewChanges,
|
sl@0
|
694 |
TBool aFormatChanged);
|
sl@0
|
695 |
IMPORT_C void HandleAdditionalCharactersAtEndL(TInt& aFirstPixel,TInt& aLastPixel);
|
sl@0
|
696 |
// deprecated 6.1
|
sl@0
|
697 |
IMPORT_C void ReformatVerticalSpaceL();
|
sl@0
|
698 |
IMPORT_C void AdjustVerticalAlignment(CParaFormat::TAlignment aVerticalAlignment);
|
sl@0
|
699 |
IMPORT_C static void DrawBorders(const MGraphicsDeviceMap* aGd,CGraphicsContext& aGc,const TRect& aRect,
|
sl@0
|
700 |
const TParaBorderArray& aBorder,const TRgb* aBackground = NULL,
|
sl@0
|
701 |
TRegion* aClipRegion = NULL,const TRect* aDrawRect = NULL);
|
sl@0
|
702 |
IMPORT_C void DrawL(const TRect& aDrawRect,const TDrawTextLayoutContext* aDrawTextLayoutContext,
|
sl@0
|
703 |
const TCursorSelection* aHighlight = NULL);
|
sl@0
|
704 |
IMPORT_C TBool GetNextVisualCursorPos(const TTmDocPosSpec& aDocPos,
|
sl@0
|
705 |
TTmPosInfo2& aPosInfo, TBool aToLeft) const;
|
sl@0
|
706 |
// deprecated 7.0
|
sl@0
|
707 |
IMPORT_C void InvertRangeL(const TCursorSelection& aHighlight,const TRect& aDrawRect,
|
sl@0
|
708 |
const TDrawTextLayoutContext* aDrawTextLayoutContext);
|
sl@0
|
709 |
IMPORT_C void Highlight(const TRangeChange& aHighlight,const TRect& aDrawRect,
|
sl@0
|
710 |
const TDrawTextLayoutContext* aDrawTextLayoutContext);
|
sl@0
|
711 |
IMPORT_C void SetCustomDraw(const MFormCustomDraw* aCustomDraw);
|
sl@0
|
712 |
IMPORT_C const MFormCustomDraw* CustomDraw() const;
|
sl@0
|
713 |
IMPORT_C void SetCustomWrap(const MFormCustomWrap* aCustomWrap);
|
sl@0
|
714 |
IMPORT_C const MFormCustomWrap* CustomWrap() const;
|
sl@0
|
715 |
/* this function should only used by Symbian internally */
|
sl@0
|
716 |
IMPORT_C void ExtendFormattingToCoverYL(TInt aYPos);
|
sl@0
|
717 |
IMPORT_C void ExtendFormattingToCoverPosL(TInt aDocPos);
|
sl@0
|
718 |
|
sl@0
|
719 |
IMPORT_C TInt GetLineNumber(TInt aDocPos);
|
sl@0
|
720 |
IMPORT_C void SetHighlightExtensions(TInt aLeftExtension, TInt aRightExtension, TInt aTopExtension, TInt aBottomExtension);
|
sl@0
|
721 |
void SetExcessHeightRequired(TInt aExcessHeightRequired);
|
sl@0
|
722 |
IMPORT_C void SetInterfaceProvider( MFormCustomInterfaceProvider* aProvider );
|
sl@0
|
723 |
inline const CTmTextLayout& TagmaTextLayout() const;
|
sl@0
|
724 |
inline void GetOrigin(TPoint& aPoint) const;
|
sl@0
|
725 |
|
sl@0
|
726 |
|
sl@0
|
727 |
inline void RestrictScrollToTopsOfLines(TBool aRestrict);
|
sl@0
|
728 |
|
sl@0
|
729 |
|
sl@0
|
730 |
// Non-exported public functions
|
sl@0
|
731 |
void DrawBackground(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,
|
sl@0
|
732 |
const TLogicalRgb& aBackground) const;
|
sl@0
|
733 |
TBool CalculateHorizontalExtremes(TInt& aLeftX,TInt& aRightX,TBool aOnlyVisibleLines) const;
|
sl@0
|
734 |
TBool GetCursor(const TTmDocPos& aDocPos,TTmCursorPlacement aPlacement,
|
sl@0
|
735 |
TRect& aLineRect,TPoint& aOrigin,TInt& aWidth,TInt& aAscent,TInt& aDescent) const;
|
sl@0
|
736 |
void GetParagraphRect(const TTmDocPos& aDocPos,TRect& aRect) const;
|
sl@0
|
737 |
TInt ScrollDocPosIntoViewL(const TTmDocPos& aDocPos);
|
sl@0
|
738 |
TInt PictureRectangleAndPosL(const TPoint& aXyPos, TRect& aPictureRect,
|
sl@0
|
739 |
TBool* aCanScaleOrCrop = 0) const;
|
sl@0
|
740 |
void HighlightUsingExtensions(const CTextLayout::TRangeChange& aChangeHighlight,const TRangeChange& aFullHighlight,
|
sl@0
|
741 |
const TRect& aDrawRect, const TDrawTextLayoutContext* aDrawTextLayoutContext);
|
sl@0
|
742 |
inline const TTmHighlightExtensions& HighlightExtensions() const;
|
sl@0
|
743 |
void GetHighlightRemnants(const TRect& aRect, const TDrawTextLayoutContext& aDrawTextLayoutContext, TRect* aRemainderRects) const;
|
sl@0
|
744 |
TInt WrapWidth() const;
|
sl@0
|
745 |
|
sl@0
|
746 |
void SetOpaqueLC();
|
sl@0
|
747 |
|
sl@0
|
748 |
IMPORT_C void SetCustomInvisibleCharacterRemapper(MFormCustomInvisibleCharacterRemapper* aInvisibleCharacterRemapper);
|
sl@0
|
749 |
IMPORT_C MFormCustomInvisibleCharacterRemapper* GetCustomInvisibleCharacterRemapper();
|
sl@0
|
750 |
void SetTextViewCursorPos(TCursorPosition* aPos); // Put in for INC092568
|
sl@0
|
751 |
|
sl@0
|
752 |
void SetWindow(RWindow* aWnd);
|
sl@0
|
753 |
void SetReadyToRedraw();
|
sl@0
|
754 |
void BeginRedraw(const TRect& aRect);
|
sl@0
|
755 |
void EndRedraw();
|
sl@0
|
756 |
void SetExternalDraw(const TRect& aRect);
|
sl@0
|
757 |
void ResetExternalDraw();
|
sl@0
|
758 |
TBool BeginRedrawCalled() const;
|
sl@0
|
759 |
IMPORT_C void MakeVisible(TBool aVisible);
|
sl@0
|
760 |
|
sl@0
|
761 |
#ifdef _DEBUG
|
sl@0
|
762 |
TBool __DbgIsFormattingUpToDate() const;
|
sl@0
|
763 |
#endif
|
sl@0
|
764 |
|
sl@0
|
765 |
enum TPanicNumber
|
sl@0
|
766 |
{
|
sl@0
|
767 |
EUnimplemented,
|
sl@0
|
768 |
ENoMemory,
|
sl@0
|
769 |
EDrawingBorderError,
|
sl@0
|
770 |
EFormatDeviceNotSet,
|
sl@0
|
771 |
EImageDeviceNotSet,
|
sl@0
|
772 |
EPixelNotInFormattedLine,
|
sl@0
|
773 |
EInvalidDocPos,
|
sl@0
|
774 |
ENoCharRangeToFormat,
|
sl@0
|
775 |
ECharacterNotFormatted,
|
sl@0
|
776 |
EPrintPreviewModeError,
|
sl@0
|
777 |
EBadCharacterEditType,
|
sl@0
|
778 |
EInvalidLineNumber,
|
sl@0
|
779 |
EPosNotFormatted,
|
sl@0
|
780 |
EMustFormatAllText,
|
sl@0
|
781 |
EPageScrollError,
|
sl@0
|
782 |
EInvalidRedraw
|
sl@0
|
783 |
};
|
sl@0
|
784 |
static void Panic(TPanicNumber aNumber);
|
sl@0
|
785 |
|
sl@0
|
786 |
private:
|
sl@0
|
787 |
IMPORT_C CTextLayout();
|
sl@0
|
788 |
IMPORT_C void ConstructL(MLayDoc *aDoc,TInt aWrapWidth);
|
sl@0
|
789 |
void InitFormatParam(TTmFormatParamBase& aParam);
|
sl@0
|
790 |
TInt ScrollL(TInt aDy,TAllowDisallow aScrollBlankSpace,TBool aTopNoLimitBorder=EFalse,TBool aBottomNoLimitBorder=EFalse);
|
sl@0
|
791 |
void FormatBandL(TInt aStartDocPos,TInt aEndDocPos);
|
sl@0
|
792 |
void PruneFormatL(TBool aFromStart);
|
sl@0
|
793 |
TInt VisibleHeightInPixels() const;
|
sl@0
|
794 |
TInt BandHeightInPixels() const;
|
sl@0
|
795 |
TInt SuggestCursorPos(TInt aCurrentCursorPos) const;
|
sl@0
|
796 |
TInt SetBandTop();
|
sl@0
|
797 |
TBool AddFormattingAtEndL(TTmFormatParamBase& aFormatParam, TInt& aHeightIncrease, TInt& aParagraphsIncrease);
|
sl@0
|
798 |
|
sl@0
|
799 |
static void ResetOpaque(void* aThis);
|
sl@0
|
800 |
|
sl@0
|
801 |
|
sl@0
|
802 |
CTmTextLayout *iText; // the TAGMA object that contains the text layout
|
sl@0
|
803 |
TInt iDummyForIText[10]; // It is only here to add padding for maintain compatibility
|
sl@0
|
804 |
TInt iExcessHeightRequired; // The delta required to position the baseline so there is enough
|
sl@0
|
805 |
// space for the highset glyph in pixels
|
sl@0
|
806 |
RWindow *iWnd; // the window to be used to draw
|
sl@0
|
807 |
TBool iBeginRedrawCount;
|
sl@0
|
808 |
TRect iRedrawRect;
|
sl@0
|
809 |
TCursorPosition* iTextViewCursorPos; // From and owned by owning CTextView if it exists,
|
sl@0
|
810 |
// Null otherwise. Put in for INC092568
|
sl@0
|
811 |
TBool iIsWndInExternalRedraw; // If ETrue, then iWnd->EndRedraw() will not be called
|
sl@0
|
812 |
// from within CTextLayout::EndRedraw() as the window redraw
|
sl@0
|
813 |
// has been initiated externally and will be ended externally as well
|
sl@0
|
814 |
TBool iReadyToRedraw; // If EFalse, disables CTextLayout::BeginRedraw() and
|
sl@0
|
815 |
// CTextLayout::EndRedraw()
|
sl@0
|
816 |
TInt iDummy[4]; // This dummy variable has been inserted to replace the original size of
|
sl@0
|
817 |
// a variable that had to be moved to avaid a BC break because it had
|
sl@0
|
818 |
// increased in size. Feel free to reuse this space - just reduce the size
|
sl@0
|
819 |
// of this variable by the size of any variable you insert in front of it.
|
sl@0
|
820 |
// Currently it occupies 5 words.
|
sl@0
|
821 |
TInt iBandTop; // effectively, scroll position: subtract this from CTmTextLayout y position
|
sl@0
|
822 |
// to give CTextLayout y position
|
sl@0
|
823 |
TInt iVisibleHeight;// in pixels if iFormatMode is EFScreenMode or EFWysiwygMode, otherwise twips
|
sl@0
|
824 |
TInt iBandHeight; // in pixels if iFormatMode is EFScreenMode or EFWysiwygMode, otherwise twips
|
sl@0
|
825 |
|
sl@0
|
826 |
TInt iScrollFlags; // from CTextLayout::TScrollFlags
|
sl@0
|
827 |
TInt iUnformattedStart; // document position of the start of any unformatted text;
|
sl@0
|
828 |
// if < KMaxTInt, background formatting can be used
|
sl@0
|
829 |
// (by calling FormatNextLine) to format the remainder
|
sl@0
|
830 |
TBool iParInvalid; // if true and background formatting is happening, the remainder of the paragraph
|
sl@0
|
831 |
// containing iUnformattedStart is invalid and must be reformatted;
|
sl@0
|
832 |
// otherwise, formatting stops when line ends match
|
sl@0
|
833 |
TTmHighlightExtensions *iHighlightExtensions;
|
sl@0
|
834 |
TInt iDmmyForIHighlightExtensions[3]; // It is only here to add padding for maintain compatibility
|
sl@0
|
835 |
TLayDocTextSource* iSource; // the source of the text
|
sl@0
|
836 |
// before adding any new member variables to the end of this class, please
|
sl@0
|
837 |
// consider whether you can insert them before the iDummy member variable
|
sl@0
|
838 |
// further up, which currently represents wasted space.
|
sl@0
|
839 |
TInt iDmmyForISource[23]; // It is only here to add padding for maintain compatibility
|
sl@0
|
840 |
};
|
sl@0
|
841 |
|
sl@0
|
842 |
/**
|
sl@0
|
843 |
Cursor position.
|
sl@0
|
844 |
|
sl@0
|
845 |
The TMovementType enum defined in this class is used to indicate the direction
|
sl@0
|
846 |
of a scroll or cursor movement. The remainder of this class does not form part
|
sl@0
|
847 |
of the API.
|
sl@0
|
848 |
@publishedAll
|
sl@0
|
849 |
@released
|
sl@0
|
850 |
*/
|
sl@0
|
851 |
class TCursorPosition
|
sl@0
|
852 |
|
sl@0
|
853 |
{
|
sl@0
|
854 |
public:
|
sl@0
|
855 |
|
sl@0
|
856 |
|
sl@0
|
857 |
/** Direction of cursor movement. */
|
sl@0
|
858 |
enum TMovementType
|
sl@0
|
859 |
{
|
sl@0
|
860 |
/** No cursor movement */
|
sl@0
|
861 |
EFNoMovement,
|
sl@0
|
862 |
/** Single character cursor movement to the left */
|
sl@0
|
863 |
EFLeft,
|
sl@0
|
864 |
/** Single character cursor movement to the right */
|
sl@0
|
865 |
EFRight,
|
sl@0
|
866 |
/** Line up cursor movement */
|
sl@0
|
867 |
EFLineUp,
|
sl@0
|
868 |
/** Line down cursor movement */
|
sl@0
|
869 |
EFLineDown,
|
sl@0
|
870 |
/** Page up cursor movement */
|
sl@0
|
871 |
EFPageUp,
|
sl@0
|
872 |
/** Page down cursor movement */
|
sl@0
|
873 |
EFPageDown,
|
sl@0
|
874 |
/** Cursor movement to line start */
|
sl@0
|
875 |
EFLineBeg,
|
sl@0
|
876 |
/** Cursor movement to line end */
|
sl@0
|
877 |
EFLineEnd
|
sl@0
|
878 |
};
|
sl@0
|
879 |
|
sl@0
|
880 |
/** Selection of the left end or right end of a run of text. */
|
sl@0
|
881 |
enum TVisualEnd
|
sl@0
|
882 |
{
|
sl@0
|
883 |
/** Leftmost end. */
|
sl@0
|
884 |
EVisualLeft,
|
sl@0
|
885 |
/** Rightmost end. */
|
sl@0
|
886 |
EVisualRight
|
sl@0
|
887 |
};
|
sl@0
|
888 |
|
sl@0
|
889 |
enum TPosHint
|
sl@0
|
890 |
{
|
sl@0
|
891 |
EPosHintUndefined = 0,
|
sl@0
|
892 |
/** Left to right typing expected. */
|
sl@0
|
893 |
EInsertStrongL2R = 1,
|
sl@0
|
894 |
/** Right to left typing expected. */
|
sl@0
|
895 |
EInsertStrongR2L = 2,
|
sl@0
|
896 |
|
sl@0
|
897 |
// Maybe several more.
|
sl@0
|
898 |
//...
|
sl@0
|
899 |
EPosHintLast
|
sl@0
|
900 |
};
|
sl@0
|
901 |
|
sl@0
|
902 |
inline TCursorPosition();
|
sl@0
|
903 |
inline void SetLayout(CTextLayout *aLayout);
|
sl@0
|
904 |
inline void UpdateLatentX(TInt aX);
|
sl@0
|
905 |
inline void SetToPreviousHighlight();
|
sl@0
|
906 |
inline void SetToCurrentHighlight();
|
sl@0
|
907 |
inline void CancelHighlight();
|
sl@0
|
908 |
inline void SetDocPos(const TTmDocPos& aDocPos);
|
sl@0
|
909 |
void UpdateLatentPosition();
|
sl@0
|
910 |
TInt SetSelectionL(const TCursorSelection& aSelection);
|
sl@0
|
911 |
void SetPendingSelection(const TCursorSelection& aSelection);
|
sl@0
|
912 |
void GetOldSelection(TCursorSelection& aSelection) const;
|
sl@0
|
913 |
void GetSelection(TCursorSelection& aSelection) const;
|
sl@0
|
914 |
TInt SetDocPosL(TBool aDragSelectOn,const TTmDocPos& aDocPos);
|
sl@0
|
915 |
TInt SetXyPosL(TBool aDragSelectOn,TPoint aPos,TBool aAllowPictureFrame);
|
sl@0
|
916 |
TInt MoveL(TBool aDragSelectOn,TMovementType& aMovement,TBool aAllowPictureFrame);
|
sl@0
|
917 |
const TTmDocPos& VisualEndOfRunL(
|
sl@0
|
918 |
const TTmDocPos& aStart, const TTmDocPos& aEnd,
|
sl@0
|
919 |
TVisualEnd aDirection);
|
sl@0
|
920 |
void TextMoveVertically();
|
sl@0
|
921 |
inline void DontDrawOldPictureFrame();
|
sl@0
|
922 |
|
sl@0
|
923 |
// inquiry functions
|
sl@0
|
924 |
inline TBool IsSelection() const;
|
sl@0
|
925 |
inline TBool IsSelectionToDraw() const;
|
sl@0
|
926 |
TBool IsPictureFrame() const;
|
sl@0
|
927 |
TBool IsNewPictureFrame() const;
|
sl@0
|
928 |
inline const TTmDocPos& TmDocPos() const;
|
sl@0
|
929 |
inline TInt DocPos() const;
|
sl@0
|
930 |
inline TBool DrawHighlight() const;
|
sl@0
|
931 |
inline TBool DrawOldPictureFrame() const;
|
sl@0
|
932 |
inline TBool DrawNewPictureFrame() const;
|
sl@0
|
933 |
TBool GetCursor(TTmCursorPlacement aPlacement,TPoint& aOrigin,TInt& aWidth,TInt& aAscent,TInt& aDescent) const;
|
sl@0
|
934 |
TPosHint PositioningHint() const { return iPositioningHint; }
|
sl@0
|
935 |
void SetPositioningHint (TPosHint aHint)
|
sl@0
|
936 |
{iPositioningHint = aHint;}
|
sl@0
|
937 |
|
sl@0
|
938 |
TTmPosInfo2& ChoosePosition(TTmPosInfo2& aPreferred,
|
sl@0
|
939 |
TTmPosInfo2& aBackup);
|
sl@0
|
940 |
|
sl@0
|
941 |
private:
|
sl@0
|
942 |
enum
|
sl@0
|
943 |
{
|
sl@0
|
944 |
EFAbove = -1,
|
sl@0
|
945 |
EFInside = 0,
|
sl@0
|
946 |
EFBelow = 1
|
sl@0
|
947 |
};
|
sl@0
|
948 |
|
sl@0
|
949 |
// bit values for iFlags
|
sl@0
|
950 |
enum
|
sl@0
|
951 |
{
|
sl@0
|
952 |
EDrawHighlight = 1,
|
sl@0
|
953 |
EDrawOldPictureFrame = 2,
|
sl@0
|
954 |
EDrawNewPictureFrame = 4,
|
sl@0
|
955 |
EReturnPreviousHighlight = 8,
|
sl@0
|
956 |
ESelected = 16
|
sl@0
|
957 |
};
|
sl@0
|
958 |
|
sl@0
|
959 |
TInt ViewTopOfLineL(const TTmDocPos& aDocPos,TInt& aYPos);
|
sl@0
|
960 |
void CheckSelection(TBool aSelect);
|
sl@0
|
961 |
void CheckNullSelection();
|
sl@0
|
962 |
inline void UpdateLatentY(TInt aY);
|
sl@0
|
963 |
TInt CheckCursorOnScreenL(TInt& aY);
|
sl@0
|
964 |
TBool LeftRightL(TTmPosInfo2& aPos, TTmLineInfo& aLine, TMovementType& aMove);
|
sl@0
|
965 |
void StartEnd(TTmPosInfo2& aPos, TTmLineInfo& aLine, TMovementType& aMove);
|
sl@0
|
966 |
void UpDownL(TTmPosInfo2& aPos, TTmLineInfo& aLine, TMovementType& aMove);
|
sl@0
|
967 |
TInt PageScrollL(TMovementType& aMove);
|
sl@0
|
968 |
TInt DoSetDocPosL(const TTmDocPos& aDocPos);
|
sl@0
|
969 |
TInt DoSetVisibleDocPosL(const TTmDocPos& aDocPos);
|
sl@0
|
970 |
void DoSetXyPos(TPoint& aXy);
|
sl@0
|
971 |
void SetPictureFrame(const TTmDocPos& aDocPos,TInt aAnchor,const TRect& aPictureRect);
|
sl@0
|
972 |
inline TBool CalculateCursorPos(TPoint& aCurPos);
|
sl@0
|
973 |
|
sl@0
|
974 |
TTmDocPos iDocPos;
|
sl@0
|
975 |
TInt iAnchor;
|
sl@0
|
976 |
TInt iOldDocPos;
|
sl@0
|
977 |
TInt iOldAnchor;
|
sl@0
|
978 |
TUint iFlags;
|
sl@0
|
979 |
TInt iLatentX;
|
sl@0
|
980 |
TInt iLatentY;
|
sl@0
|
981 |
CTextLayout* iLayout;
|
sl@0
|
982 |
TPosHint iPositioningHint;
|
sl@0
|
983 |
};
|
sl@0
|
984 |
|
sl@0
|
985 |
// inline functions
|
sl@0
|
986 |
inline const CTmTextLayout& CTextLayout::TagmaTextLayout() const
|
sl@0
|
987 |
{
|
sl@0
|
988 |
return *iText;
|
sl@0
|
989 |
}
|
sl@0
|
990 |
|
sl@0
|
991 |
inline void CTextLayout::GetOrigin(TPoint& aPoint) const
|
sl@0
|
992 |
{
|
sl@0
|
993 |
aPoint.iX = 0;
|
sl@0
|
994 |
aPoint.iY = -iBandTop;
|
sl@0
|
995 |
}
|
sl@0
|
996 |
|
sl@0
|
997 |
inline CTextLayout::TTagmaForwarder::TTagmaForwarder(const CTextLayout& aLayout):
|
sl@0
|
998 |
iLayout(aLayout)
|
sl@0
|
999 |
{
|
sl@0
|
1000 |
}
|
sl@0
|
1001 |
|
sl@0
|
1002 |
inline const CTmTextLayout& CTextLayout::TTagmaForwarder::TextLayout() const
|
sl@0
|
1003 |
{
|
sl@0
|
1004 |
return iLayout.TagmaTextLayout();
|
sl@0
|
1005 |
}
|
sl@0
|
1006 |
|
sl@0
|
1007 |
inline void CTextLayout::TTagmaForwarder::GetOrigin(TPoint& aPoint) const
|
sl@0
|
1008 |
{
|
sl@0
|
1009 |
iLayout.GetOrigin(aPoint);
|
sl@0
|
1010 |
}
|
sl@0
|
1011 |
|
sl@0
|
1012 |
inline const TTmHighlightExtensions& CTextLayout::HighlightExtensions() const
|
sl@0
|
1013 |
{
|
sl@0
|
1014 |
return *iHighlightExtensions;
|
sl@0
|
1015 |
}
|
sl@0
|
1016 |
|
sl@0
|
1017 |
/**
|
sl@0
|
1018 |
Dangerous function. Makes scroll operations set the top of the screen flush to
|
sl@0
|
1019 |
the top of a line. In general this might scroll the cursor off the screen.
|
sl@0
|
1020 |
*/
|
sl@0
|
1021 |
void CTextLayout::RestrictScrollToTopsOfLines(TBool a)
|
sl@0
|
1022 |
{
|
sl@0
|
1023 |
if (a)
|
sl@0
|
1024 |
iScrollFlags |= EFScrollOnlyToTopsOfLines;
|
sl@0
|
1025 |
else
|
sl@0
|
1026 |
iScrollFlags &= ~EFScrollOnlyToTopsOfLines;
|
sl@0
|
1027 |
}
|
sl@0
|
1028 |
|
sl@0
|
1029 |
/**Constructs a fully initialized TViewYPosQualifier object. The hotspot is
|
sl@0
|
1030 |
initialized to be the baseline of the line, the screen is not filled, and the
|
sl@0
|
1031 |
top line is not forced to be fully visible. */
|
sl@0
|
1032 |
inline TViewYPosQualifier::TViewYPosQualifier():
|
sl@0
|
1033 |
iHotSpot(EFViewBaseLine),
|
sl@0
|
1034 |
iFillScreen(EFalse),
|
sl@0
|
1035 |
iFullyVisible(EFViewDontForceLineFullyVisible)
|
sl@0
|
1036 |
{
|
sl@0
|
1037 |
}
|
sl@0
|
1038 |
|
sl@0
|
1039 |
|
sl@0
|
1040 |
/**Constructs a TViewRectChanges object, initializing its iScrollAtTop and
|
sl@0
|
1041 |
iScrollAtBottom members to zero. */
|
sl@0
|
1042 |
inline TViewRectChanges::TViewRectChanges():
|
sl@0
|
1043 |
iScrollAtTop(0),
|
sl@0
|
1044 |
iScrollAtBottom(0)
|
sl@0
|
1045 |
{
|
sl@0
|
1046 |
}
|
sl@0
|
1047 |
|
sl@0
|
1048 |
/**Constructs the TCursorSelection object initialising the cursor and anchor
|
sl@0
|
1049 |
positions to zero. */
|
sl@0
|
1050 |
inline TCursorSelection::TCursorSelection():
|
sl@0
|
1051 |
iCursorPos(0),
|
sl@0
|
1052 |
iAnchorPos(0)
|
sl@0
|
1053 |
{
|
sl@0
|
1054 |
}
|
sl@0
|
1055 |
|
sl@0
|
1056 |
/** Constructs the TCursorSelection object with a cursor and anchor position.
|
sl@0
|
1057 |
@param aCursorPos The cursor position.
|
sl@0
|
1058 |
@param aAnchorPos The anchor position. */
|
sl@0
|
1059 |
inline TCursorSelection::TCursorSelection(TInt aCursorPos,TInt aAnchorPos):
|
sl@0
|
1060 |
iCursorPos(aCursorPos),
|
sl@0
|
1061 |
iAnchorPos(aAnchorPos)
|
sl@0
|
1062 |
{
|
sl@0
|
1063 |
}
|
sl@0
|
1064 |
|
sl@0
|
1065 |
/** Sets the cursor and anchor positions for the selection.
|
sl@0
|
1066 |
@param aCursorPos The new cursor position.
|
sl@0
|
1067 |
@param aAnchorPos The new anchor position. */
|
sl@0
|
1068 |
inline void TCursorSelection::SetSelection(TInt aCursorPos,TInt aAnchorPos)
|
sl@0
|
1069 |
{
|
sl@0
|
1070 |
iCursorPos = aCursorPos;
|
sl@0
|
1071 |
iAnchorPos = aAnchorPos;
|
sl@0
|
1072 |
}
|
sl@0
|
1073 |
|
sl@0
|
1074 |
/** Gets the lesser of the cursor and anchor positions.
|
sl@0
|
1075 |
@return The lesser of the cursor and anchor positions. */
|
sl@0
|
1076 |
inline TInt TCursorSelection::LowerPos() const
|
sl@0
|
1077 |
{
|
sl@0
|
1078 |
return Min(iCursorPos,iAnchorPos);
|
sl@0
|
1079 |
}
|
sl@0
|
1080 |
|
sl@0
|
1081 |
/** Gets the greater of the cursor and anchor positions.
|
sl@0
|
1082 |
@return The greater of the cursor and anchor positions. */
|
sl@0
|
1083 |
inline TInt TCursorSelection::HigherPos() const
|
sl@0
|
1084 |
{
|
sl@0
|
1085 |
return Max(iCursorPos,iAnchorPos);
|
sl@0
|
1086 |
}
|
sl@0
|
1087 |
|
sl@0
|
1088 |
/** Returns the number of characters in the selected range.
|
sl@0
|
1089 |
@return The length of the selection. */
|
sl@0
|
1090 |
inline TInt TCursorSelection::Length() const
|
sl@0
|
1091 |
{
|
sl@0
|
1092 |
return Abs(iCursorPos - iAnchorPos);
|
sl@0
|
1093 |
}
|
sl@0
|
1094 |
|
sl@0
|
1095 |
/** Constructs the TCursorPosition object, initializing its members
|
sl@0
|
1096 |
iAnchor, iOldDocPos, iOldAnchor, iFlags, iLatentX, iLatentY to
|
sl@0
|
1097 |
zero, iLayout to NULL, and iPositioningHint to undefined.
|
sl@0
|
1098 |
*/
|
sl@0
|
1099 |
inline TCursorPosition::TCursorPosition():
|
sl@0
|
1100 |
iAnchor(0),
|
sl@0
|
1101 |
iOldDocPos(0),
|
sl@0
|
1102 |
iOldAnchor(0),
|
sl@0
|
1103 |
iFlags(0),
|
sl@0
|
1104 |
iLatentX(0),
|
sl@0
|
1105 |
iLatentY(0),
|
sl@0
|
1106 |
iLayout(NULL),
|
sl@0
|
1107 |
iPositioningHint(EPosHintUndefined)
|
sl@0
|
1108 |
{
|
sl@0
|
1109 |
}
|
sl@0
|
1110 |
|
sl@0
|
1111 |
/** Sets the text layout which TCursorPosition is related.
|
sl@0
|
1112 |
@param aLayout The text layout.
|
sl@0
|
1113 |
*/
|
sl@0
|
1114 |
inline void TCursorPosition::SetLayout(CTextLayout *aLayout)
|
sl@0
|
1115 |
{
|
sl@0
|
1116 |
iLayout = aLayout;
|
sl@0
|
1117 |
}
|
sl@0
|
1118 |
|
sl@0
|
1119 |
/** Tests whether there is currently a selected region.
|
sl@0
|
1120 |
@return True if there is a selected region. False if not. */
|
sl@0
|
1121 |
inline TBool TCursorPosition::IsSelection() const
|
sl@0
|
1122 |
{
|
sl@0
|
1123 |
return iFlags & ESelected;
|
sl@0
|
1124 |
}
|
sl@0
|
1125 |
|
sl@0
|
1126 |
/** Tests whether there is currently a highlighted region being drawn.
|
sl@0
|
1127 |
@return True if there is a selected region. False if not. */
|
sl@0
|
1128 |
inline TBool TCursorPosition::IsSelectionToDraw() const
|
sl@0
|
1129 |
{
|
sl@0
|
1130 |
return iFlags & (EDrawHighlight | EDrawOldPictureFrame | EDrawNewPictureFrame);
|
sl@0
|
1131 |
}
|
sl@0
|
1132 |
|
sl@0
|
1133 |
/** Sets the flag which directs <code>GetSelection()</code> and
|
sl@0
|
1134 |
<code>IsPictureFrame()</code> to operate on the previous highlight
|
sl@0
|
1135 |
instead of the current highlight.
|
sl@0
|
1136 |
*/
|
sl@0
|
1137 |
inline void TCursorPosition::SetToPreviousHighlight()
|
sl@0
|
1138 |
{
|
sl@0
|
1139 |
iFlags |= EReturnPreviousHighlight;
|
sl@0
|
1140 |
}
|
sl@0
|
1141 |
|
sl@0
|
1142 |
/** Clears the special flag set in <code>SetToPreviousHighlight()</code>
|
sl@0
|
1143 |
so that <code>GetSelection()</code> and <code>IsPictureFrame()</code>
|
sl@0
|
1144 |
will operate on the current highlight.
|
sl@0
|
1145 |
*/
|
sl@0
|
1146 |
inline void TCursorPosition::SetToCurrentHighlight()
|
sl@0
|
1147 |
{
|
sl@0
|
1148 |
iFlags &= ~EReturnPreviousHighlight;
|
sl@0
|
1149 |
}
|
sl@0
|
1150 |
|
sl@0
|
1151 |
/** Removes the selection, and redraws the affected part of the screen.
|
sl@0
|
1152 |
*/
|
sl@0
|
1153 |
inline void TCursorPosition::CancelHighlight()
|
sl@0
|
1154 |
{
|
sl@0
|
1155 |
iFlags &= ~(ESelected | EDrawHighlight | EDrawOldPictureFrame | EDrawNewPictureFrame);
|
sl@0
|
1156 |
}
|
sl@0
|
1157 |
|
sl@0
|
1158 |
/** Sets the latent horizontal text cursor position. This is the horizontal
|
sl@0
|
1159 |
coordinate to which the text cursor will be moved.
|
sl@0
|
1160 |
@param aX The horizontal coordinate to which the text cursor should be moved
|
sl@0
|
1161 |
*/
|
sl@0
|
1162 |
inline void TCursorPosition::UpdateLatentX(TInt aX)
|
sl@0
|
1163 |
{
|
sl@0
|
1164 |
iLatentX = aX;
|
sl@0
|
1165 |
}
|
sl@0
|
1166 |
|
sl@0
|
1167 |
/** Sets the latent vertical text cursor position. This is the vertical
|
sl@0
|
1168 |
coordinate to which the text cursor will be moved.
|
sl@0
|
1169 |
@param aY The vertical coordinate to which the text cursor should be moved
|
sl@0
|
1170 |
*/
|
sl@0
|
1171 |
inline void TCursorPosition::UpdateLatentY(TInt aY)
|
sl@0
|
1172 |
{
|
sl@0
|
1173 |
iLatentY = aY;
|
sl@0
|
1174 |
}
|
sl@0
|
1175 |
|
sl@0
|
1176 |
/** Caculate x-y position of the cursor
|
sl@0
|
1177 |
If ETrue is returned, places the position of the intersection of
|
sl@0
|
1178 |
the character edge with the baseline in aPos
|
sl@0
|
1179 |
@param aPos On return, stores the position of the intersection of
|
sl@0
|
1180 |
the character edge with the baseline
|
sl@0
|
1181 |
@return ETrue if the document is in the formatted text, otherwise EFalse.
|
sl@0
|
1182 |
*/
|
sl@0
|
1183 |
inline TBool TCursorPosition::CalculateCursorPos(TPoint& aPos)
|
sl@0
|
1184 |
{
|
sl@0
|
1185 |
TTmPosInfo2 pos_info;
|
sl@0
|
1186 |
TBool result = iLayout->FindDocPos(iDocPos,pos_info);
|
sl@0
|
1187 |
aPos = pos_info.iEdge;
|
sl@0
|
1188 |
return result;
|
sl@0
|
1189 |
}
|
sl@0
|
1190 |
|
sl@0
|
1191 |
/** Gets the document position, the structure for holding a raw document
|
sl@0
|
1192 |
position that can be converted to or from an x-y position and compared
|
sl@0
|
1193 |
ordinally, which cannot be done with the more abstract TTmDocPosSpec class.
|
sl@0
|
1194 |
@return the document position
|
sl@0
|
1195 |
*/
|
sl@0
|
1196 |
inline const TTmDocPos& TCursorPosition::TmDocPos() const
|
sl@0
|
1197 |
{
|
sl@0
|
1198 |
return iDocPos;
|
sl@0
|
1199 |
}
|
sl@0
|
1200 |
/** Gets the edge position in the document.
|
sl@0
|
1201 |
@return the edge position in the document.
|
sl@0
|
1202 |
*/
|
sl@0
|
1203 |
inline TInt TCursorPosition::DocPos() const
|
sl@0
|
1204 |
{
|
sl@0
|
1205 |
return iDocPos.iPos;
|
sl@0
|
1206 |
}
|
sl@0
|
1207 |
|
sl@0
|
1208 |
/** Sets the document position, the structure for holding a raw document
|
sl@0
|
1209 |
position that can be converted to or from an x-y position and compared
|
sl@0
|
1210 |
ordinally, which cannot be done with the more abstract TTmDocPosSpec class.
|
sl@0
|
1211 |
@param aDocPos the document position
|
sl@0
|
1212 |
*/
|
sl@0
|
1213 |
inline void TCursorPosition::SetDocPos(const TTmDocPos& aDocPos)
|
sl@0
|
1214 |
{
|
sl@0
|
1215 |
iDocPos = aDocPos;
|
sl@0
|
1216 |
}
|
sl@0
|
1217 |
|
sl@0
|
1218 |
/** Tests whether the highlighted region needs to be drawn.
|
sl@0
|
1219 |
The function will be called by CTextView::UpdateHighlightL()
|
sl@0
|
1220 |
to correct the highlight after a cursor movement
|
sl@0
|
1221 |
@return True if the highlighted region needs to be drawn. False if not. */
|
sl@0
|
1222 |
inline TBool TCursorPosition::DrawHighlight() const
|
sl@0
|
1223 |
{
|
sl@0
|
1224 |
return iFlags & EDrawHighlight;
|
sl@0
|
1225 |
}
|
sl@0
|
1226 |
|
sl@0
|
1227 |
/** Tests whether there is a previous picture frame that needs to be drawn.
|
sl@0
|
1228 |
The function will be called by CTextView::UpdateHighlightL()
|
sl@0
|
1229 |
to correct the highlight after a cursor movement
|
sl@0
|
1230 |
@return True if there is a previous picture frame that needs to be drawn. False if not. */
|
sl@0
|
1231 |
inline TBool TCursorPosition::DrawOldPictureFrame() const
|
sl@0
|
1232 |
{
|
sl@0
|
1233 |
return iFlags & EDrawOldPictureFrame;
|
sl@0
|
1234 |
}
|
sl@0
|
1235 |
|
sl@0
|
1236 |
/** Tests whether there is a new picture frame that needs to be drawn.
|
sl@0
|
1237 |
The function will be called by CTextView::UpdateHighlightL()
|
sl@0
|
1238 |
to correct the highlight after a cursor movement
|
sl@0
|
1239 |
@return True if there is a new picture frame that needs to be drawn. False if not. */
|
sl@0
|
1240 |
inline TBool TCursorPosition::DrawNewPictureFrame() const
|
sl@0
|
1241 |
{
|
sl@0
|
1242 |
return iFlags & EDrawNewPictureFrame;
|
sl@0
|
1243 |
}
|
sl@0
|
1244 |
|
sl@0
|
1245 |
/** Sets to not draw the previous picture frame
|
sl@0
|
1246 |
*/
|
sl@0
|
1247 |
inline void TCursorPosition::DontDrawOldPictureFrame()
|
sl@0
|
1248 |
{
|
sl@0
|
1249 |
iFlags &= ~EDrawOldPictureFrame;
|
sl@0
|
1250 |
}
|
sl@0
|
1251 |
|
sl@0
|
1252 |
#endif
|