os/textandloc/textrendering/textformatting/inc/FRMTVIEW.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 __FRMTVIEW_H__
sl@0
    20
#define __FRMTVIEW_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <w32std.h>
sl@0
    25
#include <frmtlay.h>
sl@0
    26
#include <frmframe.h>
sl@0
    27
sl@0
    28
/**
sl@0
    29
Internal class - not part of interface
sl@0
    30
@internalComponent
sl@0
    31
*/
sl@0
    32
class RScreenDisplay
sl@0
    33
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	enum TClippingRects
sl@0
    37
		{
sl@0
    38
		EFClipTextArea = 0x0001,
sl@0
    39
		EFClipLineCursor = 0x0002,
sl@0
    40
		EFClipExtendedTextArea = 0x0004,
sl@0
    41
		EFClipViewRect = 0x0008,
sl@0
    42
		EFClipExtendedViewRect = 0x0010,
sl@0
    43
		EFClipInvalid = 0x0200,
sl@0
    44
		EFClipAllFlags = 0xFFFF
sl@0
    45
		};
sl@0
    46
public:
sl@0
    47
	RScreenDisplay(TDrawTextLayoutContext* const aDrawTextLayoutContext); 
sl@0
    48
	void Close();
sl@0
    49
	void Destroy();
sl@0
    50
	void SetWindowsServer(RWsSession *aSession) { iSession = aSession; }
sl@0
    51
	void SetWindowGroup(RWindowGroup *aWin) { iGroupWin = aWin; }
sl@0
    52
	
sl@0
    53
	void SetWindow(RWindow *aWin);
sl@0
    54
	RWindow* Window() const { return iWin; }
sl@0
    55
	void SetBitmapContext(CBitmapContext* aGc) { iGc = aGc; }
sl@0
    56
	CBitmapContext* BitmapContext() const { return iGc; }
sl@0
    57
	RWsSession* WindowServerSession() { return iSession; }
sl@0
    58
	void SetGraphicsDeviceL(CBitmapDevice *aGd);
sl@0
    59
	CBitmapDevice* BitmapDevice() const {return iGd; }
sl@0
    60
	void CreateContextL(CBitmapDevice *aGd);
sl@0
    61
	void CreateContextL();
sl@0
    62
	void SetInvalidRect(const TRect& aRect);
sl@0
    63
	void SetInvalidRect(TInt aHeight);
sl@0
    64
	void SetInvalidRectHorizontal(TInt aWidth);
sl@0
    65
	void SetRects(TUint aRects);
sl@0
    66
	TRect LineCursorMargin() const;
sl@0
    67
	TPoint TopLeftTextArea() const;
sl@0
    68
	TBool IsLineCursor() const;
sl@0
    69
	
sl@0
    70
	void AddRects(TUint aRects);
sl@0
    71
	void SubRects(TUint aRects);
sl@0
    72
	TRect ClippingRect();	
sl@0
    73
	void ResetClippingRect();	
sl@0
    74
	void Scroll(TRect aRect,const TPoint& aBy,TBool aScrollBackground);
sl@0
    75
	void Flush();
sl@0
    76
	void ClearRect(const TRect& aRect);
sl@0
    77
	void InvertRect(TRect aRect,const TRgb aInvertColor);
sl@0
    78
	void SetTextCursor(TPoint aPos, const TTextCursor &aCursor);
sl@0
    79
	void RemoveTextCursor();
sl@0
    80
	void BlastBitmap(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aRect);
sl@0
    81
	void DrawPictureFrame(TFrameOverlay* aPictureFrame,const TRect& aLineRect);
sl@0
    82
	void Invalidate(TRect aRect);
sl@0
    83
	void ActivateContext();
sl@0
    84
	void ActivateContext(CGraphicsContext *aGc);
sl@0
    85
	void DeactivateContext();
sl@0
    86
	void DeactivateContext(CGraphicsContext *aGc);
sl@0
    87
	void SetLayout(CTextLayout* aLayout);
sl@0
    88
	CTextLayout* Layout();
sl@0
    89
	TBool UseWindowGc() const;
sl@0
    90
sl@0
    91
private:
sl@0
    92
	void DestroyContexts();
sl@0
    93
private:
sl@0
    94
	RWsSession *iSession;
sl@0
    95
	RWindowGroup *iGroupWin;
sl@0
    96
	RWindow *iWin;
sl@0
    97
	CBitmapContext *iGc;
sl@0
    98
	CBitmapDevice *iGd;
sl@0
    99
	TDrawTextLayoutContext* const iDrawTextLayoutContext;
sl@0
   100
	TUint iRects;
sl@0
   101
	TRect iInvalidRect;
sl@0
   102
	TLogicalRgb iBackground;
sl@0
   103
	CTextLayout* iTextLayout;
sl@0
   104
	};
sl@0
   105
sl@0
   106
/** Visibility of line and text cursor.
sl@0
   107
sl@0
   108
The TVisibility enumeration defined in this class is used in calls to CTextView::SetCursorVisibilityL(). 
sl@0
   109
The remainder of this class does not form part of the API.
sl@0
   110
@internalComponent
sl@0
   111
*/
sl@0
   112
