os/textandloc/textrendering/texthandling/inc/TXTFRMAT.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 __TXTFRMAT_H__
sl@0
    20
#define __TXTFRMAT_H__
sl@0
    21
sl@0
    22
#include <e32std.h>
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <gdi.h>
sl@0
    25
sl@0
    26
sl@0
    27
// Classes declared in this file:
sl@0
    28
class TTabStop;
sl@0
    29
class TParaBorder;
sl@0
    30
class TBullet;
sl@0
    31
class TParaBorderArray;
sl@0
    32
class CParaFormat;
sl@0
    33
class TParaFormatMask;
sl@0
    34
class TFontPresentation;
sl@0
    35
class TCharFormat;
sl@0
    36
class TCharFormatMask;
sl@0
    37
sl@0
    38
/** 
sl@0
    39
Provides support for system colours, in addition to literal colours, in 
sl@0
    40
text formatting.
sl@0
    41
sl@0
    42
The base class TRgb stores the 24-bit literal colour value using a TUint32. 
sl@0
    43
TLogicalRgb uses the MSB from iValue2 data member as an 8-bit index. The 
sl@0
    44
purpose of the  index is to allow applications to use logical colours. If the 
sl@0
    45
index is zero, the value is not a logical colour; it is treated as an ordinary 
sl@0
    46
TRgb value. If the index is non zero (1-255), the colour should be translated by the 
sl@0
    47
application into a system colour. Indices 254 and 255 are reserved for the 
sl@0
    48
system foreground and background colours, respectively and should be translated 
sl@0
    49
into them. Translation from index to RGB colour occurs in the implementation of 
sl@0
    50
MFormParam::SystemColor().
sl@0
    51
sl@0
    52
All colours in the Text and Text Attributes API are stored using TLogicalRgb 
sl@0
    53
values and are initialised to either TLogicalRgb::ESystemForegroundColor or 
sl@0
    54
TLogicalRgb::ESystemBackgroundColor.
sl@0
    55
sl@0
    56
This system allows an application to set its text colours once, perhaps using 
sl@0
    57
the system-wide colour scheme, rather than having to set the colours each 
sl@0
    58
time a text object is created. It is also compatible with legacy code which 
sl@0
    59
expects TRgb rather than TLogicalRgb values: for example, the logical 
sl@0
    60
foreground and background colours have their bottom three bytes filled with 
sl@0
    61
black and white respectively so that code which expects TRgb values can still 
sl@0
    62
use them. 
sl@0
    63
@publishedAll
sl@0
    64
@released
sl@0
    65
*/
sl@0
    66
class TLogicalRgb : public TRgb
sl@0
    67
	{
sl@0
    68
	public:
sl@0
    69
 
sl@0
    70
	/*
sl@0
    71
	Reserved colour indices for default foreground and background colours,
sl@0
    72
	and colours for the selection highlight. The top 128 indices (128-255)
sl@0
    73
	are reserved for future expansion, but the first 126 non-zero indices
sl@0
    74
	(1-127) can be used by the GUI as convenient.
sl@0
    75
	*/ 
sl@0
    76
	enum
sl@0
    77
		{
sl@0
    78
		ESystemSelectionForegroundIndex = 252,
sl@0
    79
		ESystemSelectionBackgroundIndex = 253,
sl@0
    80
		/** Index reserved for the system foreground colour (=254). */
sl@0
    81
		ESystemForegroundIndex = 254,
sl@0
    82
		/** Index reserved for the system background colour (=255). */
sl@0
    83
		ESystemBackgroundIndex = 255
sl@0
    84
		};
sl@0
    85
sl@0
    86
	
sl@0
    87
	 
sl@0
    88
	/** Used to construct TLogicalRgb objects which should use either the 
sl@0
    89
	system foreground or background colour. */
sl@0
    90
	enum TSystemColor
sl@0
    91
		{
sl@0
    92
		ESystemSelectionForegroundColor = ESystemSelectionForegroundIndex << 24,
sl@0
    93
		ESystemSelectionBackgroundColor = ESystemSelectionBackgroundIndex << 24,
sl@0
    94
		/** The system foreground colour. */
sl@0
    95
		ESystemForegroundColor = ESystemForegroundIndex << 24,
sl@0
    96
		/** The system background colour. */
sl@0
    97
		ESystemBackgroundColor = (ESystemBackgroundIndex << 24) | 0xFFFFFF
sl@0
    98
		};
sl@0
    99
		 
sl@0
   100
	/** Constructs a new TLogicalRgb object. */
sl@0
   101
	TLogicalRgb() : 
sl@0
   102
		iValue2(0) 
sl@0
   103
		{ 
sl@0
   104
		}
sl@0
   105
	
sl@0
   106
	/** Constructs the object with a 32-bit integer. The index is stored in the 
sl@0
   107
	MSB of iValue2 data member. A TRgb value may be stored in the base TRgb class. 
sl@0
   108
	@param aValue Integer holding the logical colour index. */
sl@0
   109
	TLogicalRgb(TUint32 aValue): 
sl@0
   110
		iValue2(aValue & 0xFF000000)
sl@0
   111
		{ 
sl@0
   112
		SetInternal((TUint32)aValue | 0xFF000000);
sl@0
   113
		}
sl@0
   114
		
sl@0
   115
	/** Constructs the object with a TSystemColor value.
sl@0
   116
	@param aValue Identifies whether the colour is the system foreground or 
sl@0
   117
	system background colour. */
sl@0
   118
	TLogicalRgb(TSystemColor aValue) : 
sl@0
   119
		iValue2((TUint32)aValue & 0xFF000000)
sl@0
   120
		{ 
sl@0
   121
		SetInternal((TUint32)aValue | 0xFF000000);
sl@0
   122
		}
sl@0
   123
sl@0
   124
	/** Constructs a new TLogicalRgb object from an existing one. */
sl@0
   125
	TLogicalRgb(const TRgb& aRgb) : 
sl@0
   126
		TRgb(aRgb),
sl@0
   127
		iValue2(0)
sl@0
   128
		{ 
sl@0
   129
		}
sl@0
   130
	 
sl@0
   131
	/** Returns the logical colour's index value. Zero indicates that the value 
sl@0
   132
	is not a logical colour; it is an ordinary TRgb value. 254 and 255 indicate 
sl@0
   133
	the system foreground and background colours, respectively.
sl@0
   134
	@return The index: between zero and 255 inclusive. */
sl@0
   135
	TUint SystemColorIndex() const 
sl@0
   136
		{ 
sl@0
   137
		return iValue2 >> 24; 
sl@0
   138
		}
sl@0
   139
		
sl@0
   140
	/** Sets the logical colour's index value.
sl@0
   141
	@param aIndex The new index value (between 1 and 253 inclusive). */
sl@0
   142
	void SetSystemColorIndex(TUint aIndex) 
sl@0
   143
		{ 
sl@0
   144
		iValue2 = aIndex << 24; 
sl@0
   145
		}
sl@0
   146
	
sl@0
   147
private:	
sl@0
   148
	TUint32 iValue2;
sl@0
   149
	
sl@0
   150
	};
