idlehomescreen/xmluirendering/renderingplugins/xnmenufactory/inc/xnmenufactory.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 08:40:49 +0200
changeset 0 f72a12da539e
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 2002-2006 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:  
*
*/



#ifndef _XNMENUFACTORY_H
#define _XNMENUFACTORY_H

//  INCLUDES
#include "xncomponentfactory.h"
#include <e32base.h>
#include <ecom/ecom.h>
#include <ecom/implementationproxy.h>



// CONSTANTS
_LIT8(KMenu, "menubar");

// CLASS DECLARATION

/**
*  @ingroup group_xnmenufactory
*  Layout Area UI factory interface for creating UI representations of the layout areas.
*  This class is wrapper for containing menu
*
*  @lib xn3menufactory.dll
*  @since S60 3.1
*/
// inheritance order must be this, despite codescanner warnings
class CXnMenuFactory : public MXnComponentFactory, public CBase
    {
    public:  // Constructors and destructor
        
        /**
        * Two-phased constructor.
        */
        static CXnMenuFactory* NewL();
        
        /**
        * Destructor.
        */
        virtual ~CXnMenuFactory();
        

    public: // Functions from base classes


        /**
        * From MXnComponentFactory Interface for creating Ui control component.
        * @since Series 60 3.1
        * @param aNode Component's node.
        * @param aTargetComponent Created component is set here.
        * @return EXnFactoryResponseComponentConstructed if component created.
        */
        TXnComponentFactoryResponse MakeXnComponentL( 
                                                CXnNodePluginIf& aNode,
                                                CXnComponent*& aTargetComponent
        										);
        /**
        * From MXnComponentFactory Interface for creating Ui control adapter.
        * @since Series 60 3.1
        * @param aNode Component's node.
        * @param aParent Parent of the adapter, which is created here.
        * @return Created control adapter.
        */        
        CXnControlAdapter* MakeXnControlAdapterL( 
                                                CXnNodePluginIf& aNode,
                                                CXnControlAdapter* aParent
        										);
        
    private:

        /**
        * 2nd phase constructor. 
        */
        void ConstructL();

        /**
        * C++ default constructor. 
        */
        CXnMenuFactory();

    private:    // Data
        // Reserved pointer for future extension
    };
    
// Exported factory function required by ECOM-framework
IMPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount);

#endif      // _XNMENUFACTORY_H
            
// End of File