searchui/searchapp/inc/srchuiresulthandler.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 09 Jun 2010 09:40:23 +0300
branchRCL_3
changeset 20 9c5b1510919f
parent 0 f979ecb2b13e
permissions -rw-r--r--
Revision: 201021 Kit: 2010123

/*
* Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:     interface for users of MSearchClientSession to monitor the search progress 
*
*/





#ifndef C_SEARCHRESULTHANDLER
#define C_SEARCHRESULTHANDLER

#include <e32base.h>

class CSearchLightResult;
class CSearchResult;


NONSHARABLE_CLASS( MSrchUiResultHandler )
    {
public:
    /**
     * Launches application
     *
     * @param aResultId Document Id of the file to be launched
     */
     virtual void LaunchApplicationL( const CSearchDocumentId& aResultId ) = 0;
    
    /**
     * Launches the previous view
     */
     virtual void LaunchPreviousViewL() = 0;
     
    /**
     * Starts New search
     */
     virtual void StartNewSearchL() = 0;
     /**
     * cancels search
     */
     virtual TInt CancelSearch() = 0;
     
     /**
     * Returns ETrue if the search is in progress
     */
     virtual TBool IsSearching() = 0;
     /**
	 * Get the launch infor 
	 */       
     virtual HBufC8* GetLaunchInfoL( const CSearchDocumentId& aDocumentID ) = 0;
    };

#endif // C_SEARCHRESULTHANDLER