sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: RParagraphStyleInfo::RParagraphStyleInfo() sl@0: : iStyle(NULL),iStyleForNextPara(NULL) sl@0: /** This default C++ constructor is used to construct the object, initializing sl@0: both style pointers to NULL. */ sl@0: {} sl@0: sl@0: RParagraphStyleInfo::RParagraphStyleInfo(CParagraphStyle* aStyle,CParagraphStyle* aStyleForNextPara) sl@0: : iStyle(aStyle),iStyleForNextPara(aStyleForNextPara) sl@0: /** The C++ constructor is used to construct the object with a pointer to the style sl@0: information for the current paragraph and optionally a pointer to the style sl@0: information for the next paragraph. sl@0: sl@0: @param aStyle The style to apply to the current paragraph. sl@0: @param aStyleForNextPara Optionally, the style to apply to the next paragraph. sl@0: By default, NULL. */ sl@0: {} sl@0: sl@0: sl@0: sl@0: void RParagraphStyleInfo::Discard() sl@0: /** Deletes the style pointer owned by the object. The pointer to the style for sl@0: the following paragraph is not deleted. */ sl@0: {delete iStyle;} sl@0: sl@0: sl@0: sl@0: sl@0: CCharFormatLayer* CParagraphStyle::CharFormatLayer()const sl@0: /** Gets a pointer to the character format layer owned by the object. sl@0: sl@0: Note sl@0: sl@0: The style's character formatting is set and retrieved using this pointer. sl@0: sl@0: @return Pointer to the style's global character format layer. */ sl@0: {return iCharFormatLayer;} sl@0: sl@0: sl@0: TInt CParagraphStyle::OutlineLevel()const sl@0: /** Gets the style's outline level. sl@0: sl@0: @return The style's outline level. */ sl@0: {return iOutlineLevel;} sl@0: sl@0: sl@0: sl@0: sl@0: void CParagraphStyle::SetOutlineLevel(TInt aOutlineLevel) sl@0: /** Sets the style's outline level. sl@0: sl@0: @param aOutlineLevel The style's new outline level. */ sl@0: {iOutlineLevel=aOutlineLevel;} sl@0: sl@0: sl@0: sl@0: sl@0: void CParagraphStyle::SetType(TUid aType) sl@0: /** Sets the style's type UID. On construction, the style's type UID is initialized sl@0: to KUserDefinedParagraphStyleUid to distinguish it from ordinary paragraph sl@0: format layers, which have a type of KNormalParagraphStyleUid. This function sl@0: can be used to change it to another value. sl@0: sl@0: @param aType The style's type UID. */ sl@0: {iType=aType;} sl@0: sl@0: sl@0: sl@0: CParagraphStyle* CParagraphStyle::CloneL()const sl@0: /** Creates and returns a CParagraphStyle object which is a clone of the current sl@0: style. sl@0: sl@0: @return Pointer to a clone of the current style. */ sl@0: {return STATIC_CAST(CParagraphStyle*,DoCloneL());} sl@0: sl@0: sl@0: sl@0: sl@0: const RParagraphStyleInfo& CStyleList::operator[](TInt aIndex)const sl@0: /** Gets a style from the style list, from its index into the array. Two versions sl@0: are supplied. The compiler chooses the appropriate version based on the use sl@0: made of the returned reference. If it is used in an expression where the reference sl@0: can be modified, then the non-const version is chosen. sl@0: sl@0: @param aIndex The index of the style into the list. The first style is at sl@0: position zero. Must be within the bounds of the array or a panic occurs. sl@0: @return A const reference to the style at position aIndex in the array. sl@0: @return A non-const reference to the style at position aIndex in the array. */ sl@0: /** Gets a style from the style list, from its index into the array. Two versions sl@0: are supplied. The compiler chooses the appropriate version based on the use sl@0: made of the returned reference. If it is used in an expression where the reference sl@0: can be modified, then the non-const version is chosen. sl@0: sl@0: @param aIndex The index of the style into the list. The first style is at sl@0: position zero. Must be within the bounds of the array or a panic occurs. sl@0: @return A const reference to the style at position aIndex in the array. sl@0: @return A non-const reference to the style at position aIndex in the array. */ sl@0: {return iList->At(aIndex);} sl@0: sl@0: sl@0: RParagraphStyleInfo& CStyleList::operator[](TInt aIndex) sl@0: {return iList->At(aIndex);} sl@0: sl@0: sl@0: sl@0: TInt CStyleList::Count()const sl@0: /** Gets the number of styles in the style list. sl@0: sl@0: @return The number of styles in the style list */ sl@0: {return (iList) ? iList->Count() : 0;}