os/textandloc/textrendering/texthandling/inc/TXTRICH.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) 2003-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
const TUint32 KStyleListExternallyOwned=0x01;
sl@0
    21
const TUint32 KParaTypeIsSingle=0x02;
sl@0
    22
sl@0
    23
 
sl@0
    24
sl@0
    25
TBool CRichText::StyleListPresent()const
sl@0
    26
/** Tests whether the rich text object uses a style list. The style list may be 
sl@0
    27
owned by the object itself, or may be externally owned.
sl@0
    28
sl@0
    29
@return ETrue if the object uses a style list. EFalse if not */
sl@0
    30
	{return iStyleList.IsPtr() && iStyleList.AsPtr();}
sl@0
    31
sl@0
    32
sl@0
    33
 
sl@0
    34
CStyleList* CRichText::StyleList()const
sl@0
    35
/** Gets a pointer to the style list used by the rich text object.
sl@0
    36
sl@0
    37
@return The object's style list. NULL if no style list present. */
sl@0
    38
	{return (StyleListPresent()) ? iStyleList.AsPtr() : NULL;}
sl@0
    39
sl@0
    40
sl@0
    41
 
sl@0
    42
sl@0
    43
TInt CRichText::StyleCount()const
sl@0
    44
/** Gets the number of styles contained in the rich text object's style list. Returns 
sl@0
    45
zero if there is no style list present.
sl@0
    46
sl@0
    47
@return The number of styles in the style list */
sl@0
    48
	{return (StyleListPresent()) ? iStyleList->Count():0;}
sl@0
    49
sl@0
    50
sl@0
    51
void CRichText::SetStyleListExternallyOwned(TBool aExternallyOwned)
sl@0
    52
/** Sets whether the style list used by this rich text object is owned by 
sl@0
    53
the object itself, or is externally owned.
sl@0
    54
sl@0
    55
@param aExternallyOwned ETrue if the style list should be marked as 
sl@0
    56
externally owned, EFalse if not. */
sl@0
    57
	{
sl@0
    58
	if (aExternallyOwned) iFlags|=KStyleListExternallyOwned;
sl@0
    59
	else iFlags&=~KStyleListExternallyOwned;
sl@0
    60
	}
sl@0
    61
sl@0
    62
sl@0
    63
 
sl@0
    64
sl@0
    65
TBool CRichText::StyleListExternallyOwned()const
sl@0
    66
/** Tests whether the style list used by this rich text object is owned by the 
sl@0
    67
object itself, or is externally owned. This value is set using SetStyleListExternallyOwned().
sl@0
    68
sl@0
    69
@return ETrue if the rich text object's style list is externally owned. EFalse 
sl@0
    70
if it owns its style list, or if it does not use a style list. */
sl@0
    71
	{return iFlags&KStyleListExternallyOwned;}
sl@0
    72
sl@0
    73
sl@0
    74
 
sl@0
    75
void CRichText::NotifyStyleDeletedL(const CParagraphStyle* aStyle)
sl@0
    76
/** Removes a style from all paragraphs to which it applies. The formatting is 
sl@0
    77
reset to the global character and paragraph format layers, except that any 
sl@0
    78
specific formatting which has been applied to the paragraphs is retained.
sl@0
    79
sl@0
    80
Notes:
sl@0
    81
sl@0
    82
This function should be called on the text content object after deleting a 
sl@0
    83
style in the style list.
sl@0
    84
sl@0
    85
A panic occurs if the rich text object does not use a style list (this can 
sl@0
    86
be tested for using StyleListPresent()).
sl@0
    87
sl@0
    88
@param aStyle Pointer to the style to remove from the rich text object. */
sl@0
    89
	{NotifyStyleChangedL(NULL,aStyle);}
sl@0
    90
sl@0
    91
sl@0
    92
 
sl@0
    93
sl@0
    94
MRichTextStoreResolver* CRichText::StoreResolver()const
sl@0
    95
/** Gets the store resolver. A store resolver may be set during construction, or 
sl@0
    96
by calling CRichText::SetPictureFactory().
sl@0
    97
sl@0
    98
@return The store resolver. This determines which file store the picture is 
sl@0
    99
stored in. */
sl@0
   100
	{return iStoreResolver;}
sl@0
   101
sl@0
   102
sl@0
   103
 
sl@0
   104
sl@0
   105
MPictureFactory* CRichText::PictureFactory()const
sl@0
   106
/** Gets the picture factory. A picture factory may be set during construction, 
sl@0
   107
or by calling CRichText::SetPictureFactory().
sl@0
   108
sl@0
   109
@return The picture factory */
sl@0
   110
	{return iPictureFactory;}
sl@0
   111
sl@0
   112