sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 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 |
#ifndef __FRMTLAY_INTERNAL_H__
|
sl@0
|
19 |
#define __FRMTLAY_INTERNAL_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <gdi.h>
|
sl@0
|
24 |
#include <tagma.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
27 |
#include <tagma_internal.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
class MLayDoc;
|
sl@0
|
31 |
class MFormCustomInterfaceProvider;
|
sl@0
|
32 |
class MFormCustomInvisibleCharacterRemapper;
|
sl@0
|
33 |
class MFormCustomWrap;
|
sl@0
|
34 |
class MFormCustomDraw;
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@internalTechnology
|
sl@0
|
38 |
Internal to Symbian
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
NONSHARABLE_CLASS(TLayDocTextSource) : public MTmSource, public MFormLabelApi, public MTmTextDrawExt, public MTmCustomExtension
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
|
sl@0
|
44 |
enum
|
sl@0
|
45 |
{
|
sl@0
|
46 |
EDefaultFontHeightIncreaseFactor = 7,
|
sl@0
|
47 |
EDefaultMinimumLineDescent = 3
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
TLayDocTextSource();
|
sl@0
|
51 |
|
sl@0
|
52 |
// overrides for MTmSource pure virtual functions
|
sl@0
|
53 |
MGraphicsDeviceMap& FormatDevice() const;
|
sl@0
|
54 |
MGraphicsDeviceMap& InterpretDevice() const;
|
sl@0
|
55 |
TInt DocumentLength() const;
|
sl@0
|
56 |
void GetText(TInt aPos,TPtrC& aText,TTmCharFormat& aFormat) const;
|
sl@0
|
57 |
void GetParagraphFormatL(TInt aPos,RTmParFormat& aFormat) const;
|
sl@0
|
58 |
TInt ParagraphStart(TInt aPos) const;
|
sl@0
|
59 |
|
sl@0
|
60 |
// overrides for other MTmSource virtual functions
|
sl@0
|
61 |
TRgb SystemColor(TUint aColorIndex,TRgb aDefaultColor) const;
|
sl@0
|
62 |
CPicture* PictureL(TInt aPos) const;
|
sl@0
|
63 |
TInt GetPictureSizeInTwipsL(TInt aPos,TSize& aSize) const;
|
sl@0
|
64 |
TBool LabelModeSelect(TLabelType aType, TInt aPos);
|
sl@0
|
65 |
void LabelModeCancel();
|
sl@0
|
66 |
void LabelMetrics(TLabelType aType, TSize& aLabelSize, TInt& aMarginSize) const;
|
sl@0
|
67 |
TUint Map(TUint aChar) const;
|
sl@0
|
68 |
void SetLineHeight(const TLineHeightParam& aParam,TInt& aAscent,TInt& aDescent) const;
|
sl@0
|
69 |
TBool PageBreakInRange(TInt aStartPos,TInt aEndPos) const;
|
sl@0
|
70 |
void DrawBackground(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
|
sl@0
|
71 |
const TLogicalRgb& aBackground,TRect& aRectDrawn) const;
|
sl@0
|
72 |
void DrawLineGraphics(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
|
sl@0
|
73 |
const TTmLineInfo& aLineInfo) const;
|
sl@0
|
74 |
void DrawText(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
|
sl@0
|
75 |
const TTmLineInfo& aLineInfo,const TTmCharFormat& aFormat,
|
sl@0
|
76 |
const TDesC& aText,const TPoint& aTextOrigin,TInt aExtraPixels) const;
|
sl@0
|
77 |
virtual void DrawPicture(CGraphicsContext& aGc,
|
sl@0
|
78 |
const TPoint& aTextLayoutTopLeft, const TRect& aRect,
|
sl@0
|
79 |
MGraphicsDeviceMap& aDevice, const CPicture& aPicture) const;
|
sl@0
|
80 |
void DrawText(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
|
sl@0
|
81 |
const TTmLineInfo& aLineInfo,const TTmCharFormat& aFormat,
|
sl@0
|
82 |
const TDesC& aText, const TInt aStart, const TInt aEnd, const TPoint& aTextOrigin,TInt aExtraPixels) const;
|
sl@0
|
83 |
|
sl@0
|
84 |
// overrides for the MTmSource virtual functions which implements the MFormCustomWrap
|
sl@0
|
85 |
// if iCustomWrap is set.
|
sl@0
|
86 |
TBool LineBreakPossible(TUint aPrevClass,TUint aNextClass,TBool aHaveSpaces) const;
|
sl@0
|
87 |
TUint LineBreakClass(TUint aCode,TUint& aRangeStart,TUint& aRangeEnd) const;
|
sl@0
|
88 |
TBool GetLineBreakInContext(const TDesC& aText,TInt aMinBreakPos,TInt aMaxBreakPos,
|
sl@0
|
89 |
TBool aForwards,TInt& aBreakPos) const;
|
sl@0
|
90 |
TBool IsHangingCharacter(TUint aChar) const;
|
sl@0
|
91 |
|
sl@0
|
92 |
// other functions
|
sl@0
|
93 |
TBool CanMap() const;
|
sl@0
|
94 |
|
sl@0
|
95 |
TAny* GetExtendedInterface(const TUid& aInterfaceId);
|
sl@0
|
96 |
|
sl@0
|
97 |
//MTmTextDrawExt implementations
|
sl@0
|
98 |
virtual void DrawLine(CGraphicsContext& aGc, const TPoint& aPt1, const TPoint& aPt2) const;
|
sl@0
|
99 |
virtual void DrawText(CGraphicsContext& aGc, const TDesC& aText, const TPoint& aPt) const;
|
sl@0
|
100 |
virtual void DrawRect(CGraphicsContext& aGc, const TRect& aRc) const;
|
sl@0
|
101 |
|
sl@0
|
102 |
//Set/reset opaque flag of aGc graphics context
|
sl@0
|
103 |
void SetOpaque(CGraphicsContext& aGc) const;
|
sl@0
|
104 |
void ResetOpaque(CGraphicsContext& aGc) const;
|
sl@0
|
105 |
|
sl@0
|
106 |
// flags
|
sl@0
|
107 |
enum
|
sl@0
|
108 |
{
|
sl@0
|
109 |
EWrap = 1,
|
sl@0
|
110 |
ETruncateWithEllipsis = 2,
|
sl@0
|
111 |
EUseLabelsDevice = 4
|
sl@0
|
112 |
};
|
sl@0
|
113 |
|
sl@0
|
114 |
MLayDoc* iLayDoc;
|
sl@0
|
115 |
TUint iFlags; // wrap, truncate, etc.
|
sl@0
|
116 |
TInt iWidth; // wrapping width
|
sl@0
|
117 |
TChar iEllipsis; // ellipsis character (or none if 0xFFFF) used if truncating
|
sl@0
|
118 |
TInt iLabelsWidth;
|
sl@0
|
119 |
TInt iLabelsGutter;
|
sl@0
|
120 |
CLayoutData::TFormatMode iFormatMode;
|
sl@0
|
121 |
MGraphicsDeviceMap* iImageDevice; // device map used for drawing text
|
sl@0
|
122 |
MGraphicsDeviceMap* iLabelsDevice; // device map used for labels
|
sl@0
|
123 |
MGraphicsDeviceMap* iFormatDevice; // device map used for formatting
|
sl@0
|
124 |
TInt iFontHeightIncreaseFactor; // percentage automatically added to font heights
|
sl@0
|
125 |
TInt iMinimumLineDescent; // minimum line descent in pixels
|
sl@0
|
126 |
TNonPrintingCharVisibility iNonPrintingCharVisibility;
|
sl@0
|
127 |
const MFormParam* iFormParam; // if non-null, points to the object that supplies system colours
|
sl@0
|
128 |
const MFormCustomDraw* iCustomDraw; // if non-null, points to custom drawing routines
|
sl@0
|
129 |
const MFormCustomWrap* iCustomWrap; // if non-null, points to custom wrapping routines
|
sl@0
|
130 |
/** Optional object able to provide a concrete customisation object for use
|
sl@0
|
131 |
internally by Form. */
|
sl@0
|
132 |
MFormCustomInterfaceProvider* iInterfaceProvider;
|
sl@0
|
133 |
TBool iDrawOpaque; // Opaque drawing active if the flag is ETrue
|
sl@0
|
134 |
TInt iExcessHeightRequired; // delta required to position the baseline so there is enough
|
sl@0
|
135 |
// space for the highset glyph in pixels.
|
sl@0
|
136 |
MFormCustomInvisibleCharacterRemapper* iInvisibleCharacterRemapper; // Used to customize the remapping of
|
sl@0
|
137 |
// invisible characters to visible characters
|
sl@0
|
138 |
};
|
sl@0
|
139 |
|
sl@0
|
140 |
#endif
|