class TCursor
sl@0
   113
	{
sl@0
   114
	public:
sl@0
   115
	enum TCursors
sl@0
   116
		{
sl@0
   117
		EFNeitherCursor = 0,
sl@0
   118
		EFTextCursor = 1,
sl@0
   119
		EFLineCursor = 2,
sl@0
   120
		EFBothCursors = EFTextCursor | EFLineCursor
sl@0
   121
		};
sl@0
   122
sl@0
   123
	/** Cursor visibility */
sl@0
   124
	enum TVisibility
sl@0
   125
		{
sl@0
   126
		/** Indicates that the cursor should be invisible. */
sl@0
   127
		EFCursorInvisible = 0,
sl@0
   128
		/** Indicates that the cursor should be visible. */
sl@0
   129
		EFCursorVisible,
sl@0
   130
		/** Indicates a flashing text cursor. When specified for the line
sl@0
   131
		cursor, is equivalent to EFCursorVisible, as the line cursor cannot
sl@0
   132
		flash. Note that a non-flashing text cursor should only be used when
sl@0
   133
		there is to be no editing, reformatting, scrolling or cursor movement.
sl@0
   134
		*/
sl@0
   135
		EFCursorFlashing
sl@0
   136
		};
sl@0
   137
sl@0
   138
	TCursor(TCursorPosition& aCursorPos,RScreenDisplay& aDisplay);
sl@0
   139
	void SetLineCursorBitmap(const CFbsBitmap* aLineCursorBitmap);
sl@0
   140
	inline TUint LineCursorVisibility();
sl@0
   141
	inline TUint TextCursorVisibility();
sl@0
   142
	void Draw(TUint aCursors);
sl@0
   143
sl@0
   144
	void SetVisibility(TVisibility aLineCursor,TVisibility aTextCursor);
sl@0
   145
	void SetType(TTextCursor::EType aType);
sl@0
   146
	void SetPlacement(TTmCursorPlacement aPlacement);
sl@0
   147
	void SetAscentAndDescent(TInt aAscent,TInt aDescent);
sl@0
   148
	void SetWeight(TInt aWeight);
sl@0
   149
	void SetFlash(TBool aEnabled);
sl@0
   150
	void SetXorColor(TRgb aColor);
sl@0
   151
	void MatchCursorHeightToAdjacentChar();
sl@0
   152
	void SetExtensions(TInt aFirstExtension, TInt aSecondExtension);
sl@0
   153
	private:
sl@0
   154
	enum
sl@0
   155
		{
sl@0
   156
		ELineCursorToLabelGap = 2,
sl@0
   157
		ETextCursorWeight = 3,
sl@0
   158
		ETextCursorInvertColor = 0xFFFFFF
sl@0
   159
		};
sl@0
   160
sl@0
   161
	void DrawLineCursor(TInt aHeight);
sl@0
   162
	void RemoveLineCursor();
sl@0
   163
	void DrawTextCursor(TPoint aOrigin,TInt aWidth,TInt aAscent,TInt aDescent);
sl@0
   164
	void RemoveTextCursor();
sl@0
   165
sl@0
   166
	RScreenDisplay& iDisplay;				// a reference to the object controlling drawing
sl@0
   167
	TCursorPosition& iCursorPos;			// a reference to the object holding the cursor's document position
sl@0
   168
	TBool iVisible;							// TRUE if the text cursor is currently visible in the displayed text
sl@0
   169
	TBool iFlash;							// TRUE if the text cursor should flash
sl@0
   170
	TVisibility iLineCursor;				// line cursor state
sl@0
   171
	TVisibility iTextCursor;				// text cursor state
sl@0
   172
	const CFbsBitmap* iLineCursorBitmap;	// if non-null, points to a non-owned bitmap representing the line cursor
sl@0
   173
	TInt iAscent;							// if non-negative, ascent used for vertical cursors
sl@0
   174
	TInt iDescent;							// if non-negative, descent used for vertical cursors
sl@0
   175
	TInt iWeight;							// width of vertical cursors, height of horizontal ones
sl@0
   176
	TTextCursor::EType iType;				// filled or hollow rectangle, etc.
sl@0
   177
	TRgb iXorColor;							// colour XORed with the background when the cursor is drawn
sl@0
   178
	TTmCursorPlacement iPlacement;			// vertical, underline, etc.
sl@0
   179
	TInt iFirstExtension;					// customise the cursor, extends vertical cursors upwards, horizontal cursors leftwards
sl@0
   180
	TInt iSecondExtension;					// customise the cursor, extends vertical cursors downwards, horizontal cursors rightwards
sl@0
   181
	TInt iReserved[2];
sl@0
   182
	};
sl@0
   183
sl@0
   184
