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 |
|
sl@0
|
20 |
|
sl@0
|
21 |
RParagraphStyleInfo::RParagraphStyleInfo()
|
sl@0
|
22 |
: iStyle(NULL),iStyleForNextPara(NULL)
|
sl@0
|
23 |
/** This default C++ constructor is used to construct the object, initializing
|
sl@0
|
24 |
both style pointers to NULL. */
|
sl@0
|
25 |
{}
|
sl@0
|
26 |
|
sl@0
|
27 |
RParagraphStyleInfo::RParagraphStyleInfo(CParagraphStyle* aStyle,CParagraphStyle* aStyleForNextPara)
|
sl@0
|
28 |
: iStyle(aStyle),iStyleForNextPara(aStyleForNextPara)
|
sl@0
|
29 |
/** The C++ constructor is used to construct the object with a pointer to the style
|
sl@0
|
30 |
information for the current paragraph and optionally a pointer to the style
|
sl@0
|
31 |
information for the next paragraph.
|
sl@0
|
32 |
|
sl@0
|
33 |
@param aStyle The style to apply to the current paragraph.
|
sl@0
|
34 |
@param aStyleForNextPara Optionally, the style to apply to the next paragraph.
|
sl@0
|
35 |
By default, NULL. */
|
sl@0
|
36 |
{}
|
sl@0
|
37 |
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
void RParagraphStyleInfo::Discard()
|
sl@0
|
41 |
/** Deletes the style pointer owned by the object. The pointer to the style for
|
sl@0
|
42 |
the following paragraph is not deleted. */
|
sl@0
|
43 |
{delete iStyle;}
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
CCharFormatLayer* CParagraphStyle::CharFormatLayer()const
|
sl@0
|
49 |
/** Gets a pointer to the character format layer owned by the object.
|
sl@0
|
50 |
|
sl@0
|
51 |
Note
|
sl@0
|
52 |
|
sl@0
|
53 |
The style's character formatting is set and retrieved using this pointer.
|
sl@0
|
54 |
|
sl@0
|
55 |
@return Pointer to the style's global character format layer. */
|
sl@0
|
56 |
{return iCharFormatLayer;}
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
TInt CParagraphStyle::OutlineLevel()const
|
sl@0
|
60 |
/** Gets the style's outline level.
|
sl@0
|
61 |
|
sl@0
|
62 |
@return The style's outline level. */
|
sl@0
|
63 |
{return iOutlineLevel;}
|
sl@0
|
64 |
|
sl@0
|
65 |
|
sl@0
|
66 |
|
sl@0
|
67 |
|
sl@0
|
68 |
void CParagraphStyle::SetOutlineLevel(TInt aOutlineLevel)
|
sl@0
|
69 |
/** Sets the style's outline level.
|
sl@0
|
70 |
|
sl@0
|
71 |
@param aOutlineLevel The style's new outline level. */
|
sl@0
|
72 |
{iOutlineLevel=aOutlineLevel;}
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
void CParagraphStyle::SetType(TUid aType)
|
sl@0
|
78 |
/** Sets the style's type UID. On construction, the style's type UID is initialized
|
sl@0
|
79 |
to KUserDefinedParagraphStyleUid to distinguish it from ordinary paragraph
|
sl@0
|
80 |
format layers, which have a type of KNormalParagraphStyleUid. This function
|
sl@0
|
81 |
can be used to change it to another value.
|
sl@0
|
82 |
|
sl@0
|
83 |
@param aType The style's type UID. */
|
sl@0
|
84 |
{iType=aType;}
|
sl@0
|
85 |
|
sl@0
|
86 |
|
sl@0
|
87 |
|
sl@0
|
88 |
CParagraphStyle* CParagraphStyle::CloneL()const
|
sl@0
|
89 |
/** Creates and returns a CParagraphStyle object which is a clone of the current
|
sl@0
|
90 |
style.
|
sl@0
|
91 |
|
sl@0
|
92 |
@return Pointer to a clone of the current style. */
|
sl@0
|
93 |
{return STATIC_CAST(CParagraphStyle*,DoCloneL());}
|
sl@0
|
94 |
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
|
sl@0
|
98 |
const RParagraphStyleInfo& CStyleList::operator[](TInt aIndex)const
|
sl@0
|
99 |
/** Gets a style from the style list, from its index into the array. Two versions
|
sl@0
|
100 |
are supplied. The compiler chooses the appropriate version based on the use
|
sl@0
|
101 |
made of the returned reference. If it is used in an expression where the reference
|
sl@0
|
102 |
can be modified, then the non-const version is chosen.
|
sl@0
|
103 |
|
sl@0
|
104 |
@param aIndex The index of the style into the list. The first style is at
|
sl@0
|
105 |
position zero. Must be within the bounds of the array or a panic occurs.
|
sl@0
|
106 |
@return A const reference to the style at position aIndex in the array.
|
sl@0
|
107 |
@return A non-const reference to the style at position aIndex in the array. */
|
sl@0
|
108 |
/** Gets a style from the style list, from its index into the array. Two versions
|
sl@0
|
109 |
are supplied. The compiler chooses the appropriate version based on the use
|
sl@0
|
110 |
made of the returned reference. If it is used in an expression where the reference
|
sl@0
|
111 |
can be modified, then the non-const version is chosen.
|
sl@0
|
112 |
|
sl@0
|
113 |
@param aIndex The index of the style into the list. The first style is at
|
sl@0
|
114 |
position zero. Must be within the bounds of the array or a panic occurs.
|
sl@0
|
115 |
@return A const reference to the style at position aIndex in the array.
|
sl@0
|
116 |
@return A non-const reference to the style at position aIndex in the array. */
|
sl@0
|
117 |
{return iList->At(aIndex);}
|
sl@0
|
118 |
|
sl@0
|
119 |
|
sl@0
|
120 |
RParagraphStyleInfo& CStyleList::operator[](TInt aIndex)
|
sl@0
|
121 |
{return iList->At(aIndex);}
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
|
sl@0
|
125 |
TInt CStyleList::Count()const
|
sl@0
|
126 |
/** Gets the number of styles in the style list.
|
sl@0
|
127 |
|
sl@0
|
128 |
@return The number of styles in the style list */
|
sl@0
|
129 |
{return (iList) ? iList->Count() : 0;}
|