Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
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.
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
27 {return !(*this==aTabStop);}
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.
34 @param aBorder The paragraph border to compare with the current border.
35 @return ETrue if the two paragraph border sides are different,
37 {return !(*this==aParaBorder);}
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.
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);}
50 void CParaFormat::RemoveAllTabs()
51 /** Removes all tab stops from the object. */
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.
65 @return The number of tab stops. */
66 {return (iTabList)?iTabList->Count():0;}
71 TParaFormatMask::TParaFormatMask()
73 /** The default C++ constructor constructs a paragraph format mask, initialising
78 void TParaFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
79 /** Sets a single attribute flag in the paragraph format mask.
81 @param aAttribute The attribute flag to set. */
82 {iGuard|=(1<<aAttribute);}
86 void TParaFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
87 /** Clears a single attribute flag in the paragraph format mask.
89 @param aAttribute The attribute flag to clear. */
90 {iGuard&=~(1<<aAttribute);}
94 TBool TParaFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
95 /** Tests whether an attribute flag is set.
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));}
103 TBool TParaFormatMask::IsNull()const
104 /** Tests whether the mask is NULL, indicating that no flags have been set.
106 @return ETrue if mask is NULL, EFalse if not NULL. */
110 TBool TParaFormatMask::operator!=(const TParaFormatMask& aMask)const
111 /** Compares two paragraph format masks for inequality.
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);}
120 TCharFormatMask::TCharFormatMask()
122 /** The default C++ constructor constructs a character format mask, initialising
128 void TCharFormatMask::SetAttrib(TTextFormatAttribute aAttribute)
129 /** Sets a single attribute flag in the character format mask.
131 @param aAttribute The attribute flag to set. */
132 {iGuard|=(1<<((aAttribute-KMaxParaAttributes)-1));}
135 void TCharFormatMask::ClearAttrib(TTextFormatAttribute aAttribute)
136 /** Clears a single attribute flag in the character format mask.
138 @param aAttribute The attribute flag to clear. */
139 {iGuard&=~(1<<((aAttribute-KMaxParaAttributes)-1));}
143 TBool TCharFormatMask::AttribIsSet(TTextFormatAttribute aAttribute)const
144 /** Tests whether an attribute flag is set.
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));}
151 TBool TCharFormatMask::IsNull()const
152 /** Tests whether the mask is NULL, indicating that no flags have been set.
154 @return ETrue if mask is NULL, EFalse if not NULL. */
158 TBool TCharFormatMask::operator!=(const TCharFormatMask& aMask)const
159 /** Compares two paragraph format masks for inequality.
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);}