os/textandloc/textrendering/texthandling/inc/TXTSTYLE.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 __TXTSTYLE_H__
sl@0
    20
#define __TXTSTYLE_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <txtfmlyr.h>
sl@0
    25
sl@0
    26
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    27
#include <txtstyle_internal.h>
sl@0
    28
#endif
sl@0
    29
sl@0
    30
// Classes declared in this file:
sl@0
    31
class CParagraphStyle;
sl@0
    32
class CStyleTable;
sl@0
    33
//
sl@0
    34
// Classes referenced in this file:
sl@0
    35
class RReadStream;
sl@0
    36
class RWriteStream;
sl@0
    37
sl@0
    38
/** 
sl@0
    39
The maximum number of characters in a paragraph style name.
sl@0
    40
It should not be used by external developers.
sl@0
    41
*/
sl@0
    42
const TInt KMaxParagraphStyleName=0x20;
sl@0
    43
sl@0
    44
sl@0
    45
/** 
sl@0
    46
The name of a paragraph style, with a maximum of 32 characters, to uniquely 
sl@0
    47
identify the style.
sl@0
    48
It should not be used by external developers.
sl@0
    49
*/
sl@0
    50
typedef TBuf<KMaxParagraphStyleName> TParagraphStyleName;
sl@0
    51
sl@0
    52
//
sl@0
    53
// Defines a paragraph style, and the paragraph style to use next.
sl@0
    54
sl@0
    55
sl@0
    56
class RParagraphStyleInfo
sl@0
    57
/** 
sl@0
    58
A paragraph style.
sl@0
    59
sl@0
    60
This is a named set of paragraph and character format attributes, which can 
sl@0
    61
only be applied to whole paragraphs. Paragraph styles may be used in rich 
sl@0
    62
text. Global text does not support styles.
sl@0
    63
sl@0
    64
This class owns a pointer to an object of class CParagraphStyle, which stores 
sl@0
    65
the style information for the current paragraph; it also references another 
sl@0
    66
pointer which is optional, and stores the style information for the next paragraph. 
sl@0
    67
After construction, the RParagraphStyleInfo object should be appended to a 
sl@0
    68
style list (class CStyleList) which takes ownership of it. 
sl@0
    69
@publishedAll
sl@0
    70
@released
sl@0
    71
*/
sl@0
    72
	{
sl@0
    73
public:
sl@0
    74
	inline RParagraphStyleInfo();
sl@0
    75
	inline RParagraphStyleInfo(CParagraphStyle* aStyle,CParagraphStyle* aStyleForNextPara=NULL);
sl@0
    76
	inline void Discard();
sl@0
    77
public:
sl@0
    78
	/** Pointer to the paragraph style information. Owned by the RParagraphStyleInfo 
sl@0
    79
	object. */
sl@0
    80
	CParagraphStyle* iStyle;  // owned
sl@0
    81
	/** Pointer to the paragraph style information for the next paragraph. May be NULL. */
sl@0
    82
	CParagraphStyle* iStyleForNextPara;  // referenced, may be NULL
sl@0
    83
	};
sl@0
    84
sl@0
    85
sl@0
    86
sl@0
    87
sl@0
    88
class CParagraphStyle : public CParaFormatLayer
sl@0
    89
// Defines a paragraph style as a named para format with richer attributes.
sl@0
    90
