os/textandloc/textandlocutils/inlinetext/inc/InlineTextNoMatchesIndicatorSource.h
Update contrib.
2 * Copyright (c) 2003 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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.
15 * Classes used for holding inline text for the Form MTmInlineTextSource interface.
20 #ifndef INLINETEXTNOMATCHESINDICATORSOURCE_H
21 #define INLINETEXTNOMATCHESINDICATORSOURCE_H
25 #include "InlineTextBase.h"
26 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
30 #include <tagmalayoutandsource.h>
38 * Concrete implementation of MTmInlineTextSource for marking text has no predictive
44 NONSHARABLE_CLASS(CInlineTextNoMatchesIndicatorSource) : public CInlineTextSource
47 // 2 stage constructor
48 IMPORT_C static CInlineTextNoMatchesIndicatorSource* NewL( const MTmSource& aTextSource );
50 ~CInlineTextNoMatchesIndicatorSource();
52 public: // From CInlineTextSource
54 * Implementation of framework method. Documented in header
56 virtual void CheckFormattingL(const TTmDocPos& aFrom, const TTmDocPos& aTo );
62 CInlineTextNoMatchesIndicatorSource( const MTmSource& aTextSource );
65 * non-virtual implementation method for CheckFormattingL
67 void DoFormatL( const TTmDocPos& aFrom, const TTmDocPos& aTo );
70 * Framework method implemented to store the inline text at the position and leading-ness
72 * @param aPos Position of gap ( 0 = before charaacter 0; 1 = after character 0/before char 1 ...)
73 * @param aLeadingEdge use ETrue if the inline text is associated with the next character
74 * @param aTextSample text upon which to base decision as to what No Matches text
77 void StoreNoMatchesIndicatorInlineTextL(
80 const TDesC& aTextSample );
83 * This returns a text sensitive no matches indication
85 * @param aRightToLeft ETrue if chunk is right to left directional text.
86 * @param aBuffer const TDesC& buffer containing text to determine language dependent,
87 * @returns a TPtr to the No Matches indication text to use for this buffer
89 TPtrC TextForUnknownPredictiveTextIndication( const TDesC& aTextSample ) const;
92 * Returns a value that is the base value of a unicode code page. The significant content of
93 * the buffer ( indices [1,aBufferLength]) and is examined from low to high index.
94 * Code page is the here defined as the unicode value excluding its lowest byte - Masked
97 * If a character with non-zero code page is found, that value is returned. Otherwise, 0x0000
100 * To totally dependable, this routine depends upon the chunk being of uniform codepage,
101 * or mixed codepage 0 + one other codepage. For no-matches indicator text, this is the case
103 * @param aTextSample buffer containing text,
104 * @returns Codepage of first
107 TUint CodeBaseOfText( const TDesC& aTextSample ) const;
110 * Utility method to test whether the next character (in the next chunk) is also in the
111 * No matches indicator markup.
113 * @param aNexPos position in the text source of the next character (if there is one)
114 * @returns ETrue only if there is another character and that is has the
115 * no matches indicator markup.
117 TBool FormatOfNextCharacterIsUnknownInlineFepTextStyle( TInt aNextPos) const;
120 const MTmSource& iTextSource;