/** 
sl@0
   185
Lays out formatted text for display. 
sl@0
   186
sl@0
   187
The class provides functions to:
sl@0
   188
sl@0
   189
convert between document positions and x,y coordinates
sl@0
   190
sl@0
   191
set the dimensions of the rectangle in which text can be viewed (the view 
sl@0
   192
rectangle)
sl@0
   193
sl@0
   194
set margin widths
sl@0
   195
sl@0
   196
do horizontal and vertical scrolling
sl@0
   197
sl@0
   198
do text selection
sl@0
   199
sl@0
   200
set the cursor position and appearance
sl@0
   201
sl@0
   202
After a change has been made to the text layout, a reformat and redraw should 
sl@0
   203
normally take place. CTextView provides functions which are optimised to reformat 
sl@0
   204
the minimum amount necessary. For example, when a global formatting parameter 
sl@0
   205
is changed (e.g. the wrap width), the whole document's layout needs to be 
sl@0
   206
recalculated, so HandleGlobalChangeL() should be called. If the change involves 
sl@0
   207
the insertion or deletion of a single character, only a single line may be 
sl@0
   208
affected; for this, HandleCharEditL() is appropriate. Most CTextView reformatting 
sl@0
   209
functions do scrolling (using block transfer), if necessary, and a redraw.
sl@0
   210
sl@0
   211
For maximum responsiveness, CTextView uses an active object to carry out 
sl@0
   212
reformatting as a background task, so that the application can continue to 
sl@0
   213
receive user input. Many CTextView functions force background formatting to 
sl@0
   214
complete before they take effect.
sl@0
   215
sl@0
   216
When scrolling vertically, positive numbers of pixels, lines, paragraphs, 
sl@0
   217
pages, etc., mean that the text moves down, and vice versa. When scrolling 
sl@0
   218
horizontally, positive numbers of pixels mean that the text moves left and 
sl@0
   219
vice versa.
sl@0
   220
sl@0
   221
A text view can display up to two cursors and up to three margins. The cursors 
sl@0
   222
are the text cursor and the line cursor. The purpose of the line cursor is 
sl@0
   223
to make it easier to see which line the text cursor (or the selection extension 
sl@0
   224
point) is on. The three margins are the label margin (for paragraph labels), 
sl@0
   225
the line cursor margin (for the line cursor) and the left text margin (the 
sl@0
   226
gap between the edge of the page and the text). All are optional, but if present, 
sl@0
   227
they appear in that order, starting at the left edge of the view rectangle.
sl@0
   228
sl@0
   229
An object of class CTextLayout is used by the text view to calculate changes 
sl@0
   230
to the layout. This object must be specified when constructing the text view. 
sl@0
   231
It is also used to set layout attributes, including the wrap width, the height 
sl@0
   232
of the visible portion of the document (the "band"), whether formatting is 
sl@0
   233
set to the band or to the whole document and the text object which is the 
sl@0
   234
source of the text and formatting information.
sl@0
   235
sl@0
   236
The x-y pixel coordinates used by CTextView are called window coordinates. 
sl@0
   237
Window coordinates have their origin at the top left corner of the view window 
sl@0
   238
(unlike class CTextLayout whose coordinates have their origin at the top left 
sl@0
   239
corner of the area within the view rectangle in which text can appear). As 
sl@0
   240
in most bitmap graphics systems, x coordinates increase rightwards and y coordinates 
sl@0
   241
increase downwards. 
sl@0
   242
@publishedAll
sl@0
   243
@released
sl@0
   244
*/
sl@0
   245
class CTextView : public CBase
sl@0
   246
