sl@0: /* sl@0: * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef FINDITEMENGINE_H sl@0: #define FINDITEMENGINE_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class CFindItemEngine : public CBase sl@0: /** sl@0: @deprecated sl@0: @see CTulAddressStringTokenizer sl@0: @note For compatibility with S60 only sl@0: */ sl@0: { sl@0: public: sl@0: enum TFindItemSearchCase sl@0: { sl@0: EFindItemSearchPhoneNumberBin = CTulAddressStringTokenizer::EFindItemSearchPhoneNumberBin, sl@0: EFindItemSearchMailAddressBin = CTulAddressStringTokenizer::EFindItemSearchMailAddressBin, sl@0: EFindItemSearchURLBin = CTulAddressStringTokenizer::EFindItemSearchURLBin, sl@0: EFindItemSearchScheme = CTulAddressStringTokenizer::EFindItemSearchScheme sl@0: }; sl@0: sl@0: // Struct to contain a found item. sl@0: struct SFoundItem sl@0: { sl@0: TInt iStartPos; sl@0: TInt iLength; sl@0: TFindItemSearchCase iItemType; sl@0: }; sl@0: sl@0: IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase ); sl@0: IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers ); sl@0: IMPORT_C ~CFindItemEngine(); sl@0: IMPORT_C TBool Item( CFindItemEngine::SFoundItem& aItem ); sl@0: IMPORT_C TBool NextItem( CFindItemEngine::SFoundItem& aItem ); sl@0: IMPORT_C TBool PrevItem( CFindItemEngine::SFoundItem& aItem ); sl@0: IMPORT_C const CArrayFixFlat* ItemArray() const; sl@0: IMPORT_C TInt Position() const; sl@0: IMPORT_C void ResetPosition(); sl@0: IMPORT_C TInt ItemCount() const; sl@0: IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase); sl@0: IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers ); sl@0: private: sl@0: CFindItemEngine(); sl@0: }; sl@0: sl@0: #endif // FINDITEMENGINE_H sl@0: sl@0: // End of File