widgets/widgetpreinstaller/inc/WidgetPreInstallerDocument.h
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 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 the License "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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef WIDGETPREINSTALLERDOCUMENT_H
       
    20 #define WIDGETPREINSTALLERDOCUMENT_H
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 #include <akndoc.h>
       
    25 
       
    26 // CONSTANTS
       
    27 
       
    28 // MACROS
       
    29 
       
    30 // DATA TYPES
       
    31 
       
    32 // FUNCTION PROTOTYPES
       
    33 
       
    34 // FORWARD DECLARATIONS
       
    35 
       
    36 class CEikAppUi;
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 *
       
    42 *  @lib
       
    43 *  @since 3.1
       
    44 */
       
    45 class CWidgetPreInstallerDocument : public CAknDocument
       
    46     {
       
    47     public: // Constructors and destructor
       
    48 
       
    49         /**
       
    50         * NewL
       
    51         * Two-phased constructor.
       
    52         * @since 3.1
       
    53         * @param aApp Pointer to the CEikApplication
       
    54         * @return CWidgetPreInstallerDocument*
       
    55         */
       
    56         static CWidgetPreInstallerDocument* NewL( CEikApplication& aApp );
       
    57 
       
    58         /**
       
    59         * ~CWidgetPreInstallerDocument
       
    60         * Destructor.
       
    61         * @since 3.1
       
    62         * @param none
       
    63         * @return none
       
    64         */
       
    65         virtual ~CWidgetPreInstallerDocument();
       
    66 
       
    67     private:
       
    68 
       
    69         /**
       
    70         * CWidgetPreInstallerDocument
       
    71         * @since 3.1
       
    72         * @param aApp Pointer to the CEikApplication
       
    73         * @return none
       
    74         */
       
    75         CWidgetPreInstallerDocument( CEikApplication& aApp );
       
    76 
       
    77         /**
       
    78         * ConstructL
       
    79         * @since 3.1
       
    80         * @param none
       
    81         * @return void
       
    82         */
       
    83         void ConstructL();
       
    84 
       
    85     private:
       
    86 
       
    87         /**
       
    88         * CreateAppUiL
       
    89         * @since 3.1
       
    90         * @param none
       
    91         * @return CEikAppUi*
       
    92         */
       
    93         CEikAppUi* CreateAppUiL();
       
    94     };
       
    95 
       
    96 #endif // WIDGETPREINSTALLERDOCUMENT_H
       
    97 
       
    98 // End of File
       
    99