sl@0
   247
	{
sl@0
   248
friend class CTestTextView;
sl@0
   249
public:
sl@0
   250
	enum TPriorities
sl@0
   251
		{
sl@0
   252
		EFBackgroundFormattingPriority = (CActive::EPriorityIdle + CActive::EPriorityLow) / 2
sl@0
   253
		};
sl@0
   254
sl@0
   255
	/** deprecated 8.0 */
sl@0
   256
	enum
sl@0
   257
		{
sl@0
   258
		EFFirstCharOnLine = -1000000,
sl@0
   259
		EFLastCharOnLine = 1000000
sl@0
   260
		};
sl@0
   261
sl@0
   262
	/** Cursor height matching.
sl@0
   263
sl@0
   264
	Passed as an argument to MatchCursorHeightToAdjacentChar(). */
sl@0
   265
	enum TBeforeAfter
sl@0
   266
		{
sl@0
   267
		/** Text cursor height is matched to preceding character. */
sl@0
   268
		EFCharacterBefore = ETrue,
sl@0
   269
		/** Text cursor height is matched to following character. */
sl@0
   270
		EFCharacterAfter = EFalse
sl@0
   271
		};
sl@0
   272
sl@0
   273
	
sl@0
   274
sl@0
   275
	/** Whether to reformat and redraw. Argument to SetViewL(). */
sl@0
   276
	enum TDiscard
sl@0
   277
		{
sl@0
   278
		/** Discard all formatting; redraw. */
sl@0
   279
		EFViewDiscardAllFormat,
sl@0
   280
		/** Do not discard all formatting; redraw. */
sl@0
   281
		EFViewDontDiscardFormat,
sl@0
   282
		/** Discard all formatting; no redraw. */
sl@0
   283
		EFViewDiscardAllNoRedraw,
sl@0
   284
		/** Do not discard all formatting; redraw. */
sl@0
   285
		EFViewDontDiscardFullRedraw
sl@0
   286
		};
sl@0
   287
	
sl@0
   288
	/** 
sl@0
   289
	Provides notification to the owner of the text view object of changes to the 
sl@0
   290
	formatting.
sl@0
   291
sl@0
   292
	Its OnReformatL() function is called after reformatting but before redisplay, 
sl@0
   293
	so that edit windows etc. can be resized. 
sl@0
   294
	@publishedAll
sl@0
   295
	@released
sl@0
   296
	*/
sl@0
   297
	class MObserver
sl@0
   298
sl@0
   299
		{
sl@0
   300
		public:
sl@0
   301
sl@0
   302
		/** Called after reformatting but before redisplay, so that the height of edit windows, etc., 
sl@0
   303
		can be adjusted. There is no need to adjust the width of displaying components as formatting 
sl@0
   304
		is always done to fit the specified width.
sl@0
   305
		Implementers are not allowed to call any formatting functions while handling reformatting 
sl@0
   306
		notifications as it may cause recursive loops leading to unexpected consequences.
sl@0
   307
		@param aTextView A pointer to the current text view object. */
sl@0
   308
		virtual void OnReformatL(const CTextView* aTextView) = 0;
sl@0
   309
		};
sl@0
   310
sl@0
   311
	// argument to SetViewL
sl@0
   312
	enum TDoHorizontalScroll
sl@0
   313
		{
sl@0
   314
		EFNoHorizontalScroll = EFalse,
sl@0
   315
		EFCheckForHorizontalScroll = ETrue
sl@0
   316
		};
sl@0
   317
sl@0
   318
	
sl@0
   319
	/** 
sl@0
   320
	A standard inquiry interface for the text formatting engine, built on
sl@0
   321
	top of a CTextView object.
sl@0
   322
sl@0
   323
	To use it, construct a TTagmaForwarder object, then call InitL(), which
sl@0
   324
	finishes background formatting, then call the MTmTextLayoutForwarder
sl@0
   325
	functions.
sl@0
   326
	
sl@0
   327
	The class should only be used internally by FORM component.
sl@0
   328
	@publishedAll
sl@0
   329
	@released
sl@0
   330
	*/
sl@0
   331
	class TTagmaForwarder: public MTmTextLayoutForwarder
sl@0
   332
	
sl@0
   333
		{
sl@0
   334
	public:
sl@0
   335
		inline TTagmaForwarder();
sl@0
   336
		inline void InitL(CTextView* aView);
sl@0
   337
		
sl@0
   338
	private:
sl@0
   339
		// from MTmTextLayoutForwarder
sl@0
   340
		inline const CTmTextLayout& TextLayout() const;
sl@0
   341
		inline void GetOrigin(TPoint& aPoint) const;
sl@0
   342
sl@0
   343
		CTextView* iView;
sl@0
   344
		};
sl@0
   345
sl@0
   346
private:
sl@0
   347
	enum TDrawParameters
sl@0
   348
		{
sl@0
   349
		EFDrawAllWindow = CLayoutData::EFLargeNumber // must be larger than the pixel height of any window.
sl@0
   350
		};
sl@0
   351
sl@0
   352
	// bit values used in iFlags
sl@0
   353
	enum
sl@0
   354
		{
sl@0
   355
		EFSelectionVisible = 1,
sl@0
   356
		EFPictureFrameEnabled = 2,
sl@0
   357
		EFEverythingVisible = 3,
sl@0
   358
		EFFlickerFreeRedraw = 4,
sl@0
   359
		EFTextVisible = 8
sl@0
   360
		};
sl@0
   361
sl@0
   362
	// horizontal scroll jump in pixels
sl@0
   363
	enum THorizontalScrollJump
sl@0
   364
		{
sl@0
   365
		EFDefaultHorizontalScrollJump = 20
sl@0
   366
#ifdef _DEBUG
sl@0
   367
		,EFUnreasonablyLargeHorizontalScrollJump = 10000
sl@0
   368
#endif
sl@0
   369
		};
sl@0
   370
sl@0
   371
	// picture frame blob widths in pixels
sl@0
   372
	enum TPictureFrameBlobWidths
sl@0
   373
		{
sl@0
   374
		EFFrameVisibleBlobWidth = 10,
sl@0
   375
		EFFrameActiveBlobWidth = 20
sl@0
   376
		};
sl@0
   377
sl@0
   378
	enum THorizontalScroll
sl@0
   379
		{
sl@0
   380
		EFNoPreviousHorizontalScroll = 0,
sl@0
   381
		EFPreviousHorizontalScroll
sl@0
   382
		};
sl@0
   383
sl@0
   384
	enum TMemoryStatus
sl@0
   385
		{
sl@0
   386
		EFMemoryOK,
sl@0
   387
		EFOutOfMemory,
sl@0
   388
		EFRecovering
sl@0
   389
		};
sl@0
   390
sl@0
   391
	enum TExtendedHighlightRedraw
sl@0
   392
		{
sl@0
   393
		EFTopEdge = 0x0001,
sl@0
   394
		EFBottomEdge = 0x0002
sl@0
   395
		};
sl@0
   396
sl@0
   397
sl@0
   398
public:
sl@0
   399
	IMPORT_C static CTextView *NewL(CTextLayout* aLayout,const TRect &aDisplay,CBitmapDevice* aGd,
sl@0
   400
									MGraphicsDeviceMap* aDeviceMap,RWindow* aWin,RWindowGroup* aGroupWin,
sl@0
   401
									RWsSession* aSession);
sl@0
   402
	IMPORT_C ~CTextView();
sl@0
   403
	IMPORT_C void SetDisplayContextL(CBitmapDevice* aGd,RWindow* aWin,RWindowGroup* aGroupWin,RWsSession* aSession);
sl@0
   404
	IMPORT_C void SetLayout(CTextLayout* aLayout);
sl@0
   405
	inline const CTextLayout* Layout() const;
sl@0
   406
	IMPORT_C void SetViewRect(const TRect& aDisplay);
sl@0
   407
	IMPORT_C void AlterViewRect(const TRect &aViewRect);
sl@0
   408
	IMPORT_C void SetMarginWidths(TInt aLabels,TInt aLineCursor);
sl@0
   409
	IMPORT_C void SetHorizontalScrollJump(TInt aScrollJump);
sl@0
   410
	IMPORT_C void SetLineCursorBitmap(const CFbsBitmap* aLineCursorBitmap);
sl@0
   411
	IMPORT_C void SetHighlightExtensions(TInt aLeftExtension, TInt aRightExtension, TInt aTopExtension, TInt aBottomExtension);
sl@0
   412
	IMPORT_C void SetExcessHeightRequired(TInt aExcessHeightRequired);
sl@0
   413
	IMPORT_C void SetBackgroundColor(TRgb aColor);
sl@0
   414
	IMPORT_C void SetTextColorOverride(const TRgb* aOverrideColor = NULL);
sl@0
   415
	IMPORT_C void SetCursorVisibilityL(TUint aLineCursor,TUint aTextCursor);
sl@0
   416
	IMPORT_C void SetSelectionVisibilityL(TBool aSelectionVisible);
sl@0
   417
	IMPORT_C TBool SelectionVisible() const;
sl@0
   418
	IMPORT_C void EnablePictureFrameL(TBool aEnabled);
sl@0
   419
	IMPORT_C const TRect& ViewRect() const;
sl@0
   420
	IMPORT_C const TRect& AlteredViewRect() const;
sl@0
   421
	IMPORT_C void MarginWidths(TInt& aLabels,TInt& aLineCursor) const;
sl@0
   422
	IMPORT_C TInt HorizontalScrollJump() const;
sl@0
   423
	IMPORT_C TInt LeftTextMargin() const;
sl@0
   424
 	IMPORT_C void SetLatentXPosition(TInt aLatentX);
sl@0
   425
	// deprecated 7.0
sl@0
   426
	IMPORT_C void SetParagraphFillTextOnly(TBool aFillTextOnly);
sl@0
   427
	IMPORT_C void SetCursorWidthTypeL(TTextCursor::EType aType,TInt aWidth = 0);
sl@0
   428
	IMPORT_C void SetCursorPlacement(TTmCursorPlacement aPlacement);
sl@0
   429
	IMPORT_C void SetCursorWeight(TInt aWeight);
sl@0
   430
	IMPORT_C void SetCursorFlash(TBool aEnabled);
sl@0
   431
	IMPORT_C void SetCursorXorColor(TRgb aColor);
sl@0
   432
	IMPORT_C void SetCursorExtensions(TInt aFirstExtension, TInt aSecondExtension);
sl@0
   433
	IMPORT_C TCursorSelection Selection() const;
sl@0
   434
	IMPORT_C TBool IsPictureFrameSelected(TRect& aPictureFrameRect,TInt& aDocPos) const;
sl@0
   435
	IMPORT_C TBool GetPictureRectangleL(TInt aDocPos,TRect& aPictureRect,TBool* aCanScaleOrCrop = NULL) const;
sl@0
   436
	IMPORT_C TBool GetPictureRectangleL(TPoint aXyPos,TRect& aPictureRect,TBool* aCanScaleOrCrop = NULL);
sl@0
   437
	IMPORT_C TBool FindXyPosL(const TPoint& aXyPos,TTmPosInfo2& aPosInfo,TTmLineInfo* aLineInfo = NULL);
sl@0
   438
	IMPORT_C TInt XyPosToDocPosL(TPoint& aPoint);
sl@0
   439
	IMPORT_C TBool FindDocPosL(const TTmDocPosSpec& aDocPos,TTmPosInfo2& aPosInfo,TTmLineInfo* aLineInfo = NULL);
sl@0
   440
	IMPORT_C TBool DocPosToXyPosL(TInt aDocPos,TPoint& aPoint);
sl@0
   441
	IMPORT_C TRect ParagraphRectL(TInt aDocPos) const;
sl@0
   442
	IMPORT_C void CalculateHorizontalExtremesL(TInt& aLeftX,TInt& aRightX,TBool aOnlyVisibleLines);
sl@0
   443
	IMPORT_C void MatchCursorHeightL(const TFontSpec& aFontSpec);
sl@0
   444
	IMPORT_C void MatchCursorHeightToAdjacentChar(TBeforeAfter aBasedOn = EFCharacterBefore);
sl@0
   445
	IMPORT_C TPoint SetSelectionL(const TCursorSelection& aSelection);
sl@0
   446
	IMPORT_C void CancelSelectionL();
sl@0
   447
	IMPORT_C void ClearSelectionL();
sl@0
   448
	IMPORT_C TPoint SetDocPosL(const TTmDocPosSpec& aDocPos,TBool aDragSelectOn = EFalse);
sl@0
   449
	IMPORT_C TPoint SetDocPosL(TInt aDocPos,TBool aDragSelectOn = EFalse);
sl@0
   450
	IMPORT_C TPoint SetXyPosL(TPoint aPos,TBool aDragSelectOn,TRect*& aPictureRect,TInt& aPictureFrameEdges);
sl@0
   451
	IMPORT_C TPoint MoveCursorL(TCursorPosition::TMovementType& aMovement,TBool aDragSelectOn);
sl@0
   452
	IMPORT_C TInt ScrollDisplayL(TCursorPosition::TMovementType aMovement,
sl@0
   453
		CTextLayout::TAllowDisallow aScrollBlankSpace=CTextLayout::EFDisallowScrollingBlankSpace);
sl@0
   454
	IMPORT_C TPoint SetViewLineAtTopL(TInt aLineNo);
sl@0
   455
    IMPORT_C void ScrollDisplayPixelsL(TInt& aDeltaY);
sl@0
   456
    IMPORT_C void ScrollDisplayPixelsNoLimitBorderL(TInt aDeltaY);
sl@0
   457
	IMPORT_C TInt ScrollDisplayLinesL(TInt& aDeltaLines,
sl@0
   458
		CTextLayout::TAllowDisallow aScrollBlankSpace = CTextLayout::EFDisallowScrollingBlankSpace);
sl@0
   459
	IMPORT_C TInt ScrollDisplayParagraphsL(TInt& aDeltaParas,
sl@0
   460
		CTextLayout::TAllowDisallow aScrollBlankSpace = CTextLayout::EFDisallowScrollingBlankSpace);
sl@0
   461
	IMPORT_C TPoint SetViewL(TInt aDocPos,TInt& aYPos,TViewYPosQualifier aYPosQualifier = TViewYPosQualifier(),
sl@0
   462
		TDiscard aDiscardFormat = EFViewDontDiscardFormat,
sl@0
   463
		TDoHorizontalScroll aDoHorizontalScroll = EFCheckForHorizontalScroll);
sl@0
   464
 	IMPORT_C void SetLeftTextMargin(TInt aLeftMargin);
sl@0
   465
	IMPORT_C void DrawL(TRect aRect);
sl@0
   466
	IMPORT_C void DrawL(TRect aRect,CBitmapContext& aGc);
sl@0
   467
	inline void SetObserver(MObserver* aObserver);
sl@0
   468
	IMPORT_C void SetPendingSelection(const TCursorSelection& aSelection);
sl@0
   469
	inline void EnableFlickerFreeRedraw();
sl@0
   470
	inline void DisableFlickerFreeRedraw();
sl@0
   471
	inline TBool FlickerFreeRedraw() const;
sl@0
   472
	inline void GetOrigin(TPoint& aPoint) const;
sl@0
   473
	IMPORT_C TCursorSelection GetForwardDeletePositionL();
sl@0
   474
	IMPORT_C TCursorSelection GetBackwardDeletePositionL();
sl@0
   475
sl@0
   476
	// reformatting after changes to the content
sl@0
   477
 	IMPORT_C void FormatTextL();
sl@0
   478
	IMPORT_C TInt HandleCharEditL(TUint aType = CTextLayout::EFCharacterInsert,TBool aFormatChanged = EFalse);
sl@0
   479
	IMPORT_C TPoint HandleRangeFormatChangeL(TCursorSelection aSelection,TBool aFormatChanged = EFalse);
sl@0
   480
	IMPORT_C TPoint HandleInsertDeleteL(TCursorSelection aSelection,TInt aDeletedChars,TBool aFormatChanged = EFalse);
sl@0
   481
	IMPORT_C void HandleGlobalChangeL(TViewYPosQualifier aYPosQualifier = TViewYPosQualifier());
sl@0
   482
	IMPORT_C void HandleGlobalChangeNoRedrawL(TViewYPosQualifier aYPosQualifier = TViewYPosQualifier());
sl@0
   483
	IMPORT_C void HandleAdditionalCharactersAtEndL();
sl@0
   484
	IMPORT_C void FinishBackgroundFormattingL();
sl@0
   485
sl@0
   486
	IMPORT_C CBitmapContext* BitmapContext();
sl@0
   487
	IMPORT_C const TTmDocPos& VisualEndOfRunL(
sl@0
   488
		const TTmDocPos& aStart, const TTmDocPos& aEnd,
sl@0
   489
		TCursorPosition::TVisualEnd aDirection);
sl@0
   490
	IMPORT_C void GetCursorPos(TTmDocPos& aPos) const;
sl@0
   491
sl@0
   492
	IMPORT_C TPoint SetDocPosL(const TTmDocPos& aDocPos,TBool aDragSelectOn = EFalse);
sl@0
   493
sl@0
   494
	IMPORT_C void SetCursorPositioningHintL(TCursorPosition::TPosHint aHint);
sl@0
   495
sl@0
   496
	IMPORT_C void SetOpaque(TBool aDrawOpaque);
sl@0
   497
	IMPORT_C void MakeVisible(TBool aVisible);
sl@0
   498
sl@0
   499
private:
sl@0
   500
	IMPORT_C static TInt IdleL(TAny *aSelf);
sl@0
   501
	IMPORT_C CTextView();
sl@0
   502
	IMPORT_C void ConstructL(CTextLayout* aLayout,const TRect &aDisplay,CBitmapDevice* aGd,MGraphicsDeviceMap* aDeviceMap,
sl@0
   503
							 RWindow* aWin,RWindowGroup* aGroupWin,RWsSession* aSession);
sl@0
   504
	inline TInt TopViewRect() const;
sl@0
   505
	inline TBool IsFormatting() const;
sl@0
   506
	TBool NoMemoryCheckL();
sl@0
   507
	void StartIdleObject();
sl@0
   508
	inline void DrawWithPreviousHighlight();
sl@0
   509
	inline void DrawWithCurrentHighlight();
sl@0
   510
	TInt CalculateBaseLinePos(TTmDocPos& aDocPos);
sl@0
   511
	TInt DrawAfterCursorMoveL(TInt aVerticalScrollBy);
sl@0
   512
	TBool NextLineL();
sl@0
   513
	void ClearRectAtBottom(TInt aHeight);
sl@0
   514
	void DrawTextL(TInt aFromHeight = 0,TInt aToHeight = EFDrawAllWindow);
sl@0
   515
	void DisplayNewLinesL(TInt aFrom,TInt aTo);
sl@0
   516
	void DrawCursor(TUint aCursors = TCursor::EFBothCursors);
sl@0
   517
	TPoint DoMoveCursorL(TBool aDragSelectOn,TCursorPosition::TMovementType& aMovement,TBool aAllowPictureFrame);
sl@0
   518
	void ScrollTextL(TInt aScrollY,TInt aFrom,TInt aScrollX,TBool aScrollBackground);
sl@0
   519
	void ScrollRect(TRect& aRect,TInt aScrollY,TInt aFrom,TInt aScrollX,TBool aScrollBackground);
sl@0
   520
	void ScrollRect(TInt aScrollY,TInt& aFrom,TInt& aTo);
sl@0
   521
	TPoint HandleBlockChangeL(TCursorSelection aSelection,TInt aOldCharsChanged,TBool aFormatChanged);
sl@0
   522
	void CheckScrollUpL();
sl@0
   523
	TInt CheckHorizontalScroll(const TTmDocPos& aDocPos);
sl@0
   524
	TInt DoHorizontalScrollDisplayL(TCursorPosition::TMovementType aMovement,
sl@0
   525
		CTextLayout::TAllowDisallow aScrollBlankSpace);
sl@0
   526
	TInt DoScrollDisplayL(TCursorPosition::TMovementType aMovement,CTextLayout::TAllowDisallow aScrollBlankSpace);
sl@0
   527
	void ScrollDisplayL();
sl@0
   528
	TPoint ViewTopOfLineL(const TTmDocPos& aDocPos,TInt& aYPos,
sl@0
   529
		CTextView::TDiscard aDiscardFormat = EFViewDontDiscardFormat,
sl@0
   530
		TDoHorizontalScroll aHorizontalScroll = EFCheckForHorizontalScroll);
sl@0
   531
	TPoint ViewL(const TTmDocPos& aDocPos,TInt& aYPos,TViewYPosQualifier aYPosQualifier = TViewYPosQualifier(),
sl@0
   532
		CTextView::TDiscard aDiscardFormat = EFViewDontDiscardFormat,
sl@0
   533
		TDoHorizontalScroll aHorizontalScroll = EFCheckForHorizontalScroll);
sl@0
   534
	TPoint DoHandleGlobalChangeL(TViewYPosQualifier aYPosQualifier,CTextView::TDiscard aDiscard);
sl@0
   535
	void UpdateHighlightL();
sl@0
   536
	void HighlightUsingExtensions(CTextLayout::TRangeChange aOptimizedRange, CTextLayout::TRangeChange aOriginalRange);
sl@0
   537
	void UpdatePictureFrameL();
sl@0
   538
	void RedrawPictureFrameRectL(TInt aPos);
sl@0
   539
	void DrawPictureFrameL(TRect& aClipRect);
sl@0
   540
	void DestroyWindowServerObjects();
sl@0
   541
	void NoMemoryL(TInt aErr);
sl@0
   542
	void RecoverNoMemoryL();
sl@0
   543
	void RecreateWindowServerObjectsL();
sl@0
   544
	void DrawTextSupportL(const TRect& aRect,const TCursorSelection* aHighlight);
sl@0
   545
	void DoDrawTextSupportL(const TRect& aRect,const TCursorSelection* aHighlight);
sl@0
   546
	void DoDrawTextSupportOpaqueL(const TRect& aRect,const TCursorSelection* aHighlight);
sl@0
   547
	void DisplayLineRangeL(TInt aFrom,TInt aTo);
sl@0
   548
	inline void NotifyReformatL();
sl@0
   549
	void CalculateHorizontalExtremes(TInt& aLeftX,TInt& aRightX,TBool aOnlyVisibleLines);
sl@0
   550
	TBool ExtendedHighlightExists() const;
sl@0
   551
	void DoClearSelectionL(const TCursorSelection& aSelection, TBool aIsPictureFrame);
sl@0
   552
	void AdjustRectForScrolling(TRect &aRect, TInt aScrollY, TInt aScrollX) const;
sl@0
   553
	static void ResetOffScreenBitmapContext(TAny* aTextView);
sl@0
   554
	static void ResetExternalDraw(TAny* aTextView);
sl@0
   555
sl@0
   556
private:
sl@0
   557
	CIdle* iWrap;
sl@0
   558
	RScreenDisplay iDisplay;
sl@0
   559
	CTextLayout* iLayout;	// must not be moved
sl@0
   560
	TDrawTextLayoutContext iDrawTextLayoutContext;	// must not be moved
sl@0
   561
	TCursor iCursor;
sl@0
   562
	TCursorPosition iCursorPos;	// must not be moved
sl@0
   563
	TFrameOverlay* iPictureFrame;
sl@0
   564
	TMemoryStatus iNoMemory;
sl@0
   565
	TUint iFlags;	// must not be moved
sl@0
   566
	TUint iHorizontalScroll;
sl@0
   567
	TInt iGood;
sl@0
   568
	TInt iFormattedUpTo;
sl@0
   569
	TInt iHorizontalScrollJump;
sl@0
   570
	TInt iHeightNotDrawn;
sl@0
   571
	MObserver* iObserver;	// must not be moved
sl@0
   572
	CBitmapContext* iOffScreenContext; //Explicit off-screen bitmap to draw to.
sl@0
   573
	TRect iReducedDrawingAreaRect;
sl@0
   574
	TUint iDummy;// was iRedrawExtendedHighlight;
sl@0
   575
	TBool iContextIsNavigation;
sl@0
   576
	TBool iDrawOpaque;
sl@0
   577
	};