/** 
sl@0
    91
Defines a paragraph style. 
sl@0
    92
sl@0
    93
A paragraph style is a named paragraph format layer which owns a set of character 
sl@0
    94
format attributes, has an outline level and a type UID. The outline level 
sl@0
    95
controls which headings should be shown when in document outline view. The 
sl@0
    96
type UID is used to differentiate between a word processor's built-in styles, 
sl@0
    97
which cannot be deleted, and user-defined styles, which can be deleted.
sl@0
    98
sl@0
    99
The style's paragraph format attributes can be set using the functions derived 
sl@0
   100
from the base class CParaFormatLayer. Its character format attributes can 
sl@0
   101
be set through the owned CCharFormatLayer*. The style's character and paragraph 
sl@0
   102
format attributes are based on the global format layers specified on construction. 
sl@0
   103
@publishedAll
sl@0
   104
@released
sl@0
   105
*/
sl@0
   106
	{
sl@0
   107
public:
sl@0
   108
	friend class CStyleList;
sl@0
   109
	friend class CRichTextIndex;
sl@0
   110
	
sl@0
   111
sl@0
   112
sl@0
   113
/** Controls what happens to the styles when styled rich text is pasted into another 
sl@0
   114
rich text object. */
sl@0
   115
	enum TStylePasteMode
sl@0
   116
		{
sl@0
   117
	/** The pasted rich text retains all formatting and any new style definitions are 
sl@0
   118
	added to the style list of the rich text object into which it is pasted. */
sl@0
   119
		EAddNewStyles,
sl@0
   120
	/** The pasted rich text retains all formatting, including that specified in the 
sl@0
   121
	styles, but the new style definitions are not added to the style list of the 
sl@0
   122
	rich text object into which it is pasted. The formatting specified in the 
sl@0
   123
	styles becomes specific formatting. */
sl@0
   124
		EConvertNewStyles,
sl@0
   125
	/** The pasted rich text loses all formatting specified in the styles. */
sl@0
   126
		EIgnoreNewStyles
sl@0
   127
		};
sl@0
   128
	
sl@0
   129
sl@0
   130
sl@0
   131
/** Retention of specific formatting */
sl@0
   132
	enum TApplyParaStyleMode
sl@0
   133
		{
sl@0
   134
	/** Specific character and paragraph formatting which has been applied to the paragraph 
sl@0
   135
	is retained when a style is applied. If the style's formatting conflicts 
sl@0
   136
	with the specific formatting, the specific formatting overrides the style. */
sl@0
   137
		ERetainAllSpecificFormats,
sl@0
   138
	/** Specific character and paragraph formatting which has been applied to the paragraph 
sl@0
   139
	is removed when a style is applied, regardless of whether or not it conflicts 
sl@0
   140
	with the style. */
sl@0
   141
		ERetainNoSpecificFormats,
sl@0
   142
	/** Specific paragraph formatting which has been applied to the paragraph is retained 
sl@0
   143
	when a style is applied. If the style's formatting conflicts with the specific 
sl@0
   144
	paragraph formatting, the specific formatting overrides the style.
sl@0
   145
	
sl@0
   146
	Specific character formatting which has been applied to the paragraph is removed, 
sl@0
   147
	regardless of whether or not it conflicts with the style. */
sl@0
   148
		ERetainSpecificParaFormat,
sl@0
   149
	/** Specific character formatting which has been applied to the paragraph is retained 
sl@0
   150
	when a style is applied. If the style's formatting conflicts with the specific 
sl@0
   151
	character formatting, the specific formatting overrides the style.
sl@0
   152
	
sl@0
   153
	Specific paragraph formatting which has been applied to the paragraph is removed, 
sl@0
   154
	regardless of whether or not it conflicts with the style. */
sl@0
   155
		ERetainSpecificCharFormat
sl@0
   156
		};
sl@0
   157
public:
sl@0
   158
	// Creates style & bases it on the speicfied global layers - the 'Normal' style.
sl@0
   159
	IMPORT_C static CParagraphStyle* NewL(const CParaFormatLayer& aGlobalParaFormatLayer,const CCharFormatLayer& aGlobalCharFormatLayer);
sl@0
   160
	IMPORT_C ~CParagraphStyle();
sl@0
   161
	//
sl@0
   162
	// Getters/Setters
sl@0
   163
	inline CCharFormatLayer* CharFormatLayer()const;
sl@0
   164
	inline TInt OutlineLevel()const;
sl@0
   165
	inline void SetOutlineLevel(TInt aOutlineLevel);
sl@0
   166
	//
sl@0
   167
	// Utilities
sl@0
   168
	IMPORT_C virtual TUid Type()const;
sl@0
   169
	inline void SetType(TUid aType);
sl@0
   170
	inline CParagraphStyle* CloneL()const;
sl@0
   171
private:
sl@0
   172
	CParagraphStyle();	
sl@0
   173
	void ConstructL(const CParaFormatLayer& aGlobalParaFormatLayer,
sl@0
   174
							 const CCharFormatLayer& aGlobalCharFormatLayer);
sl@0
   175
	IMPORT_C virtual CFormatLayer* DoCloneL()const;
sl@0
   176
	//
sl@0
   177
	// Save/Load
sl@0
   178
	static CParagraphStyle* NewL(RReadStream& aStream,const CParaFormatLayer& aGlobalParaFormatLayer,const CCharFormatLayer& aGlobalCharFormatLayer);
sl@0
   179
	virtual void InternalizeL(RReadStream& aStream,const CFormatLayer* aParaLayerBase,const CFormatLayer* aCharLayerBase);
sl@0
   180
	virtual void ExternalizeL(RWriteStream& aStream)const;
sl@0
   181
private:
sl@0
   182
	TUid iType;
sl@0
   183
	TInt iOutlineLevel;
sl@0
   184
	CCharFormatLayer* iCharFormatLayer;  // should never be NULL
sl@0
   185
public:
sl@0
   186
	/** Unique style name, with a maximum of 32 characters. */
sl@0
   187
	TParagraphStyleName iName;
sl@0
   188
	};
sl@0
   189
sl@0
   190
sl@0
   191
/** 
sl@0
   192
The number of entries by which a style list expands when its buffer is reallocated. 
sl@0
   193
It should not be used by external developers.
sl@0
   194
*/
sl@0
   195
