filemanager/src/filemanager/src/fmmainwindow.h
branchRCL_3
changeset 21 65326cf895ed
parent 20 491b3ed49290
child 22 f5c50b8af68c
equal deleted inserted replaced
20:491b3ed49290 21:65326cf895ed
     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  *     Zhiqiang Yang <zhiqiang.yang@nokia.com>
       
    14  * 
       
    15  * Description:
       
    16  *     The header file of File Manager main window
       
    17  */
       
    18 
       
    19 #ifndef FMMAINWINDOW_H
       
    20 #define FMMAINWINDOW_H
       
    21 
       
    22 #include "fmcommon.h"
       
    23 #include "fmviewmanager.h"
       
    24 
       
    25 #include <hbmainwindow.h>
       
    26 
       
    27 class HbAction;
       
    28 
       
    29 class FmMainWindow : public HbMainWindow
       
    30 {
       
    31     Q_OBJECT
       
    32 public:
       
    33     FmMainWindow();
       
    34     ~FmMainWindow();
       
    35 
       
    36 private slots:
       
    37     void onOrientationChanged( Qt::Orientation orientation );
       
    38     void delayedLoading();
       
    39 private:
       
    40     void init();
       
    41 
       
    42     FmViewManager *mViewManager;
       
    43     bool mFirstViewLoaded;
       
    44 };
       
    45 
       
    46 #endif
       
    47