1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/inc/TXTFRMAT.INL Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,165 @@
1.4 +/*
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +TBool TTabStop::operator!=(const TTabStop& aTabStop)const
1.24 +/** Compares two tab stops for inequality. They are different if the twips
1.25 +position or alignment is different.
1.26 +
1.27 +@param aTabStop The tab stop to compare with the current tab stop
1.28 +@return ETrue if the objects' twips position or alignment differs. EFalse if
1.29 +equal. */
1.30 + {return !(*this==aTabStop);}
1.31 +
1.32 +
1.33 +TBool TParaBorder::operator!=(const TParaBorder& aParaBorder)const
1.34 +/** Compares two paragraph border sides for inequality. Two paragraph border
1.35 +sides are different if any of their data members are different.
1.36 +
1.37 +@param aBorder The paragraph border to compare with the current border.
1.38 +@return ETrue if the two paragraph border sides are different,
1.39 +EFalse if not. */
1.40 + {return !(*this==aParaBorder);}
1.41 +
1.42 +
1.43 +TBool TBullet::operator!=(const TBullet& aBullet)const
1.44 +/** Compares two bullet points for inequality. Two bullet points are unequal if
1.45 +any of their data members are different.
1.46 +
1.47 +@param aBullet The bullet point to compare.
1.48 +@return ETrue if the two bullet points are different, EFalse if not. */
1.49 + {return !(*this==aBullet);}
1.50 +
1.51 +
1.52 +
1.53 +void CParaFormat::RemoveAllTabs()
1.54 +/** Removes all tab stops from the object. */
1.55 + {
1.56 + if (iTabList)
1.57 + {
1.58 + delete iTabList;
1.59 + iTabList = NULL;
1.60 + }
1.61 + }
1.62 +
1.63 +
1.64 +TInt CParaFormat::TabCount()const
1.65 +/** Gets a count of the total number of tab stops in the object's tab list. If
1.66 +the object has no tab list, returns zero.
1.67 +
1.68 +@return The number of tab stops. */
1.69 + {return (iTabList)?iTabList->Count():0;}
1.70 +
1.71 +
1.72 +
1.73 +
1.74 +TParaFormatMask::TParaFormatMask()
1.75 + :iGuard(0)
1.76 +/** The default C++ constructor constructs a paragraph format mask, initialising
1.77 +all bits to zero. */
1.78 + {}
1.79 +
1.80 +
1.81 +void TParaFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
1.82 +/** Sets a single attribute flag in the paragraph format mask.
1.83 +
1.84 +@param aAttribute The attribute flag to set. */
1.85 + {iGuard|=(1<<aAttribute);}
1.86 +
1.87 +
1.88 +
1.89 +void TParaFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
1.90 +/** Clears a single attribute flag in the paragraph format mask.
1.91 +
1.92 +@param aAttribute The attribute flag to clear. */
1.93 + {iGuard&=~(1<<aAttribute);}
1.94 +
1.95 +
1.96 +
1.97 +TBool TParaFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
1.98 +/** Tests whether an attribute flag is set.
1.99 +
1.100 +@param aAttribute The paragraph format attribute to test for.
1.101 +@return ETrue if the flag is set, EFalse if not. */
1.102 + {return (iGuard&(1<<aAttribute));}
1.103 +
1.104 +
1.105 +
1.106 +TBool TParaFormatMask::IsNull()const
1.107 +/** Tests whether the mask is NULL, indicating that no flags have been set.
1.108 +
1.109 +@return ETrue if mask is NULL, EFalse if not NULL. */
1.110 + {return !iGuard;}
1.111 +
1.112 +
1.113 +TBool TParaFormatMask::operator!=(const TParaFormatMask& aMask)const
1.114 +/** Compares two paragraph format masks for inequality.
1.115 +
1.116 +@param aMask The mask to compare.
1.117 +@return ETrue if any flags are different. EFalse if all flags are the same. */
1.118 + {return !(*this==aMask);}
1.119 +
1.120 +
1.121 +
1.122 +
1.123 +TCharFormatMask::TCharFormatMask()
1.124 + :iGuard(0)
1.125 +/** The default C++ constructor constructs a character format mask, initialising
1.126 +all bits to zero. */
1.127 + {}
1.128 +
1.129 +
1.130 +
1.131 +void TCharFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
1.132 +/** Sets a single attribute flag in the character format mask.
1.133 +
1.134 +@param aAttribute The attribute flag to set. */
1.135 + {iGuard|=(1<<((aAttribute-KMaxParaAttributes)-1));}
1.136 +
1.137 +
1.138 +void TCharFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
1.139 +/** Clears a single attribute flag in the character format mask.
1.140 +
1.141 +@param aAttribute The attribute flag to clear. */
1.142 + {iGuard&=~(1<<((aAttribute-KMaxParaAttributes)-1));}
1.143 +
1.144 +
1.145 +
1.146 +TBool TCharFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
1.147 +/** Tests whether an attribute flag is set.
1.148 +
1.149 +@param aAttribute The character format attribute to test for.
1.150 +@return ETrue if the flag is set, EFalse if not. */
1.151 + {return iGuard&(1<<((aAttribute-KMaxParaAttributes)-1));}
1.152 +
1.153 +
1.154 +TBool TCharFormatMask::IsNull()const
1.155 +/** Tests whether the mask is NULL, indicating that no flags have been set.
1.156 +
1.157 +@return ETrue if mask is NULL, EFalse if not NULL. */
1.158 + {return !iGuard;}
1.159 +
1.160 +
1.161 +TBool TCharFormatMask::operator!=(const TCharFormatMask& aMask)const
1.162 +/** Compares two paragraph format masks for inequality.
1.163 +
1.164 +@param aMask The mask to compare.
1.165 +@return ETrue if any flags are different. EFalse if all flags are the same. */
1.166 + {return !(*this==aMask);}
1.167 +
1.168 +