First public contribution.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
18 #ifndef __FRMTLAY_INTERNAL_H__
19 #define __FRMTLAY_INTERNAL_H__
26 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
27 #include <tagma_internal.h>
31 class MFormCustomInterfaceProvider;
32 class MFormCustomInvisibleCharacterRemapper;
33 class MFormCustomWrap;
34 class MFormCustomDraw;
40 NONSHARABLE_CLASS(TLayDocTextSource) : public MTmSource, public MFormLabelApi, public MTmTextDrawExt, public MTmCustomExtension
46 EDefaultFontHeightIncreaseFactor = 7,
47 EDefaultMinimumLineDescent = 3
52 // overrides for MTmSource pure virtual functions
53 MGraphicsDeviceMap& FormatDevice() const;
54 MGraphicsDeviceMap& InterpretDevice() const;
55 TInt DocumentLength() const;
56 void GetText(TInt aPos,TPtrC& aText,TTmCharFormat& aFormat) const;
57 void GetParagraphFormatL(TInt aPos,RTmParFormat& aFormat) const;
58 TInt ParagraphStart(TInt aPos) const;
60 // overrides for other MTmSource virtual functions
61 TRgb SystemColor(TUint aColorIndex,TRgb aDefaultColor) const;
62 CPicture* PictureL(TInt aPos) const;
63 TInt GetPictureSizeInTwipsL(TInt aPos,TSize& aSize) const;
64 TBool LabelModeSelect(TLabelType aType, TInt aPos);
65 void LabelModeCancel();
66 void LabelMetrics(TLabelType aType, TSize& aLabelSize, TInt& aMarginSize) const;
67 TUint Map(TUint aChar) const;
68 void SetLineHeight(const TLineHeightParam& aParam,TInt& aAscent,TInt& aDescent) const;
69 TBool PageBreakInRange(TInt aStartPos,TInt aEndPos) const;
70 void DrawBackground(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
71 const TLogicalRgb& aBackground,TRect& aRectDrawn) const;
72 void DrawLineGraphics(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
73 const TTmLineInfo& aLineInfo) const;
74 void DrawText(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
75 const TTmLineInfo& aLineInfo,const TTmCharFormat& aFormat,
76 const TDesC& aText,const TPoint& aTextOrigin,TInt aExtraPixels) const;
77 virtual void DrawPicture(CGraphicsContext& aGc,
78 const TPoint& aTextLayoutTopLeft, const TRect& aRect,
79 MGraphicsDeviceMap& aDevice, const CPicture& aPicture) const;
80 void DrawText(CGraphicsContext& aGc,const TPoint& aTextLayoutTopLeft,const TRect& aRect,
81 const TTmLineInfo& aLineInfo,const TTmCharFormat& aFormat,
82 const TDesC& aText, const TInt aStart, const TInt aEnd, const TPoint& aTextOrigin,TInt aExtraPixels) const;
84 // overrides for the MTmSource virtual functions which implements the MFormCustomWrap
85 // if iCustomWrap is set.
86 TBool LineBreakPossible(TUint aPrevClass,TUint aNextClass,TBool aHaveSpaces) const;
87 TUint LineBreakClass(TUint aCode,TUint& aRangeStart,TUint& aRangeEnd) const;
88 TBool GetLineBreakInContext(const TDesC& aText,TInt aMinBreakPos,TInt aMaxBreakPos,
89 TBool aForwards,TInt& aBreakPos) const;
90 TBool IsHangingCharacter(TUint aChar) const;
95 TAny* GetExtendedInterface(const TUid& aInterfaceId);
97 //MTmTextDrawExt implementations
98 virtual void DrawLine(CGraphicsContext& aGc, const TPoint& aPt1, const TPoint& aPt2) const;
99 virtual void DrawText(CGraphicsContext& aGc, const TDesC& aText, const TPoint& aPt) const;
100 virtual void DrawRect(CGraphicsContext& aGc, const TRect& aRc) const;
102 //Set/reset opaque flag of aGc graphics context
103 void SetOpaque(CGraphicsContext& aGc) const;
104 void ResetOpaque(CGraphicsContext& aGc) const;
110 ETruncateWithEllipsis = 2,
115 TUint iFlags; // wrap, truncate, etc.
116 TInt iWidth; // wrapping width
117 TChar iEllipsis; // ellipsis character (or none if 0xFFFF) used if truncating
120 CLayoutData::TFormatMode iFormatMode;
121 MGraphicsDeviceMap* iImageDevice; // device map used for drawing text
122 MGraphicsDeviceMap* iLabelsDevice; // device map used for labels
123 MGraphicsDeviceMap* iFormatDevice; // device map used for formatting
124 TInt iFontHeightIncreaseFactor; // percentage automatically added to font heights
125 TInt iMinimumLineDescent; // minimum line descent in pixels
126 TNonPrintingCharVisibility iNonPrintingCharVisibility;
127 const MFormParam* iFormParam; // if non-null, points to the object that supplies system colours
128 const MFormCustomDraw* iCustomDraw; // if non-null, points to custom drawing routines
129 const MFormCustomWrap* iCustomWrap; // if non-null, points to custom wrapping routines
130 /** Optional object able to provide a concrete customisation object for use
131 internally by Form. */
132 MFormCustomInterfaceProvider* iInterfaceProvider;
133 TBool iDrawOpaque; // Opaque drawing active if the flag is ETrue
134 TInt iExcessHeightRequired; // delta required to position the baseline so there is enough
135 // space for the highset glyph in pixels.
136 MFormCustomInvisibleCharacterRemapper* iInvisibleCharacterRemapper; // Used to customize the remapping of
137 // invisible characters to visible characters