sl@0
   151
sl@0
   152
/** 
sl@0
   153
Indicates which format attributes are relevant when setting or sensing text 
sl@0
   154
formatting. 
sl@0
   155
@publishedAll
sl@0
   156
@released
sl@0
   157
*/
sl@0
   158
enum TTextFormatAttribute
sl@0
   159
	{
sl@0
   160
	// Paragraph format attributes.
sl@0
   161
	/** Language of the paragraph for proofing. */
sl@0
   162
	EAttParaLanguage,
sl@0
   163
	/** Background colour of the paragraph. */
sl@0
   164
	EAttFillColor,
sl@0
   165
	/** Leading text margin. */
sl@0
   166
	EAttLeftMargin,
sl@0
   167
	/** Trailing text margin. */
sl@0
   168
	EAttRightMargin,
sl@0
   169
	/** First line leading indent. */
sl@0
   170
	EAttIndent,
sl@0
   171
	/** Horizontal alignment of paragraph. */
sl@0
   172
	EAttAlignment,
sl@0
   173
	/** Vertical paragraph alignment. */
sl@0
   174
	EAttVerticalAlignment,
sl@0
   175
	/** Inter-line spacing. */
sl@0
   176
	EAttLineSpacing,
sl@0
   177
	/** Control for EAttLineSpacing. */
sl@0
   178
	EAttLineSpacingControl,
sl@0
   179
	/** Space above paragraph. */
sl@0
   180
	EAttSpaceBefore,
sl@0
   181
	/** Space below paragraph. */
sl@0
   182
	EAttSpaceAfter,
sl@0
   183
	/** Whether a page break can occur within the paragraph. */
sl@0
   184
	EAttKeepTogether,
sl@0
   185
	/** Whether a page break can occur between this and the next paragraph. */
sl@0
   186
	EAttKeepWithNext,
sl@0
   187
	/** Whether a page break should be inserted before this paragraph. */
sl@0
   188
	EAttStartNewPage,
sl@0
   189
	/** Whether the last line of a paragraph can appear by itself at the top of a new 
sl@0
   190
	page, (widow), or the first line of a paragraph can appear by itself at the 
sl@0
   191
	bottom of the page, (orphan). */
sl@0
   192
	EAttWidowOrphan,
sl@0
   193
	/** Whether the paragraph should line wrap at the right margin. */
sl@0
   194
	EAttWrap,
sl@0
   195
	/** Distance between paragraph border and enclosed text. */
sl@0
   196
	EAttBorderMargin,
sl@0
   197
	/** Top of paragraph border. */
sl@0
   198
	EAttTopBorder,
sl@0
   199
	/** Bottom of paragraph border. */
sl@0
   200
	EAttBottomBorder,
sl@0
   201
	/** Left-hand side of paragraph border. */
sl@0
   202
	EAttLeftBorder,
sl@0
   203
	/** Right-hand side of paragraph border. */
sl@0
   204
	EAttRightBorder,
sl@0
   205
	/** Bullet point associated with paragraph. */
sl@0
   206
	EAttBullet,
sl@0
   207
	/** Spacing between default tab stops. */
sl@0
   208
	EAttDefaultTabWidth,
sl@0
   209
	/** Tab stop. */
sl@0
   210
	EAttTabStop,
sl@0
   211
sl@0
   212
	// Character format attributes.
sl@0
   213
	/** Language of individual characters within a paragraph for proofing. */
sl@0
   214
	EAttCharLanguage,
sl@0
   215
	/** Text colour. */
sl@0
   216
	EAttColor,
sl@0
   217
	/** Text highlight colour. */
sl@0
   218
	EAttFontHighlightColor,
sl@0
   219
	/** Text highlight style. */
sl@0
   220
	EAttFontHighlightStyle,
sl@0
   221
	/** Font height. */
sl@0
   222
	EAttFontHeight,
sl@0
   223
	/** Font posture (i.e. italics). */
sl@0
   224
	EAttFontPosture,
sl@0
   225
	/** Font stroke weight (i.e. bold). */
sl@0
   226
	EAttFontStrokeWeight,
sl@0
   227
	/** Subscript, superscript or normal print position. */
sl@0
   228
	EAttFontPrintPos,
sl@0
   229
	/** Underlining. */
sl@0
   230
	EAttFontUnderline,
sl@0
   231
	/** Strikethrough. */
sl@0
   232
	EAttFontStrikethrough,
sl@0
   233
	/** The typeface name. */
sl@0
   234
	EAttFontTypeface,
sl@0
   235
	/** Vertical picture alignment. */
sl@0
   236
	EAttFontPictureAlignment,
sl@0
   237
	/** Hidden text. */
sl@0
   238
	EAttFontHiddenText,
sl@0
   239
sl@0
   240
	/** Used internally to indicate the count of all attributes. */
sl@0
   241
	ETextFormatAttributeCount
sl@0
   242
	};
