qcpix/src/platform/s60/src/qcpixsearcherprivate.cpp
changeset 15 cf5c74390b98
parent 10 afe194b6b1cd
child 18 3e1f76dd2722
--- a/qcpix/src/platform/s60/src/qcpixsearcherprivate.cpp	Tue Jul 06 15:30:04 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,70 +0,0 @@
-/*
-* Copyright (c) 2010 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: 
-*
-*/
-
-#include "qcpixsearcherprivate.h"
-#include <qcpixsearcher.h>
-#include <CCPixSearcher.h>
-#include <qcpixcommon.h>
-
-#include "qcpixutils.h"
-
-/**
- * Note: Code in this file should never throw OR leak symbian exceptions.
- * Convert all leaves to C++ exceptions.
- */
-
-QCPixSearcherPrivate::QCPixSearcherPrivate( QObject* aParent )
-    {
-    iSearchParent = reinterpret_cast<QCPixSearcher*>( aParent );
-    }
-
-void QCPixSearcherPrivate::Construct( QString aDefaultSearchField )
-    {
-    qt_symbian_throwIfError( iSearchSession.Connect() );//throw exception on error.
-    QT_TRAP_THROWING(
-    TBuf<KMaxStringLength> defaultSearchField( aDefaultSearchField.utf16() );
-    iSearcher = CCPixSearcher::NewL( iSearchSession, defaultSearchField  ) 
-    ); //end of QT_TRAP_THROWING
-    }
-
-QCPixSearcherPrivate::~QCPixSearcherPrivate()
-    {
-    delete iSearcher;
-    //iSearchSession.Close();
-    }
-
-void QCPixSearcherPrivate::HandleSearchResultsL(TInt aError, TInt aEstimatedResultCount)
-    {
-    PERF_TIME_NOW("Async search complete");
-    emit iSearchParent->handleSearchResults( aError, aEstimatedResultCount );
-    }
-
-void QCPixSearcherPrivate::HandleDocumentL(TInt aError, CSearchDocument* aDocument)
-    {
-    PERF_TIME_NOW("Async get document complete")
-    emit iSearchParent->handleDocument( aError, QCPixDocFromCPixDoc( aDocument ) );
-    }
-
-void QCPixSearcherPrivate::HandleOpenDatabaseResultL( TInt aError )
-    {
-    emit iSearchParent->handleDatabaseSet( aError );
-    }
-
-void QCPixSearcherPrivate::HandleSetAnalyzerResultL( TInt /*aError*/ )
-    {
-    //what is to be done here?
-    }