sl@0
   578
sl@0
   579
inline TUint TCursor::LineCursorVisibility()
sl@0
   580
	{
sl@0
   581
	return iLineCursor;
sl@0
   582
	}
sl@0
   583
sl@0
   584
inline TUint TCursor::TextCursorVisibility()
sl@0
   585
	{
sl@0
   586
	return iTextCursor;
sl@0
   587
	}
sl@0
   588
sl@0
   589
/** Returns a pointer to the text layout object used by the text view.
sl@0
   590
@return A pointer to the text layout object used by the text view. */
sl@0
   591
inline const CTextLayout* CTextView::Layout() const
sl@0
   592
	{
sl@0
   593
	return iLayout;
sl@0
   594
	}
sl@0
   595
sl@0
   596
/** Sets a text view observer. This provides notification to the owner of the
sl@0
   597
text view object of changes to the formatting. Its OnReformatL() function is
sl@0
   598
called after reformatting but before redisplay, so that edit windows etc. can
sl@0
   599
be resized.
sl@0
   600
sl@0
   601
@param aObserver Pointer to text view observer object. */
sl@0
   602
inline void CTextView::SetObserver(MObserver* aObserver)
sl@0
   603
	{
sl@0
   604
	iObserver = aObserver;
sl@0
   605
	}
