os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/finditemengine.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/finditemengine.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +/*
1.5 +* Copyright (c) 2006-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 +
1.23 +#ifndef FINDITEMENGINE_H
1.24 +#define FINDITEMENGINE_H
1.25 +
1.26 +#include <e32base.h>
1.27 +#include <tuladdressstringtokenizer.h>
1.28 +
1.29 +class CFindItemEngine : public CBase
1.30 +/**
1.31 +@deprecated
1.32 +@see CTulAddressStringTokenizer
1.33 +@note For compatibility with S60 only
1.34 +*/
1.35 + {
1.36 +public:
1.37 + enum TFindItemSearchCase
1.38 + {
1.39 + EFindItemSearchPhoneNumberBin = CTulAddressStringTokenizer::EFindItemSearchPhoneNumberBin,
1.40 + EFindItemSearchMailAddressBin = CTulAddressStringTokenizer::EFindItemSearchMailAddressBin,
1.41 + EFindItemSearchURLBin = CTulAddressStringTokenizer::EFindItemSearchURLBin,
1.42 + EFindItemSearchScheme = CTulAddressStringTokenizer::EFindItemSearchScheme
1.43 + };
1.44 +
1.45 + // Struct to contain a found item.
1.46 + struct SFoundItem
1.47 + {
1.48 + TInt iStartPos;
1.49 + TInt iLength;
1.50 + TFindItemSearchCase iItemType;
1.51 + };
1.52 +
1.53 + IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase );
1.54 + IMPORT_C static CFindItemEngine* NewL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers );
1.55 + IMPORT_C ~CFindItemEngine();
1.56 + IMPORT_C TBool Item( CFindItemEngine::SFoundItem& aItem );
1.57 + IMPORT_C TBool NextItem( CFindItemEngine::SFoundItem& aItem );
1.58 + IMPORT_C TBool PrevItem( CFindItemEngine::SFoundItem& aItem );
1.59 + IMPORT_C const CArrayFixFlat<CFindItemEngine::SFoundItem>* ItemArray() const;
1.60 + IMPORT_C TInt Position() const;
1.61 + IMPORT_C void ResetPosition();
1.62 + IMPORT_C TInt ItemCount() const;
1.63 + IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase);
1.64 + IMPORT_C TInt DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers );
1.65 +private:
1.66 + CFindItemEngine();
1.67 + };
1.68 +
1.69 +#endif // FINDITEMENGINE_H
1.70 +
1.71 +// End of File