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