idlehomescreen/xmluirendering/renderingplugins/xnviewfactory/inc/viewcontrol.h
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Xuikon View plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef _VIEWCONTROL_H
       
    19 #define _VIEWCONTROL_H
       
    20 
       
    21 //  System includes
       
    22 #include <e32base.h>
       
    23 
       
    24 // User includes
       
    25 #include "xncontroladapter.h"
       
    26 
       
    27 // Forward declarations
       
    28 class CXnNodePluginIf;
       
    29 
       
    30 // Class declaration
       
    31 /**
       
    32 *  @ingroup group_xnviewfactory
       
    33 *  @lib xn3viewfactory.dll
       
    34 *  @since S6060 3.1
       
    35 */   
       
    36 class CViewControl : public CXnControlAdapter
       
    37    {
       
    38 public: 
       
    39     // Constructors and destructor
       
    40     
       
    41     /**
       
    42      * 2 phase construction.
       
    43      */
       
    44     static CViewControl* NewL( CXnNodePluginIf& aNode );
       
    45 
       
    46     /**
       
    47      * Destructor.
       
    48      */
       
    49     ~CViewControl();
       
    50 
       
    51 private: 
       
    52     // Constructor
       
    53     CViewControl();
       
    54     
       
    55     void ConstructL( CXnNodePluginIf& aNode );
       
    56    
       
    57 private:
       
    58     // data
       
    59     
       
    60    };
       
    61 
       
    62 #endif      // _VIEWCONTROL_H
       
    63             
       
    64 // End of File