os/textandloc/textrendering/texthandling/inc/TXTFRMAT.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 TBool TTabStop::operator!=(const TTabStop& aTabStop)const
    21 /** Compares two tab stops for inequality. They are different if the twips 
    22 position or alignment is different.
    23 
    24 @param aTabStop The tab stop to compare with the current tab stop 
    25 @return ETrue if the objects' twips position or alignment differs. EFalse if 
    26 equal. */
    27 	{return !(*this==aTabStop);}
    28 
    29 
    30 TBool TParaBorder::operator!=(const TParaBorder& aParaBorder)const
    31 /**  Compares two paragraph border sides for inequality. Two paragraph border 
    32 sides are different if any of their data members are different.
    33 
    34 @param aBorder The paragraph border to compare with the current border.
    35 @return ETrue if the two paragraph border sides are different, 
    36 EFalse if not. */
    37 	{return !(*this==aParaBorder);}
    38 
    39  
    40 TBool TBullet::operator!=(const TBullet& aBullet)const
    41 /** Compares two bullet points for inequality. Two bullet points are unequal if 
    42 any of their data members are different.
    43 
    44 @param aBullet The bullet point to compare. 
    45 @return ETrue if the two bullet points are different, EFalse if not. */
    46 	{return !(*this==aBullet);}
    47 
    48 
    49  
    50 void CParaFormat::RemoveAllTabs()
    51 /** Removes all tab stops from the object. */
    52 	{
    53 	if (iTabList)
    54 		{
    55 		delete iTabList;
    56 		iTabList = NULL;
    57 		}
    58 	}
    59 
    60  
    61 TInt CParaFormat::TabCount()const
    62 /** Gets a count of the total number of tab stops in the object's tab list. If 
    63 the object has no tab list, returns zero.
    64 
    65 @return The number of tab stops. */
    66 	{return (iTabList)?iTabList->Count():0;}
    67 
    68 
    69  
    70 
    71 TParaFormatMask::TParaFormatMask()
    72 	:iGuard(0)
    73 /** The default C++ constructor constructs a paragraph format mask, initialising 
    74 all bits to zero. */
    75 	{}
    76 
    77  
    78 void TParaFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
    79 /** Sets a single attribute flag in the paragraph format mask.
    80 
    81 @param aAttribute The attribute flag to set. */
    82 	{iGuard|=(1<<aAttribute);}
    83 
    84  
    85 
    86 void TParaFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
    87 /** Clears a single attribute flag in the paragraph format mask.
    88 
    89 @param aAttribute The attribute flag to clear. */
    90 	{iGuard&=~(1<<aAttribute);}
    91 
    92  
    93 
    94 TBool TParaFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
    95 /** Tests whether an attribute flag is set.
    96 
    97 @param aAttribute The paragraph format attribute to test for. 
    98 @return ETrue if the flag is set, EFalse if not. */
    99 	{return (iGuard&(1<<aAttribute));}
   100 
   101  
   102 
   103 TBool TParaFormatMask::IsNull()const
   104 /** Tests whether the mask is NULL, indicating that no flags have been set.
   105 
   106 @return ETrue if mask is NULL, EFalse if not NULL. */
   107 	{return !iGuard;}
   108 
   109  
   110 TBool TParaFormatMask::operator!=(const TParaFormatMask& aMask)const
   111 /** Compares two paragraph format masks for inequality.
   112 
   113 @param aMask The mask to compare. 
   114 @return ETrue if any flags are different. EFalse if all flags are the same. */
   115 	{return !(*this==aMask);}
   116 
   117 
   118  
   119 
   120 TCharFormatMask::TCharFormatMask()
   121 	:iGuard(0)
   122 /** The default C++ constructor constructs a character format mask, initialising 
   123 all bits to zero. */
   124 	{}
   125 
   126  
   127 
   128 void TCharFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
   129 /** Sets a single attribute flag in the character format mask.
   130 
   131 @param aAttribute The attribute flag to set. */
   132 	{iGuard|=(1<<((aAttribute-KMaxParaAttributes)-1));}
   133 
   134  
   135 void TCharFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
   136 /** Clears a single attribute flag in the character format mask.
   137 
   138 @param aAttribute The attribute flag to clear. */
   139 	{iGuard&=~(1<<((aAttribute-KMaxParaAttributes)-1));}
   140 
   141  
   142 
   143 TBool TCharFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
   144 /** Tests whether an attribute flag is set.
   145 
   146 @param aAttribute The character format attribute to test for. 
   147 @return ETrue if the flag is set, EFalse if not. */
   148 	{return iGuard&(1<<((aAttribute-KMaxParaAttributes)-1));}
   149 
   150  
   151 TBool TCharFormatMask::IsNull()const
   152 /** Tests whether the mask is NULL, indicating that no flags have been set.
   153 
   154 @return ETrue if mask is NULL, EFalse if not NULL. */
   155 	{return !iGuard;}
   156 
   157  
   158 TBool TCharFormatMask::operator!=(const TCharFormatMask& aMask)const
   159 /** Compares two paragraph format masks for inequality.
   160 
   161 @param aMask The mask to compare. 
   162 @return ETrue if any flags are different. EFalse if all flags are the same. */
   163 	{return !(*this==aMask);}
   164 
   165