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