os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/finditemengine.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) 2006-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
#ifndef FINDITEMENGINE_H
sl@0
    21
#define FINDITEMENGINE_H
sl@0
    22
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <tuladdressstringtokenizer.h>
sl@0
    25
sl@0
    26
class CFindItemEngine : public CBase
sl@0
    27
/**
sl@0
    28
@deprecated
sl@0
    29
@see CTulAddressStringTokenizer
sl@0
    30
@note For compatibility with S60 only
sl@0
    31
*/
sl@0
    32
    {
sl@0
    33
public:
sl@0
    34
    enum TFindItemSearchCase
sl@0
    35
		{
sl@0
    36
		EFindItemSearchPhoneNumberBin = CTulAddressStringTokenizer::EFindItemSearchPhoneNumberBin, 
sl@0
    37
        EFindItemSearchMailAddressBin = CTulAddressStringTokenizer::EFindItemSearchMailAddressBin,
sl@0
    38
        EFindItemSearchURLBin  = CTulAddressStringTokenizer::EFindItemSearchURLBin,
sl@0
    39
        EFindItemSearchScheme  = CTulAddressStringTokenizer::EFindItemSearchScheme
sl@0
    40
        };
sl@0
    41
sl@0
    42
    // Struct to contain a found item.
sl@0
    43
    struct SFoundItem
sl@0
    44
        {
sl@0
    45
        TInt iStartPos;
sl@0
    46
        TInt iLength;
sl@0
    47
        TFindItemSearchCase iItemType;
sl@0
    48
		};
sl@0
    49
		
sl@0
    50
    IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase );
sl@0
    51
    IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers );
sl@0
    52
    IMPORT_C ~CFindItemEngine();
sl@0
    53
    IMPORT_C TBool Item( CFindItemEngine::SFoundItem& aItem );
sl@0
    54
    IMPORT_C TBool NextItem( CFindItemEngine::SFoundItem& aItem );
sl@0
    55
    IMPORT_C TBool PrevItem( CFindItemEngine::SFoundItem& aItem );
sl@0
    56
    IMPORT_C const CArrayFixFlat<CFindItemEngine::SFoundItem>* ItemArray() const;
sl@0
    57
	IMPORT_C TInt Position() const;	
sl@0
    58
    IMPORT_C void ResetPosition();
sl@0
    59
	IMPORT_C TInt ItemCount() const;
sl@0
    60
    IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase);
sl@0
    61
    IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers );
sl@0
    62
private:
sl@0
    63
	CFindItemEngine();
sl@0
    64
    };
sl@0
    65
sl@0
    66
#endif      // FINDITEMENGINE_H   
sl@0
    67
            
sl@0
    68
// End of File