videditor/ManualVideoEditor/inc/VeiDocument.h
changeset 0 951a5db380a0
equal deleted inserted replaced
-1:000000000000 0:951a5db380a0
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description:  
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef VEDDOCUMENT_H
       
    21 #define VEDDOCUMENT_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <genericparamconsumer.h>
       
    25 
       
    26 // CONSTANTS
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CEikAppUi;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34  *  CVeiDocument application class.
       
    35  */
       
    36 class CVeiDocument: public CAiwGenericParamConsumer
       
    37 {
       
    38 public:
       
    39     // Constructors and destructor
       
    40     /**
       
    41      * Two-phased constructor.
       
    42      */
       
    43     static CVeiDocument* NewL( CEikApplication& aApp );
       
    44 
       
    45     //CFileStore* OpenFileL(TBool aDoOpen,const TDesC& aFilename,RFs& aFs);
       
    46     //void OpenFileL(TBool aDoOpen , RFile& aFile);
       
    47     void OpenFileL( CFileStore* & aFileStore, RFile& aFile );
       
    48 
       
    49     /**
       
    50      * Destructor.
       
    51      */
       
    52     virtual ~CVeiDocument();
       
    53     //		virtual void RestoreL(const CStreamStore& aStore, const CStreamDictionary& aStreamDic);
       
    54 
       
    55 private:
       
    56 
       
    57     /**
       
    58      * Default constructor.
       
    59      */
       
    60     CVeiDocument( CEikApplication& aApp );
       
    61     void ConstructL();
       
    62 
       
    63 private:
       
    64 
       
    65     /**
       
    66      * From CEikDocument, create CVeiAppUi "App UI" object.
       
    67      */
       
    68     CEikAppUi* CreateAppUiL();
       
    69 };
       
    70 
       
    71 #endif 
       
    72 
       
    73 // End of File