sl@0
   243
sl@0
   244
/*
sl@0
   245
Following enum and variable should not be used by external developers.
sl@0
   246
*/
sl@0
   247
enum {EVariableLengthValue = 0};
sl@0
   248
sl@0
   249
const TInt KMaxStyleName = 0x20;
sl@0
   250
const TInt KMaxParaAttributes = EAttTabStop;
sl@0
   251
const TInt KMaxCharAttributes = EAttFontHiddenText - KMaxParaAttributes;
sl@0
   252
const TInt KTabNotFound = -1;
sl@0
   253
sl@0
   254
/** 
sl@0
   255
A tab stop.
sl@0
   256
sl@0
   257
This is a position on a page used to align columns of text. It has a twips 
sl@0
   258
position and an alignment. The twips position is the width in twips (1/1440th 
sl@0
   259
of an inch) of the tab stop, i.e. the number of twips from the start of the 
sl@0
   260
line at which text can be inserted. It uniquely identifies the tab stop. The 
sl@0
   261
alignment (left, right, or centre) indicates how text inserted at the tab 
sl@0
   262
stop should be aligned.
sl@0
   263
sl@0
   264
Tab stops are paragraph format attributes. They are owned by the CParaFormat 
sl@0
   265
class, through which tab stops can be added and removed. 
sl@0
   266
@publishedAll
sl@0
   267
@released
sl@0
   268
*/
sl@0
   269
class TTabStop
sl@0
   270
	{
sl@0
   271
public:
sl@0
   272
	/** Text alignment at the tab stop. */
sl@0
   273
	enum TTabType
sl@0
   274
		{
sl@0
   275
		/** No tab. */
sl@0
   276
		ENullTab, 
sl@0
   277
		/** Text is aligned to the tab stop's leading edge (left for
sl@0
   278
		left-to-right paragraphs, right for right-to-left paragraphs). */
sl@0
   279
		ELeftTab, 
sl@0
   280
		/** Text is aligned to the tab stop's trailing edge (right for
sl@0
   281
		left-to-right paragraphs, left for right-to-left paragraphs). */
sl@0
   282
		ECenteredTab, 
sl@0
   283
		/** Text is right aligned at the tab stop. */
sl@0
   284
		ERightTab
sl@0
   285
		};
sl@0
   286
public:
sl@0
   287
	IMPORT_C TTabStop();
sl@0
   288
	IMPORT_C TTabStop(const TTabStop& aTabStop);
sl@0
   289
	IMPORT_C TTabStop& operator=(const TTabStop& aTabStop);
sl@0
   290
	IMPORT_C TBool operator==(const TTabStop& aTabStop) const;
sl@0
   291
	inline TBool operator!=(const TTabStop& aTabStop) const;
sl@0
   292
public:
sl@0
   293
	/** The twips position. This is the width in twips of the tab stop, i.e. 
sl@0
   294
	the number of twips from the start of the line at which text can be 
sl@0
   295
	inserted. */
sl@0
   296
	TUint32 iTwipsPosition;
sl@0
   297
	/** Text alignment at the tab stop. */
sl@0
   298
	TTabType iType;
sl@0
   299
	};
sl@0
   300
sl@0
   301
/** 
sl@0
   302
Defines the characteristics of one of the four sides of a paragraph border. 
sl@0
   303
sl@0
   304
These are the line style, thickness and colour. Paragraph borders are paragraph 
sl@0
   305
format attributes. They are owned by the CParaFormat class which allows 
sl@0
   306
paragraph borders to be added and removed. The CParaFormat::TParaBorderSide 
sl@0
   307
enumeration identifies which side of the paragraph the object applies to. 
sl@0
   308
@publishedAll
sl@0
   309
@released
sl@0
   310
*/
sl@0
   311
class TParaBorder
sl@0
   312
	{
sl@0
   313
public:
sl@0
   314
	
sl@0
   315
	/** Line styles. */
sl@0
   316
	enum TLineStyle 
sl@0
   317
		{
sl@0
   318
		/** No line style. */
sl@0
   319
		ENullLineStyle, 
sl@0
   320
		/** Solid line. */
sl@0
   321
		ESolid, 
sl@0
   322
		/** Double solid line. */
sl@0
   323
		EDouble,
sl@0
   324
		/** Dotted line. */
sl@0
   325
		EDotted, 
sl@0
   326
		/** Dashed line. */
sl@0
   327
		EDashed, 
sl@0
   328
		/** Alternating dots and dashes. */
sl@0
   329
		EDotDash, 
sl@0
   330
		/** Alternating sequence of two dots and a dash. */
sl@0
   331
		EDotDotDash
sl@0
   332
		};
sl@0
   333
	//
sl@0
   334
	IMPORT_C TParaBorder();
sl@0
   335
	IMPORT_C TBool operator==(const TParaBorder& aParaBorder) const;
sl@0
   336
	inline TBool operator!=(const TParaBorder& aParaBorder) const;
sl@0
   337
public:
sl@0
   338
	/** The line style. By default, ENullLineStyle. */
sl@0
   339
	TLineStyle iLineStyle;
sl@0
   340
	/** The line thickness in twips. By default, zero. */
sl@0
   341
	TInt iThickness;
sl@0
   342
	/** The line colour. By default, the system's default foreground colour. */
sl@0
   343
	TLogicalRgb iColor;
sl@0
   344
	/** ETrue indicates that the line colour is set to the default or current 
sl@0
   345
	text colour, overriding iColor. EFalse indicates that the iColor value is 
sl@0
   346
	used. By default, ETrue. */
sl@0
   347
	TBool iAutoColor;
sl@0
   348
	};
