contextframework/cfw/inc/cfoperationpluginservices/cfpluginoperation.h
author William Roberts <williamr@symbian.org>
Fri, 23 Apr 2010 14:37:17 +0100
branchRCL_3
changeset 22 c82a39b81a38
parent 0 2e3d3ce01487
permissions -rw-r--r--
Rework addition of Symbian splash screen to reduce the source impact (uses SVG from Bug 2414) Notes: by using the OPTION SOURCEDIR parameter in the mifconv extension instructions, I can arrange to use the same source file name in sfimage, without having to export over the original Nokia file. This means that the name inside splashscreen.mbg is the same, which removes the need for the conditional compilation in SplashScreen.cpp, and gets rid of sf_splashscreen.mmp.

/*
* Copyright (c) 2007-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:  MCFPlugInOperation interface.
*
*/



#ifndef M_CFPLUGINOPERATION_H
#define M_CFPLUGINOPERATION_H

// INCLUDES
#include <e32base.h>


// FORWARD DECLARATIONS
class CCFOperationNode;
class CCFScriptRoot;
class MCFOperationServices;
class CMDXMLNode;

// CLASS DECLARATION

/**
*  This is a plugin operation interface for Script Engine scripts. Parsing
*  operations will be executed via this interface.
*
*  @lib CFScriptEngine
*  @since S60 v5.0
*/
class MCFPlugInOperation
    {
public: // New functions

    /**
    * Parses a xml node and returns a pointer to CCFOperationNode instance.
    * @since S60 5.0
    * @param aParent is the parsed parent node for the aNode.
    * @param aNode is the node to be parsed.
    * @param aOperationServices is the operation services reference to be used
    *   by the new operation node.
    * @param aUid Implementation uid of the provider.
    * @return a ptr to CCFOperationNode instance parsed from the given node,
    *   note that the ownership is transferred to the caller. Returns NULL if
    *   the node cannot be parsed.
    */
    virtual CCFOperationNode* ParseL( CCFOperationNode* aParent,
            CMDXMLNode& aNode,
            MCFOperationServices& aOperationServices,
            TUid& aUid ) = 0;

    /**
    * Parses a xml node and returns a pointer to CCFScriptRoot instance.
    * @since S60 5.0
    * @param aParent is the parsed parent node for the aNode.
    * @param aNode is the node to be parsed.
    * @param aOperationServices is the operation services reference to be used
    *   by the new script root node.
    * @param aUid Implementation uid of the provider.
    * @return a ptr to CCFScriptRoot instance parsed from the given node,
    *   note that the ownership is transferred to the caller. Returns NULL if
    *   the node cannot be parsed.
    */
    virtual CCFScriptRoot* ParseScriptRootL( CCFOperationNode* aParent,
            CMDXMLNode& aNode,
            MCFOperationServices& aOperationServices,
            TUid& aUid ) = 0;


protected: // Destructor

    // Deny destruction through this interface.
    virtual ~MCFPlugInOperation(){};

    };


#endif // M_CFPLUGINOPERATION_H