mmappfw_plat/mpx_common_api/tsrc/ui_commontestclass/src/testviewplugin.cpp
author Simon Howkins <simonh@symbian.org>
Thu, 18 Nov 2010 13:26:55 +0000
branchRCL_3
changeset 69 71775bb0f6c0
parent 1 7f2202662322
child 58 c76ea6caa649
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2002 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:  MPXViewPlugin testing implementation (mpxviewplugin.h)
*
*/


#include "commontestclass.h"

// Begin CMPXViewPlugin testing implementation (mpxviewplugin.h)=======================================
// -----------------------------------------------------------------------------
// CCommonTestClass::CreateCMPXViewPlugin()
// Returns: Symbian OS errors.
// -----------------------------------------------------------------------------
TInt CCommonTestClass::CreateCMPXViewPlugin()
    {
	FTRACE(FPrint(_L("CCommonTestClass::CreateCMPXViewPlugin testing CMPXViewPlugin::NewL begin")));
    iLog->Log(_L("CCommonTestClass::CreateCMPXViewPlugin testing CMPXViewPlugin::NewL begin"));
    TInt err = KErrNone;
    if ( iViewPlugin != NULL)
        {
        delete iViewPlugin;
        }
    iViewPlugin = NULL;

	TUid aUid = TUid::Uid(270531770);

    TRAP(err,iViewPlugin = CMPXViewPlugin::NewL( aUid, this ));
    if ( iViewPlugin == NULL)
        {
        err = KErrNotFound;
        }

	FTRACE(FPrint(_L("CCommonTestClass::CreateCMPXViewPlugin testing CMPXViewPlugin::NewL end err=%d"), err));
    iLog->Log(_L("CCommonTestClass::CreateCMPXViewPlugin testing CMPXViewPlugin::NewL end err=%d"), err);
	return err;
    }

// -----------------------------------------------------------------------------
// CCommonTestClass::DeleteCMPXViewPlugin()
// Returns: Symbian OS errors.
// -----------------------------------------------------------------------------
TInt CCommonTestClass::DeleteCMPXViewPlugin()
    {
	FTRACE(FPrint(_L("CCommonTestClass::DeleteCMPXViewPlugin testing CMPXViewPlugin::~ begin")));
    iLog->Log(_L("CCommonTestClass::DeleteCMPXViewPlugin testing CMPXViewPlugin::~ begin"));
    TInt err = KErrNone;
    if ( iViewPlugin )
        {
        delete iViewPlugin;
        REComSession::FinalClose();
        iViewPlugin = NULL;
        }
	FTRACE(FPrint(_L("CCommonTestClass::DeleteCMPXViewPlugin testing CMPXViewPlugin::~ end err=%d"), err));
    iLog->Log(_L("CCommonTestClass::DeleteCMPXViewPlugin testing CMPXViewPlugin::~ end err=%d"), err);
	return err;
    }


// ---------------------------------------------------------------------------
// From MMPXCustomCommandObserver.
// Handle custom commands.
// ---------------------------------------------------------------------------
//
void CCommonTestClass::HandleCustomCommand( 
    const TUid& /*aUid*/,
    const TInt /*aCommand*/,
    const TDesC8& /*aData*/ )
    {
	FTRACE(FPrint(_L("CCommonTestClass::HandleCustomCommand CMPXViewPlugin::HandleCustomCommand is called")));
    iLog->Log(_L("CCommonTestClass::HandleCustomCommand CMPXViewPlugin::HandleCustomCommand is called"));
    }


//end of CMPXViewPlugin (mpxviewplugin.h =============================================