sl@0
   349
sl@0
   350
/** 
sl@0
   351
Stores the four sides of a paragraph border.
sl@0
   352
sl@0
   353
Paragraph borders sides are set individually using functions provided by class 
sl@0
   354
CParaFormat. 
sl@0
   355
@publishedAll
sl@0
   356
@released
sl@0
   357
*/
sl@0
   358
class TParaBorderArray
sl@0
   359
	{
sl@0
   360
public:
sl@0
   361
	TParaBorder iBorder[4];
sl@0
   362
	};
sl@0
   363
sl@0
   364
/** 
sl@0
   365
A bullet point. 
sl@0
   366
sl@0
   367
This is a paragraph format attribute, stored as the iBullet member of class 
sl@0
   368
CParaFormat.
sl@0
   369
sl@0
   370
Bullet points have a typeface, height, colour and a character code (defines 
sl@0
   371
the symbol displayed). Single level bullets only are supported. Bullets may 
sl@0
   372
also have a hanging indent. If set, this means that the rest of the paragraph 
sl@0
   373
following the line containing the bullet point is indented. 
sl@0
   374
@publishedAll
sl@0
   375
@released
sl@0
   376
*/
sl@0
   377
class TBullet
sl@0
   378
	{
sl@0
   379
	public:
sl@0
   380
	IMPORT_C TBullet();
sl@0
   381
	IMPORT_C TBool operator ==(const TBullet& aBullet) const;
sl@0
   382
	inline TBool operator !=(const TBullet& aBullet) const;
sl@0
   383
sl@0
   384
	/**
sl@0
   385
	Identifies the bullet style.
sl@0
   386
sl@0
   387
	Note: Styles other than ENullStyle and EBulletStyle are not currently supported.
sl@0
   388
	They have the same effect as the EBulletStyle.
sl@0
   389
	*/
sl@0
   390
	enum TStyle
sl@0
   391
		{
sl@0
   392
		/**
sl@0
   393
		No bullet. Used for style layers that override a bullet with the absence of a bullet.
sl@0
   394
		*/
sl@0
   395
		ENullStyle,
sl@0
   396
		/**
sl@0
   397
		A bullet point. Character with code 0x2022 is used by default.
sl@0
   398
		*/
sl@0
   399
		EBulletStyle,
sl@0
   400
		EArabicNumberStyle,
sl@0
   401
		ESmallRomanNumberStyle,
sl@0
   402
		ECapitalRomanNumberStyle,
sl@0
   403
		ESmallLetterStyle,
sl@0
   404
		ECapitalLetterStyle
sl@0
   405
		};
sl@0
   406
sl@0
   407
	/** Paragraph alignment */
sl@0
   408
	enum TAlignment
sl@0
   409
		{
sl@0
   410
		/** Paragraph left aligned. */
sl@0
   411
		ELeftAlign,
sl@0
   412
		/** Paragraph centre aligned. */
sl@0
   413
		ECenterAlign,
sl@0
   414
		/** Paragraph right aligned. */
sl@0
   415
		ERightAlign
sl@0
   416
		};
sl@0
   417
sl@0
   418
	/** The Unicode character used to represent the bullet point. By default 
sl@0
   419
	0x2022. */
sl@0
   420
	TChar iCharacterCode;		// the bullet or other symbol used if iStyle is EBulletStyle
sl@0
   421
	/** The height in twips of the font used for the bullet point character. 
sl@0
   422
	By default, zero. */
sl@0
   423
	TUint iHeightInTwips;
sl@0
   424
	/** The typeface used for the bullet point character. */
sl@0
   425
	TTypeface iTypeface;
sl@0
   426
	/** ETrue to indent the rest of the paragraph from the bullet point. 
sl@0
   427
	EFalse to align the bullet point character with the rest of the paragraph. */
sl@0
   428
	TBool iHangingIndent;
sl@0
   429
	/** The colour of the bullet point character. By default, the system's 
sl@0
   430
	default foreground colour. */
sl@0
   431
	TLogicalRgb iColor;
sl@0
   432
	TStyle iStyle;				// is this a bullet or a number or a letter?
sl@0
   433
	TInt iStartNumber;			// the number of the first paragraph in a run of paragraphs in this style
sl@0
   434
	TAlignment iAlignment;		// alignment of the bullet or number within the margin
sl@0
   435
	};
sl@0
   436
sl@0
   437
/** 
sl@0
   438
A transient container of paragraph format attributes, including tab stops, 
sl@0
   439
bullet points and paragraph borders. 
sl@0
   440
sl@0
   441
Rich and global text objects store paragraph formatting using paragraph format 
sl@0
   442
layers (see class CParaFormatLayer). The CParaFormat class is used to store 
sl@0
   443
the relevant attribute values when setting or sensing a CParaFormatLayer. 
sl@0
   444
It is normally used in combination with a TParaFormatMask, to specify which 
sl@0
   445
attributes are relevant to the function concerned.
sl@0
   446
sl@0
   447
On construction, all CParaFormat member data is initialised. The attributes 
sl@0
   448
which are not explicitly set are assigned default values. 
sl@0
   449
@publishedAll
sl@0
   450
@released
sl@0
   451
*/
sl@0
   452