sl@0
   606
sl@0
   607
inline void CTextView::EnableFlickerFreeRedraw()
sl@0
   608
	{
sl@0
   609
	iFlags |= EFFlickerFreeRedraw;
sl@0
   610
	}
sl@0
   611
sl@0
   612
inline void CTextView::DisableFlickerFreeRedraw()
sl@0
   613
	{
sl@0
   614
	iFlags &= ~EFFlickerFreeRedraw;
sl@0
   615
	}
sl@0
   616
sl@0
   617
inline TBool CTextView::FlickerFreeRedraw() const
sl@0
   618
	{
sl@0
   619
	return iFlags & EFFlickerFreeRedraw;
sl@0
   620
	}
sl@0
   621
sl@0
   622
inline void CTextView::NotifyReformatL()
sl@0
   623
	{
sl@0
   624
	if (iObserver)
sl@0
   625
		iObserver->OnReformatL(this);
sl@0
   626
	}
sl@0
   627
sl@0
   628
inline TBool CTextView::IsFormatting() const
sl@0
   629
	{
sl@0
   630
	return iLayout->IsBackgroundFormatting();
sl@0
   631
	}
sl@0
   632
sl@0
   633
inline TInt CTextView::TopViewRect() const
sl@0
   634
	{
sl@0
   635
	return iDrawTextLayoutContext.iViewRect.iTl.iY;
sl@0
   636
	}
