os/textandloc/textandlocutils/inlinetext/inc/InlineTextNoMatchesIndicatorSource.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2003 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 the License "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
*     Classes used for holding inline text for the Form MTmInlineTextSource interface.
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef INLINETEXTNOMATCHESINDICATORSOURCE_H
sl@0
    21
#define INLINETEXTNOMATCHESINDICATORSOURCE_H
sl@0
    22
sl@0
    23
// INCLUDES
sl@0
    24
sl@0
    25
#include "InlineTextBase.h"
sl@0
    26
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    27
#include <tagma.h>
sl@0
    28
#else
sl@0
    29
#include <tagma.h>
sl@0
    30
#include <tagmalayoutandsource.h>
sl@0
    31
#endif
sl@0
    32
sl@0
    33
// CONSTANTS
sl@0
    34
sl@0
    35
// CLASS DECLARATION
sl@0
    36
sl@0
    37
/**
sl@0
    38
* Concrete implementation of MTmInlineTextSource for marking text has no predictive
sl@0
    39
* text entry matches.
sl@0
    40
* 
sl@0
    41
*  @lib InlineText
sl@0
    42
*  @since 3.2
sl@0
    43
*/
sl@0
    44
NONSHARABLE_CLASS(CInlineTextNoMatchesIndicatorSource) : public CInlineTextSource
sl@0
    45
    {
sl@0
    46
    public:
sl@0
    47
    // 2 stage constructor
sl@0
    48
    IMPORT_C static CInlineTextNoMatchesIndicatorSource* NewL( const MTmSource& aTextSource );
sl@0
    49
    // destructor
sl@0
    50
    ~CInlineTextNoMatchesIndicatorSource();
sl@0
    51
sl@0
    52
    public: // From CInlineTextSource
sl@0
    53
    /**
sl@0
    54
    * Implementation of framework method. Documented in header
sl@0
    55
    */
sl@0
    56
    virtual void CheckFormattingL(const TTmDocPos& aFrom, const TTmDocPos& aTo );
sl@0
    57
sl@0
    58
    private:
sl@0
    59
    /**
sl@0
    60
    * C++ constructor. 
sl@0
    61
    */
sl@0
    62
    CInlineTextNoMatchesIndicatorSource( const MTmSource& aTextSource );
sl@0
    63
sl@0
    64
    /**
sl@0
    65
    * non-virtual implementation method for CheckFormattingL
sl@0
    66
    */
sl@0
    67
    void DoFormatL( const TTmDocPos& aFrom, const TTmDocPos& aTo );
sl@0
    68
sl@0
    69
    /**
sl@0
    70
    * Framework method implemented to store the inline text at the position and leading-ness
sl@0
    71
    *
sl@0
    72
    * @param aPos           Position of gap ( 0 = before charaacter 0; 1 = after character 0/before char 1 ...)
sl@0
    73
    * @param aLeadingEdge   use ETrue if the inline text is associated with the next character
sl@0
    74
    * @param aTextSample    text upon which to base decision as to what No Matches text
sl@0
    75
    *                       to use
sl@0
    76
    */
sl@0
    77
    void StoreNoMatchesIndicatorInlineTextL( 
sl@0
    78
        TInt aPos,
sl@0
    79
        TBool aLeadingEdge,
sl@0
    80
        const TDesC& aTextSample );
sl@0
    81
sl@0
    82
    /**
sl@0
    83
    * This returns a text sensitive no matches indication
sl@0
    84
    *
sl@0
    85
    * @param aRightToLeft   ETrue if chunk is right to left directional text.
sl@0
    86
    * @param aBuffer        const TDesC& buffer containing text to determine language dependent, 
sl@0
    87
    * @returns a TPtr to the No Matches indication text to use for this buffer
sl@0
    88
    */
sl@0
    89
    TPtrC TextForUnknownPredictiveTextIndication( const TDesC& aTextSample ) const;
sl@0
    90
sl@0
    91
    /**
sl@0
    92
    * Returns a value that is the base value of a unicode code page. The significant content of
sl@0
    93
    * the buffer ( indices [1,aBufferLength]) and is examined from low to high index.  
sl@0
    94
    * Code page is the here defined as the unicode value excluding its lowest byte - Masked 
sl@0
    95
    * by 0xFF00 
sl@0
    96
    *
sl@0
    97
    * If a character with non-zero code page is found, that value is returned.  Otherwise, 0x0000
sl@0
    98
    * is returned
sl@0
    99
    * 
sl@0
   100
    * To totally dependable, this routine depends upon the chunk being of uniform codepage, 
sl@0
   101
    * or mixed codepage 0 + one other codepage.  For no-matches indicator text, this is the case
sl@0
   102
    *
sl@0
   103
    * @param aTextSample    buffer containing text, 
sl@0
   104
    * @returns              Codepage of first
sl@0
   105
    */
sl@0
   106
sl@0
   107
    TUint CodeBaseOfText( const TDesC& aTextSample ) const;
sl@0
   108
sl@0
   109
    /**
sl@0
   110
    * Utility method to test whether the next character (in the next chunk) is also in the 
sl@0
   111
    * No matches indicator markup.
sl@0
   112
    *
sl@0
   113
    * @param aNexPos        position in the text source of the next character (if there is one)
sl@0
   114
    * @returns              ETrue only if there is another character and that is has the
sl@0
   115
    *                       no matches indicator markup.
sl@0
   116
    */
sl@0
   117
    TBool FormatOfNextCharacterIsUnknownInlineFepTextStyle( TInt aNextPos) const;
sl@0
   118
sl@0
   119
    private:
sl@0
   120
    const MTmSource& iTextSource;
sl@0
   121
    };
sl@0
   122
sl@0
   123
#endif
sl@0
   124
sl@0
   125
// End of File