stifui/avkon/stifui/inc/AppUIDocument.h
branchRCL_3
changeset 9 404ad6c9bc20
child 17 d40e813b23c0
equal deleted inserted replaced
8:87e9ebfbe96a 9:404ad6c9bc20
       
     1 /*
       
     2 * Copyright (c) 2009 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: This file contains CAppUIDocument class declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef APPUIDOCUMENT_H
       
    19 #define APPUIDOCUMENT_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <AknDoc.h>
       
    23    
       
    24 // CONSTANTS
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class  CEikAppUi;
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  CAppUIDocument application class.
       
    33 */
       
    34 class CAppUIDocument : public CAknDocument
       
    35     {
       
    36     public: // Constructors and destructor
       
    37         /**
       
    38         * Two-phased constructor.
       
    39         */
       
    40         static CAppUIDocument* NewL(CEikApplication& aApp);
       
    41 
       
    42         /**
       
    43         * Destructor.
       
    44         */
       
    45         virtual ~CAppUIDocument();
       
    46 
       
    47     public: // New functions
       
    48 
       
    49     protected:  // New functions
       
    50 
       
    51     protected:  // Functions from base classes
       
    52 
       
    53     private:
       
    54 
       
    55         /**
       
    56         * Symbian OS default constructor.
       
    57         */
       
    58         CAppUIDocument(CEikApplication& aApp);
       
    59         void ConstructL();
       
    60 
       
    61     private:
       
    62 
       
    63         /**
       
    64         * From CEikDocument, create CAppUIAppUi "App UI" object.
       
    65         */
       
    66         CEikAppUi* CreateAppUiL();
       
    67     };
       
    68 
       
    69 #endif
       
    70 
       
    71 // End of File
       
    72 
       
    73 // End of File