sl@0
   637
sl@0
   638
inline void CTextView::DrawWithPreviousHighlight()
sl@0
   639
	{
sl@0
   640
	iCursorPos.SetToPreviousHighlight();
sl@0
   641
	}
sl@0
   642
sl@0
   643
inline void CTextView::DrawWithCurrentHighlight()
sl@0
   644
	{
sl@0
   645
	iCursorPos.SetToCurrentHighlight();
sl@0
   646
	}
sl@0
   647
sl@0
   648
/** Gets the origin of the cursor.
sl@0
   649
@param aPoint On return, the cursor origin. */
sl@0
   650
inline void CTextView::GetOrigin(TPoint& aPoint) const
sl@0
   651
	{
sl@0
   652
	iLayout->GetOrigin(aPoint);
sl@0
   653
	aPoint += iDrawTextLayoutContext.TopLeftText();
sl@0
   654
	}
sl@0
   655
sl@0
   656
/** This constructor deliberately does not take a pointer or reference to
sl@0
   657
CTextView, to prevent the class from being used unless InitL() is called. */
sl@0
   658
inline CTextView::TTagmaForwarder::TTagmaForwarder():
sl@0
   659
	iView(NULL)
sl@0
   660
	{
sl@0
   661
	}
sl@0
   662
sl@0
   663
/** Called after construction, to complete background reformatting.
sl@0
   664
@param aView A pointer to the text view object. */
sl@0
   665
inline void CTextView::TTagmaForwarder::InitL(CTextView* aView)
sl@0
   666
	{
sl@0
   667
	iView = aView;
sl@0
   668
	iView->FinishBackgroundFormattingL();
sl@0
   669
	}
sl@0
   670
sl@0
   671
inline const CTmTextLayout& CTextView::TTagmaForwarder::TextLayout() const
sl@0
   672
	{
sl@0
   673
	return iView->Layout()->TagmaTextLayout();
sl@0
   674
	}
sl@0
   675
sl@0
   676
inline void CTextView::TTagmaForwarder::GetOrigin(TPoint& aPoint) const
sl@0
   677
	{
sl@0
   678
	iView->GetOrigin(aPoint);
sl@0
   679
	}
sl@0
   680
sl@0
   681
#endif