First public contribution.
2 * Copyright (c) 1997-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.
19 #ifndef __TXTGLOBL_H__
20 #define __TXTGLOBL_H__
29 // forward declarations
30 class CParaFormatLayer;
31 class CCharFormatLayer;
33 class TCharFormatXMask;
36 // Globally formatted text.
37 // Uses one instance of each a paragraph format and character format class; Each presents
38 // the formatting applied to the total document contents. Both of the format classes used
39 // may utilise layering of formats through 'based on' links to achieve full format specification.
40 // These global layers are *never* owned by global text, merely referenced.
43 Text with globally applied formatting.
45 Global text uses a single set of paragraph format attributes to describe the
46 appearance of every paragraph and a single set of character format attributes
47 to describe the appearance of every character.
49 The paragraph formatting is stored in a CParaFormatLayer and the character
50 formatting is stored in a CCharFormatLayer. A format layer is a set of character
51 or paragraph format attributes, which may own a pointer to another format
52 layer. This pointer is called a based-on link. The effective formatting of
53 a global text object is the set of attributes specified in its two format
54 layers, as well as any attributes inherited from the layers' chain of based-on
55 links. To get the effective formatting, the links are read in turn, so that
56 each attribute's value is taken from the first layer in the chain in which
57 it has been set. Use GetCharFormat() and GetParaFormatL() to get the text
58 object's effective formatting.
60 A global text object references the two format layers; it does not own them.
61 This allows more than one global text object to use the same formatting. The
62 format layers may be modified (see ApplyParaFormatL() and ApplyCharFormatL())
63 or replaced (see SetGlobalParaFormat() and SetGlobalCharFormat()) during the
64 text object's lifetime.
68 class CGlobalText : public CPlainText,public MLayDoc,public MFormatText
71 // Special member functions
72 // Create new global text component whose sole content is an end-of-document character.
73 IMPORT_C static CGlobalText* NewL(const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
74 TDocumentStorage aStorage=ESegmentedStorage,TInt aDefaultTextGranularity=EDefaultTextGranularity);
75 // Restore a new global text, that uses the specified global layers.
76 IMPORT_C static CGlobalText* NewL(const CStreamStore& aStore,TStreamId aStreamId,
77 const CParaFormatLayer* aGlobalParaLayer,const CCharFormatLayer* aGlobalCharLayer,
78 MTextFieldFactory* aFieldFactory=NULL,
79 TDocumentStorage=ESegmentedStorage);
80 IMPORT_C ~CGlobalText();
81 // Global Format Layers
82 IMPORT_C void SetGlobalParaFormat(const CParaFormatLayer* aParaFormatLayer);
83 IMPORT_C void SetGlobalCharFormat(const CCharFormatLayer* aCharFormatLayer);
84 inline const CParaFormatLayer* GlobalParaFormatLayer()const;
85 inline const CCharFormatLayer* GlobalCharFormatLayer()const;
86 // MLayDoc implementation
87 IMPORT_C virtual TInt LdDocumentLength()const;
88 IMPORT_C virtual TInt LdToParagraphStart(TInt& aCurrentPos)const;
89 IMPORT_C virtual void GetParagraphFormatL(CParaFormat* aFormat,TInt aPos)const;
90 IMPORT_C virtual void GetChars(TPtrC& aView,TCharFormat& aFormat,TInt aStartPos)const;
91 IMPORT_C virtual TInt GetPictureSizeInTwips(TSize& aSize, TInt aPos)const;
92 IMPORT_C virtual CPicture* PictureHandleL(TInt aPos,MLayDoc::TForcePictureLoad aForceLoad)const;
93 IMPORT_C virtual TBool EnquirePageBreak(TInt aPos,TInt aLength=0)const;
94 IMPORT_C virtual TBool SelectParagraphLabel(TInt aPos);
95 IMPORT_C virtual void CancelSelectLabel();
96 // MFormatText implementation
97 IMPORT_C virtual void GetParaFormatL(CParaFormat* aFormat,TParaFormatMask& aVaries,TInt aPos,TInt aLength,
98 CParaFormat::TParaFormatGetMode aMode=CParaFormat::EAllAttributes)const;
99 IMPORT_C virtual void ApplyParaFormatL(const CParaFormat* aFormat,const TParaFormatMask& aMask,TInt aPos,TInt aLength);
100 IMPORT_C virtual void GetCharFormat(TCharFormat& aFormat,TCharFormatMask& aVaries,TInt aPos,TInt aLength)const;
101 IMPORT_C virtual void ApplyCharFormatL(const TCharFormat& aFormat,const TCharFormatMask& aMask,TInt aPos,TInt aLength);
103 IMPORT_C CGlobalText();
104 IMPORT_C CGlobalText(const CParaFormatLayer* aGlobalParaLayer,
105 const CCharFormatLayer* aGlobalCharLayer);
107 CGlobalText(const CGlobalText& aGlobalText);
108 CGlobalText& operator=(const CGlobalText& aGlobalText);
110 const CParaFormatLayer* iGlobalParaFormatLayer; // the global paragraph format layer; not owned
111 const CCharFormatLayer* iGlobalCharFormatLayer; // the global character format layer; not owned
118 #include <txtglobl.inl>