const TInt KMaxStyleListGranularity=0x04;
sl@0
   196
sl@0
   197
sl@0
   198
sl@0
   199
class CStyleList : public CBase
sl@0
   200
/** 
sl@0
   201
A container of paragraph styles. 
sl@0
   202
sl@0
   203
It is implemented as a fixed length array of pointers to RParagraphStyleInfos. 
sl@0
   204
The array's granularity is specified on construction. The list takes ownership 
sl@0
   205
of all paragraph styles appended to it. When the list is deleted, all styles 
sl@0
   206
it owns are also deleted.
sl@0
   207
sl@0
   208
After the style list has been set up, it should normally be passed to a CRichText 
sl@0
   209
object, either in the rich text object's constructor, or by calling CRichText::SetStyleListExternallyOwned(). 
sl@0
   210
The rich text object takes ownership of the style list (unless SetStyleListExternallyOwned() 
sl@0
   211
is used). Styles can be modified, added to and removed from the style list 
sl@0
   212
after ownership of the list has been passed to the rich text object.
sl@0
   213
sl@0
   214
If CRichText::SetStyleListExternallyOwned() is used, the style list is not 
sl@0
   215
owned by the rich text object, and it must be stored and restored separately 
sl@0
   216
from the rich text object. 
sl@0
   217
@publishedAll
sl@0
   218
@released
sl@0
   219
*/
sl@0
   220
	{
sl@0
   221
public:
sl@0
   222
	IMPORT_C static CStyleList* NewL(TInt aCapacity=KMaxStyleListGranularity);
sl@0
   223
	IMPORT_C static CStyleList* NewL(RReadStream& aStream,
sl@0
   224
									const CParaFormatLayer* aGlobalParaFormatLayer,
sl@0
   225
									const CCharFormatLayer* aGlobalCharFormatLayer);
sl@0
   226
	IMPORT_C ~CStyleList();
sl@0
   227
	//
sl@0
   228
	inline const RParagraphStyleInfo& operator[](TInt aIndex)const;
sl@0
   229
	inline RParagraphStyleInfo& operator[](TInt aIndex);
sl@0
   230
	IMPORT_C const RParagraphStyleInfo& At(TInt aIndex)const;
sl@0
   231
	IMPORT_C RParagraphStyleInfo& At(TInt aIndex);
sl@0
   232
	//
sl@0
   233
	// Persistence
sl@0
   234
	IMPORT_C TStreamId StoreL(CStreamStore& aStore)const;
sl@0
   235
	IMPORT_C void ExternalizeL(RWriteStream& aStream)const;
sl@0
   236
	IMPORT_C void InternalizeL(RReadStream& aStream,
sl@0
   237
								const CParaFormatLayer* aGlobalParaFormatLayer,
sl@0
   238
								const CCharFormatLayer* aGlobalCharFormatLayer);
sl@0
   239
	//
sl@0
   240
	// Table maintenance
sl@0
   241
	IMPORT_C void Reset();  // Delete all styles from the style list.
sl@0
   242
	IMPORT_C TInt AppendL(RParagraphStyleInfo* aStyleSet);
sl@0
   243
	IMPORT_C void Remove(CParagraphStyle* aStyle);
sl@0
   244
	IMPORT_C TInt SetStyleToFollow(const RParagraphStyleInfo& aStyleSet);  // returns KErrNone or KErrNotFound
sl@0
   245
	IMPORT_C CStyleList* DeepCloneL()const;
sl@0
   246
	//
sl@0
   247
	// Getters
sl@0
   248
	IMPORT_C RParagraphStyleInfo* PtrByName(const TParagraphStyleName& aName)const;
sl@0
   249
	IMPORT_C RParagraphStyleInfo* PtrByType(const TUid aType)const;
sl@0
   250
	IMPORT_C TInt IndexByPtr(const CParaFormatLayer* aPtr)const;
sl@0
   251
	// Returns KErrNotFound if the specified style is not located in the style list.
sl@0
   252
	//
sl@0
   253
	IMPORT_C TInt IndexByName(const TDesC& aName)const;
sl@0
   254
	// Returns KErrNotFound if the specified style name is not located in the style list.
sl@0
   255
	//
sl@0
   256
	// General
sl@0
   257
	inline TInt Count()const;
sl@0
   258
protected:
sl@0
   259
	IMPORT_C CStyleList();
sl@0
   260
	IMPORT_C void ConstructL(TInt aGranularity);
sl@0
   261
private:
sl@0
   262
	void KillStyleList();
sl@0
   263
private:
sl@0
   264
	CArrayFixFlat<RParagraphStyleInfo>* iList;
sl@0
   265
	__DECLARE_TEST;
sl@0
   266
	};
sl@0
   267
sl@0
   268
sl@0
   269
#include <txtstyle.inl>
sl@0
   270
sl@0
   271
#endif