class CParaFormat: public CBase
sl@0
   453
	{
sl@0
   454
public:
sl@0
   455
	/** Miscellaneous constants. */
sl@0
   456
	enum
sl@0
   457
		{
sl@0
   458
		/** The maximum number of paragraph borders (= 4). */
sl@0
   459
		EMaxParaBorder = 4
sl@0
   460
		};
sl@0
   461
sl@0
   462
	/** Paragraph border sides */
sl@0
   463
	enum TParaBorderSide
sl@0
   464
		{
sl@0
   465
		/** The border at the top of the paragraph. */
sl@0
   466
		EParaBorderTop,
sl@0
   467
		/** The border at the bottom of the paragraph. */
sl@0
   468
		EParaBorderBottom,
sl@0
   469
		/** The border on the left hand side. */
sl@0
   470
		EParaBorderLeft,
sl@0
   471
		/** The border on the right hand side. */
sl@0
   472
		EParaBorderRight
sl@0
   473
		};
sl@0
   474
sl@0
   475
	/** Line spacing control */
sl@0
   476
	enum TLineSpacingControl
sl@0
   477
		{
sl@0
   478
		/** Twips line spacing must be at least as wide as the 
sl@0
   479
		iLineSpacingInTwips value. */
sl@0
   480
		ELineSpacingAtLeastInTwips,
sl@0
   481
		/** Twips line spacing must be exactly the iLineSpacingInTwips value. */
sl@0
   482
		ELineSpacingExactlyInTwips,
sl@0
   483
		/** Pixels line spacing must be at least as wide as the line spacing 
sl@0
   484
		value in pixels. */
sl@0
   485
		ELineSpacingAtLeastInPixels,
sl@0
   486
		/** Pixels line spacing must be exactly the same as the line spacing 
sl@0
   487
		value in pixels. */
sl@0
   488
		ELineSpacingExactlyInPixels
sl@0
   489
		};
sl@0
   490
sl@0
   491
	/** Paragraph alignment */
sl@0
   492
	enum TAlignment
sl@0
   493
		{
sl@0
   494
		/** Paragraph aligned to the leading margin (left for left-to-right
sl@0
   495
		paragraphs, right for right-to-left paragraphs). */
sl@0
   496
		ELeftAlign,
sl@0
   497
		/** Paragraph top aligned. */
sl@0
   498
		ETopAlign = ELeftAlign,
sl@0
   499
		/** Paragraph centre aligned. */
sl@0
   500
		ECenterAlign,
sl@0
   501
		/** Paragraph aligned to the trailing margin (right for left-to-right
sl@0
   502
		paragraphs, left for right-to-left paragraphs). */
sl@0
   503
		ERightAlign,
sl@0
   504
		/** Paragraph bottom aligned. */
sl@0
   505
		EBottomAlign = ERightAlign,
sl@0
   506
		/** Paragraph justified. */
sl@0
   507
		EJustifiedAlign,
sl@0
   508
		/** Used by the spreadsheet application. Unlike ETopAlign and 
sl@0
   509
		EBottomAlign, provides no default implementation. */
sl@0
   510
		EUnspecifiedAlign,
sl@0
   511
		/** User-defined paragraph alignment. */
sl@0
   512
		ECustomAlign,
sl@0
   513
		/** Absolute left alignment */
sl@0
   514
		EAbsoluteLeftAlign,
sl@0
   515
		/** Absolute right alignment */
sl@0
   516
		EAbsoluteRightAlign
sl@0
   517
		};
sl@0
   518
sl@0
   519
	/** Attribute sense mode */
sl@0
   520
	enum TParaFormatGetMode
sl@0
   521
		{
sl@0
   522
		/** Indicates that all paragraph format attributes are written to the 
sl@0
   523
		result when sensing paragraph format attributes. */
sl@0
   524
		EAllAttributes,
sl@0
   525
		/** Indicates that tabs, bullets and borders are not sensed. */
sl@0
   526
		EFixedAttributes
sl@0
   527
		};
sl@0
   528
sl@0
   529
	IMPORT_C static CParaFormat* NewL();
sl@0
   530
	IMPORT_C static CParaFormat* NewLC();
sl@0
   531
	IMPORT_C static CParaFormat* NewL(const CParaFormat& aFormat);
sl@0
   532
	IMPORT_C CParaFormat();
sl@0
   533
	IMPORT_C ~CParaFormat();
sl@0
   534
	IMPORT_C void ResetNonDestructive();  // preserves any allocated tabs, bullets or borders.
sl@0
   535
	IMPORT_C void Reset();  // full reset, deletes and nulls any allocated tabs, bullets or borders.
sl@0
   536
	IMPORT_C void CopyL(const CParaFormat& aFormat, const TParaFormatMask& aMask);
sl@0
   537
	IMPORT_C void CopyL(const CParaFormat& aFormat);
sl@0
   538
	IMPORT_C void Strip();  // Cleans up this paragraph format.
sl@0
   539
	IMPORT_C TBool IsEqual(const CParaFormat& aFormat, const TParaFormatMask& aMask) const;
sl@0
   540
	IMPORT_C TBool IsEqual(const CParaFormat& aFormat) const;
sl@0
   541
	IMPORT_C void StoreTabL(const TTabStop& aTabStop);
sl@0
   542
	IMPORT_C void RemoveTab(TInt aTabTwipsPosition);
sl@0
   543
	inline void RemoveAllTabs();
sl@0
   544
	IMPORT_C const TTabStop TabStop(TInt aTabIndex) const;
sl@0
   545
	inline TInt TabCount() const;
sl@0
   546
	IMPORT_C TInt LocateTab(TInt aTabTwipsPosition) const;
sl@0
   547
	IMPORT_C void SetParaBorderL(TParaBorderSide aSide, const TParaBorder& aBorder);  // Overwrites any existing border for that side
sl@0
   548
	IMPORT_C void RemoveAllBorders();
sl@0
   549
	IMPORT_C const TParaBorder ParaBorder(TParaBorderSide aSide) const;
sl@0
   550
sl@0
   551
	/** Tests whether any paragraph borders have been set.
sl@0
   552
	
sl@0
   553
	@return ETrue if any paragraph borders have been set, EFalse if not. */
sl@0
   554
	inline TBool BordersPresent() const { return iParaBorderArray != NULL;}
sl@0
   555
	
sl@0
   556
    inline TParaBorder* ParaBorderPtr(TParaBorderSide aSide)
sl@0
   557
sl@0
   558
	/** Gets a pointer to the paragraph border on the side specified. If no 
sl@0
   559
	paragraph border array has been allocated, returns NULL.
sl@0
   560
	
sl@0
   561
	@param aSide The side for the paragraph border. 
sl@0
   562
	@return Pointer to the paragraph border on the specified side. */
sl@0
   563
		{ return iParaBorderArray ? &iParaBorderArray->iBorder[aSide] : NULL; }
sl@0
   564
	IMPORT_C TBool AllBordersEqual(const CParaFormat& aFormat) const;
sl@0
   565
	IMPORT_C TBool IsBorderEqual(TParaBorderSide aSide, const CParaFormat& aFormat) const;
sl@0
   566
private:
sl@0
   567
	CParaFormat(const CParaFormat& aFormat);
sl@0
   568
	void CreateTabListL();
sl@0
   569
	enum
sl@0
   570
		{
sl@0
   571
		ETabStoreGranularity = 2
sl@0
   572
		};
sl@0
   573
sl@0
   574
	CParaFormat& operator=(const CParaFormat& aParaFormat);	// intentionally unimplemented
sl@0
   575
private:
sl@0
   576
	CArrayFixFlat<TTabStop>* iTabList;			// ordered list of tab stops; null if none
sl@0
   577
	TParaBorderArray* iParaBorderArray;			// array of paragraph borders; null if none
sl@0
   578
public:
sl@0
   579
	/** The background colour of the paragraph. By default the default system 
sl@0
   580
	background colour. This colour applies to the area bounded by the paragraph 
sl@0
   581
	border, if one exists. */
sl@0
   582
	TLogicalRgb iFillColor;
sl@0
   583
	/** The language of the paragraph for proofing. By default 
sl@0
   584
	KParaDefaultLanguage. Used for example when spell checking a document 
sl@0
   585
	which contains text in more than one language, so that the program 
sl@0
   586
	recognises the text as being in another language. */
sl@0
   587
	TInt32 iLanguage;						
sl@0
   588
	/** The width in twips of the leading margin (left for left-to-right
sl@0
   589
	paragraphs, right for right-to-left paragraphs). By default
sl@0
   590
	KParaDefaultLeftMargin (zero). */
sl@0
   591
	TInt32 iLeftMarginInTwips;
sl@0
   592
	/** The width in twips of the trailing margin (right for left-to-right
sl@0
   593
	paragraphs, left for right-to-left paragraphs). By default
sl@0
   594
	KParaDefaultRightMargin (zero). */
sl@0
   595
	TInt32 iRightMarginInTwips;
sl@0
   596
	/** An indent for the first line in the paragraph, relative to the leading
sl@0
   597
	margin (left for left-to-right paragraphs, right for right-to-left
sl@0
   598
	paragraphs). By default KParaDefaultIndent (zero). */
sl@0
   599
	TInt32 iIndentInTwips;
sl@0
   600
	/** Horizontal alignment of paragraph. By default KParaDefaultHorizAlign 
sl@0
   601
	(left). */
sl@0
   602
	TAlignment iHorizontalAlignment;
sl@0
   603
	/** Vertical alignment of paragraph, (intended for use by spreadsheet 
sl@0
   604
	applications). 	By default KParaDefaultVertAlign (unspecified). */
sl@0
   605
	TAlignment iVerticalAlignment;
sl@0
   606
	/** Inter-line spacing within the paragraph, in twips. By default 
sl@0
   607
	KParaDefaultLineSpacing (200 twips). */
sl@0
   608
	TInt32 iLineSpacingInTwips;	// distance between successive baselines
sl@0
   609
	/** Control for the iLineSpacingInTwips value. By default, 
sl@0
   610
	KParaDefaultLineSpacingControl 	(ELineSpacingAtLeastInTwips). */
sl@0
   611
	TLineSpacingControl iLineSpacingControl;	// whether iLineSpacingInTwips means 'at least' or 'exactly'
sl@0
   612
	/** Space above paragraph. By default KParaDefaultSpaceBefore (zero). */
sl@0
   613
	TInt32 iSpaceBeforeInTwips;	
sl@0
   614
	/** Space below paragraph. By default KParaDefaultSpaceAfter (zero). */
sl@0
   615
	TInt32 iSpaceAfterInTwips;	
sl@0
   616
	/** Prevents a page break within paragraph if ETrue. By default 
sl@0
   617
	KParaDefaultKeepTogether (EFalse). */
sl@0
   618
	TBool iKeepTogether;	
sl@0
   619
	/** Prevents a page break between this paragraph and the following 
sl@0
   620
	paragraph if ETrue. By default, KParaDefaultKeepWithNext (EFalse). */
sl@0
   621
	TBool iKeepWithNext;	
sl@0
   622
	/** Inserts a page break immediately before this paragraph if ETrue. 
sl@0
   623
	By default, KParaDefaultStartNewPage (EFalse). */
sl@0
   624
	TBool iStartNewPage;		
sl@0
   625
	/** Prevents the printing of the last line of a paragraph at the top 
sl@0
   626
	of the page (referred to as a widow), or the first line of a paragraph 
sl@0
   627
	at the bottom of the page, (referred to as an orphan). By default, 
sl@0
   628
	KParaDefaultWidowOrphan (EFalse). */
sl@0
   629
	TBool iWidowOrphan;	
sl@0
   630
	/** Specifies whether the paragraph should line wrap at the right margin. 
sl@0
   631
	By default KParaDefaultWrap (ETrue). */
sl@0
   632
	TBool iWrap;
sl@0
   633
	/** Distance in twips between the paragraph border and the enclosed text. 
sl@0
   634
	By default KParaDefaultBorderMargin (zero). */
sl@0
   635
	TInt32 iBorderMarginInTwips;	
sl@0
   636
	/** The bullet point associated with the paragraph. A NULL value indicates 
sl@0
   637
	no bullet point. By default NULL. */
sl@0
   638
	TBullet* iBullet;		
sl@0
   639
	/** Specifies the default tab stop width. By default KParaDefaultTabWidth 
sl@0
   640
	(360 twips). */
sl@0
   641
	TUint32 iDefaultTabWidthInTwips;
sl@0
   642
	};
