1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/textrendering/texthandling/inc/TXTMFMTX.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,116 @@
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 +#ifndef __TXTMFMTX_H__
1.23 +#define __TXTMFMTX_H__
1.24 +
1.25 +#include <e32std.h>
1.26 +#include <txtfrmat.h>
1.27 +
1.28 +// Defines interface for getting/setting formatting attributes.
1.29 +
1.30 +
1.31 +
1.32 +class MFormatText
1.33 +/**
1.34 +Specifies the mixin protocol for getting and setting character and paragraph
1.35 +format attributes.
1.36 +
1.37 +It is inherited by classes which support character and paragraph formatting,
1.38 +e.g. CRichText and CGlobalText. Its purpose is to allow developers to apply
1.39 +and retrieve formatting without needing to know which type of editable text
1.40 +is involved.
1.41 +
1.42 +All functions defined in this class use a document position and a length.
1.43 +These values are only relevant to rich text. In general, they must be valid
1.44 +(i.e. the range must not extend beyond the bounds of the document), or a panic
1.45 +occurs. In global text, formatting is applied globally, so that the length
1.46 +and position values are ignored.
1.47 +@publishedAll
1.48 +@released
1.49 +*/
1.50 + {
1.51 +public:
1.52 + //
1.53 + // Paragraph format attributes
1.54 +
1.55 +
1.56 + /** Gets the effective paragraph formatting which applies to a range of paragraphs.
1.57 + Also gets a bit mask which indicates which values change over the region,
1.58 + and whose value is therefore indeterminate.
1.59 +
1.60 + @param aFormat On return, contains the effective paragraph formatting for
1.61 + the range of paragraphs. For global text, this is the paragraph formatting
1.62 + of the entire text object.
1.63 + @param aVaries On return, a bitmask indicating which paragraph format attributes
1.64 + vary over the range of characters selected. For global text, this mask contains
1.65 + a value of zero for every attribute because formatting is applied globally.
1.66 + @param aPos The document position of the start of the range.
1.67 + @param aLength The number of characters in the range.
1.68 + @param aMode The default, EAllAttributes means that values for all paragraph
1.69 + format attributes are written to aFormat. EFixedAttributes means that tabs,
1.70 + bullets and borders are not written to aFormat. */
1.71 + virtual void GetParaFormatL(CParaFormat* aFormat,TParaFormatMask& aVaries,TInt aPos,TInt aLength,
1.72 + CParaFormat::TParaFormatGetMode aMode=CParaFormat::EAllAttributes)const=0;
1.73 +
1.74 +
1.75 + /** Applies paragraph formatting to a range of paragraphs. The attributes which
1.76 + are set in the mask are taken from aFormat and applied. The attributes which
1.77 + are not set in the mask are not applied.
1.78 +
1.79 + @param aFormat Contains the paragraph format attribute values to apply.
1.80 + @param aMask Specifies which paragraph format attributes should be applied.
1.81 + @param aPos The document position of the start of the range.
1.82 + @param aLength The number of characters in the range. */
1.83 + virtual void ApplyParaFormatL(const CParaFormat* aFormat,const TParaFormatMask& aMask,TInt aPos,TInt aLength)=0;
1.84 + //
1.85 + // Character format attributes
1.86 +
1.87 +
1.88 + /** Gets the effective character formatting which applies to a range of characters.
1.89 + Also gets a bit mask which indicates which values change over the region,
1.90 + and whose value is therefore indeterminate.
1.91 +
1.92 + @param aFormat On return, contains the character format values for the range
1.93 + of characters. For global text, this is the character formatting of the entire
1.94 + text object.
1.95 + @param aVaries On return, indicates which character format attributes vary
1.96 + over the range and whose values are therefore indeterminate. For global text,
1.97 + this mask contains a value of zero for every attribute because formatting
1.98 + is applied globally.
1.99 + @param aPos The document position of the start of the range.
1.100 + @param aLength The number of characters in the range. */
1.101 + virtual void GetCharFormat(TCharFormat& aFormat,TCharFormatMask& aVaries,TInt aPos,TInt aLength)const=0;
1.102 +
1.103 +
1.104 + /** Applies character formatting to a range of characters. The attributes which
1.105 + are set in the mask are taken from aFormat and applied. The attributes which
1.106 + are not set in the mask are not applied.
1.107 +
1.108 + @param aFormat Contains the character format attribute values to apply.
1.109 + @param aMask Bitmask specifying which character format attributes should be
1.110 + applied.
1.111 + @param aPos Document position from which to apply the new character formatting.
1.112 +
1.113 + @param aLength The number of characters to which the new formatting should
1.114 + be applied. */
1.115 + virtual void ApplyCharFormatL(const TCharFormat& aFormat,const TCharFormatMask& aMask,TInt aPos,TInt aLength)=0;
1.116 + };
1.117 +
1.118 +#endif
1.119 +