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: TBool TTabStop::operator!=(const TTabStop& aTabStop)const sl@0: /** Compares two tab stops for inequality. They are different if the twips sl@0: position or alignment is different. sl@0: sl@0: @param aTabStop The tab stop to compare with the current tab stop sl@0: @return ETrue if the objects' twips position or alignment differs. EFalse if sl@0: equal. */ sl@0: {return !(*this==aTabStop);} sl@0: sl@0: sl@0: TBool TParaBorder::operator!=(const TParaBorder& aParaBorder)const sl@0: /** Compares two paragraph border sides for inequality. Two paragraph border sl@0: sides are different if any of their data members are different. sl@0: sl@0: @param aBorder The paragraph border to compare with the current border. sl@0: @return ETrue if the two paragraph border sides are different, sl@0: EFalse if not. */ sl@0: {return !(*this==aParaBorder);} sl@0: sl@0: sl@0: TBool TBullet::operator!=(const TBullet& aBullet)const sl@0: /** Compares two bullet points for inequality. Two bullet points are unequal if sl@0: any of their data members are different. sl@0: sl@0: @param aBullet The bullet point to compare. sl@0: @return ETrue if the two bullet points are different, EFalse if not. */ sl@0: {return !(*this==aBullet);} sl@0: sl@0: sl@0: sl@0: void CParaFormat::RemoveAllTabs() sl@0: /** Removes all tab stops from the object. */ sl@0: { sl@0: if (iTabList) sl@0: { sl@0: delete iTabList; sl@0: iTabList = NULL; sl@0: } sl@0: } sl@0: sl@0: sl@0: TInt CParaFormat::TabCount()const sl@0: /** Gets a count of the total number of tab stops in the object's tab list. If sl@0: the object has no tab list, returns zero. sl@0: sl@0: @return The number of tab stops. */ sl@0: {return (iTabList)?iTabList->Count():0;} sl@0: sl@0: sl@0: sl@0: sl@0: TParaFormatMask::TParaFormatMask() sl@0: :iGuard(0) sl@0: /** The default C++ constructor constructs a paragraph format mask, initialising sl@0: all bits to zero. */ sl@0: {} sl@0: sl@0: sl@0: void TParaFormatMask::SetAttrib(TTextFormatAttribute aAttribute) sl@0: /** Sets a single attribute flag in the paragraph format mask. sl@0: sl@0: @param aAttribute The attribute flag to set. */ sl@0: {iGuard|=(1<