sl@0
   643
sl@0
   644
/** 
sl@0
   645
Masks the paragraph format attributes which are involved when setting and 
sl@0
   646
sensing paragraph formatting. 
sl@0
   647
sl@0
   648
Used in conjunction with an object of class CParaFormat. When setting formatting, 
sl@0
   649
only the attributes which are set in the mask will participate in the relevant 
sl@0
   650
function. When sensing formatting, on return, the mask indicates which attributes 
sl@0
   651
were sensed from the format layer, and were not taken from the default values. 
sl@0
   652
@publishedAll
sl@0
   653
@released
sl@0
   654
*/
sl@0
   655
class TParaFormatMask
sl@0
   656
	{
sl@0
   657
public:
sl@0
   658
	inline TParaFormatMask();
sl@0
   659
	inline void SetAttrib(TTextFormatAttribute aAttribute);
sl@0
   660
	inline void ClearAttrib(TTextFormatAttribute aAttribute);
sl@0
   661
	IMPORT_C void SetAll();
sl@0
   662
	IMPORT_C void ClearAll();
sl@0
   663
	inline TBool AttribIsSet(TTextFormatAttribute aAttribute) const;
sl@0
   664
	inline TBool IsNull() const;
sl@0
   665
	IMPORT_C TBool operator==(const TParaFormatMask& aMask) const;
sl@0
   666
	inline TBool operator!=(const TParaFormatMask& aMask) const;
sl@0
   667
sl@0
   668
private:
sl@0
   669
	TUint32 iGuard;
sl@0
   670
	};
