widgets/widgetapp/inc/WidgetUiDocument.h
changeset 0 dd21522fd290
child 68 92a765b5b3e7
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 WIDGEUIDOCUMENT_H_
       
    20 #define WIDGEUIDOCUMENT_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 CWidgetUiDocument : 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 CWidgetUiDocument*
       
    55         */
       
    56         static CWidgetUiDocument* NewL( CEikApplication& aApp );
       
    57 
       
    58         /**
       
    59         * ~CWidgetUiDocument
       
    60         * Destructor.
       
    61         * @since 3.1
       
    62         * @param none
       
    63         * @return none
       
    64         */
       
    65         virtual ~CWidgetUiDocument();
       
    66 
       
    67     private:
       
    68 
       
    69         /**
       
    70         * CWidgetUiDocument
       
    71         * @since 3.1
       
    72         * @param aApp Pointer to the CEikApplication
       
    73         * @return none
       
    74         */
       
    75         CWidgetUiDocument( CEikApplication& aApp );
       
    76 
       
    77     private:
       
    78 
       
    79         /**
       
    80         * CreateAppUiL
       
    81         * @since 3.1
       
    82         * @param none
       
    83         * @return CEikAppUi*
       
    84         */
       
    85         CEikAppUi* CreateAppUiL();
       
    86     };
       
    87 
       
    88 #endif // WidgetUIDOCUMENT_H
       
    89 
       
    90 // End of File
       
    91 
       
    92 
       
    93 
       
    94 
       
    95