idlehomescreen/xmluirendering/renderingplugins/xntextfactory/inc/xntextfactory.h
changeset 0 f72a12da539e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/idlehomescreen/xmluirendering/renderingplugins/xntextfactory/inc/xntextfactory.h	Thu Dec 17 08:40:49 2009 +0200
@@ -0,0 +1,104 @@
+/*
+* Copyright (c) 2005-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:  Factory for creating CXnText -component
+*
+*/
+
+
+
+#ifndef _XNTEXTFACTORY_H
+#define _XNTEXTFACTORY_H
+
+//  INCLUDES
+#include "xncomponentfactory.h"
+#include <e32base.h>
+#include <e32std.h>
+
+#include <ecom/ecom.h>
+#include <ecom/implementationproxy.h>
+
+
+// FORWARD DECLARATIONS
+class CXnComponent;
+
+// CLASS DECLARATION
+
+/**
+*  @ingroup group_xntextfactory
+* 
+*  Component factory interface for creating UI representations of the elements.
+*  This class is wrapper for containing CEikLabel
+*
+*  @lib xn3textfactory.lib
+*  @since Series 60 3.1
+*/
+// inheritance order must be this, despite codescanner warnings
+class CXnTextFactory : public MXnComponentFactory, public CBase
+    {
+    public: // Data types
+
+    public:  // Constructors and destructor
+        
+        /**
+        * Two-phased constructor.
+        */
+        static CXnTextFactory* NewL();
+        
+        /**
+        * Destructor.
+        */
+        virtual ~CXnTextFactory();
+
+
+    public: // Functions from base classes
+
+        /**
+        * Creates the Xuikon component for text component.
+        * @param aNode Corresponding DOM-node
+        * @param aTargetComponent Pointer reference to the component to be created.
+        */
+        virtual TXnComponentFactoryResponse MakeXnComponentL( 
+                                                CXnNodePluginIf& aNode,
+                                                CXnComponent*& aTargetComponent
+        										);
+        
+        /**
+        * Creates the control adapter for text component.
+        * @param aNode Corresponding DOM-node
+        */
+        virtual CXnControlAdapter* MakeXnControlAdapterL( 
+                                                CXnNodePluginIf& aNode,
+                                                CXnControlAdapter* aParent
+        										);
+
+    private:
+
+        /**
+        * 2nd phase constructor. 
+        */
+        void ConstructL();
+
+        /**
+        * C++ default constructor. 
+        */
+        CXnTextFactory();
+
+    };
+    
+// Exported factory function required by ECOM-framework
+IMPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount);
+
+#endif      // _XNTEXTFACTORY_H
+            
+// End of File