sl@0
   671
sl@0
   672
/** 
sl@0
   673
Specifies the font-independent character format attributes, including bold, 
sl@0
   674
italics and underlining.
sl@0
   675
sl@0
   676
An instance of this class is owned by the character formatting container (class 
sl@0
   677
TCharFormat). 
sl@0
   678
@publishedAll
sl@0
   679
@released
sl@0
   680
*/
sl@0
   681
class TFontPresentation
sl@0
   682
	{
sl@0
   683
public:
sl@0
   684
		
sl@0
   685
	/** Highlight style */
sl@0
   686
	enum TFontHighlightStyle
sl@0
   687
		{
sl@0
   688
		/** No highlighting used. */
sl@0
   689
		EFontHighlightNone,
sl@0
   690
		/** Normal (square cornered) highlighting used. */
sl@0
   691
		EFontHighlightNormal,
sl@0
   692
		/** Rounded corner highlighting used. */
sl@0
   693
		EFontHighlightRounded,
sl@0
   694
		/** Text is drawn offset towards the bottom-right in the highlight 
sl@0
   695
		colour, (iHighlightColor) before being drawn again in the text colour, 
sl@0
   696
		(iTextColor) creating a shadow effect. */
sl@0
   697
		EFontHighlightShadow,
sl@0
   698
		/** Placeholder for "unrecognised word" highlighting style for FEPs */
sl@0
   699
		EFontHighlightNoMatchesIndicator,
sl@0
   700
		/** First custom highlighting style is used.
sl@0
   701
		@see MFormCustomDraw::DrawText(). */
sl@0
   702
		EFontHighlightFirstCustomStyle = 128,
sl@0
   703
		/** Second custom highlighting style is used. 
sl@0
   704
		@see MFormCustomDraw::DrawText(). */
sl@0
   705
		EFontHighlightLastCustomStyle = 255
sl@0
   706
		};
sl@0
   707
	
sl@0
   708
	
sl@0
   709
	/** Vertical picture alignment */
sl@0
   710
	enum TAlignment
sl@0
   711
		{
sl@0
   712
		/** The top of the picture is aligned flush with the top of the font's 
sl@0
   713
		ascent, so that the picture may descend below the line. */
sl@0
   714
		EAlignTop,
sl@0
   715
		/** The bottom of the picture is aligned flush with the bottom of the 
sl@0
   716
		font's descent so that the picture may extend above the line. */
sl@0
   717
		EAlignBottom,
sl@0
   718
		/** The picture is aligned so that its centre is positioned at the 
sl@0
   719
		baseline of the line. */
sl@0
   720
		EAlignCentered,
sl@0
   721
		/** The bottom of the picture is aligned with the baseline of the font.
sl@0
   722
		This is the default. */
sl@0
   723
		EAlignBaseLine
sl@0
   724
		};
sl@0
   725
	//
sl@0
   726
	IMPORT_C TFontPresentation();
sl@0
   727
	//
sl@0
   728
	// Enquiry function
sl@0
   729
	IMPORT_C TBool IsEqual(const TFontPresentation& aFontPresentation, const TCharFormatMask& aMask) const;
sl@0
   730
public:
sl@0
   731
	/** The text colour. By default, the default system foreground colour. */
sl@0
   732
	TLogicalRgb iTextColor;
sl@0
   733
	/** The highlight colour for selected text. Only takes effect if 
sl@0
   734
	iHighlightStyle is not EFontHighlightNone. By default, the default system 
sl@0
   735
	foreground colour. */
sl@0
   736
	TLogicalRgb iHighlightColor;  // Background color
sl@0
   737
	/** Style for character highlighting. By default EFontHighlightNone. */
sl@0
   738
	TFontHighlightStyle iHighlightStyle;
sl@0
   739
	/** The value of the strikethrough attribute. By default EStrikethroughOff. */
sl@0
   740
	TFontStrikethrough iStrikethrough;
sl@0
   741
	/** The value of the underline attribute. By default EUnderlineOff. */
sl@0
   742
	TFontUnderline iUnderline;
sl@0
   743
	/** Specifies whether or not text is hidden. Note that hidden text is not 
sl@0
   744
	currently supported by the text layout engine. This attribute is provided 
sl@0
   745
	to preserve information when copying from and to devices which support 
sl@0
   746
	hidden text. By default EFalse. */
sl@0
   747
	TBool iHiddenText;
sl@0
   748
	/** The vertical alignment of a picture character. By default 
sl@0
   749
	EAlignBaseLine. */
sl@0
   750
	TAlignment iPictureAlignment;
sl@0
   751
	};
sl@0
   752
sl@0
   753
/** 
sl@0
   754
A transient container of character format attributes, including 
sl@0
   755
font-dependent and font-independent attributes. 
sl@0
   756
sl@0
   757
The font-independent attributes are stored in a TFontPresentation object. 
sl@0
   758
Rich and global text objects store character formatting using character format 
sl@0
   759
layers (see class CCharFormatLayer). The TCharFormat class is used to store 
sl@0
   760
the relevant attribute values when setting or sensing a CCharFormatLayer. 
sl@0
   761
It is normally used in combination with a TCharFormatMask, to specify which 
sl@0
   762
attributes are relevant to the function concerned. 
sl@0
   763
@publishedAll
sl@0
   764
@released
sl@0
   765
*/
sl@0
   766
class TCharFormat
sl@0
   767
	{
sl@0
   768
public:
sl@0
   769
	IMPORT_C TCharFormat();
sl@0
   770
	IMPORT_C TCharFormat(const TDesC &aTypefaceName, TInt aHeight);
sl@0
   771
	//
sl@0
   772
	// Enquiry functions
sl@0
   773
	IMPORT_C TBool IsEqual(const TCharFormat& aFormat, const TCharFormatMask& aMask) const;
sl@0
   774
	IMPORT_C TBool IsEqual(const TCharFormat& aFormat) const;
sl@0
   775
public:
sl@0
   776
	/** Specifies the language of individual characters for proofing. Used for 
sl@0
   777
	example when spell checking a document which contains text in more than one 
sl@0
   778
	language, so that the program recognises the text as being in another 
sl@0
   779
	language. Language is also a paragraph format attribute. If the language 
sl@0
   780
	setting of a character is different from the language setting of the 
sl@0
   781
	containing paragraph, the character's setting takes precedence. */
sl@0
   782
	TInt32 iLanguage;
sl@0
   783
	/** Font independent character format attributes. */
sl@0
   784
	TFontPresentation iFontPresentation; 
sl@0
   785
	/** Device independent font specification. */
sl@0
   786
	TFontSpec iFontSpec;  
sl@0
   787
	};
sl@0
   788
sl@0
   789
/** 
sl@0
   790
Masks the character format attributes which are involved when setting and 
sl@0
   791
sensing character formatting.
sl@0
   792
sl@0
   793
Used in conjunction with an object of class TCharFormat.
sl@0
   794
sl@0
   795
When setting formatting, only the attributes which are set in the mask should 
sl@0
   796
participate in the relevant function. When sensing formatting, on return, 
sl@0
   797
the mask indicates which attributes were sensed from the format layer, and 
sl@0
   798
were not taken from the default values. 
sl@0
   799
@publishedAll
sl@0
   800
@released
sl@0
   801
*/
sl@0
   802
class TCharFormatMask
sl@0
   803
	{
sl@0
   804
public:
sl@0
   805
	inline TCharFormatMask();
sl@0
   806
	inline void SetAttrib(TTextFormatAttribute aAttribute);
sl@0
   807
	inline void ClearAttrib(TTextFormatAttribute aAttribute);
sl@0
   808
	inline TBool AttribIsSet(TTextFormatAttribute aAttribute) const;
sl@0
   809
	IMPORT_C void SetAll();
sl@0
   810
	IMPORT_C void ClearAll();
sl@0
   811
	inline TBool IsNull()const;
sl@0
   812
	IMPORT_C TBool operator==(const TCharFormatMask& aMask) const;
sl@0
   813
	inline TBool operator!=(const TCharFormatMask& aMask) const;
sl@0
   814
sl@0
   815
private:
sl@0
   816
	TUint32 iGuard;
sl@0
   817
	};
sl@0
   818
sl@0
   819
#include <txtfrmat.inl>
sl@0
   820
sl@0
   821
#endif