filemanager/src/filemanager/src/fmsplitview.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 the split view of file manager
       
    17 *
       
    18 */
       
    19 #ifndef FMSPLITVIEW_H
       
    20 #define FMSPLITVIEW_H
       
    21 
       
    22 #include "fmcommon.h"
       
    23 #include "fmviewbase.h"
       
    24 
       
    25 class FmDriverListWidget;
       
    26 class FmFileBrowseWidget;
       
    27 
       
    28 class FmSplitView : public FmViewBase
       
    29 {
       
    30 	Q_OBJECT
       
    31 public:
       
    32     FmSplitView();
       
    33     virtual ~FmSplitView();
       
    34 
       
    35 private slots:
       
    36 	void on_normalViewAction_triggered();
       
    37 	void on_rotateAction_triggered();
       
    38 
       
    39 private:
       
    40     void initMenu();
       
    41     void initMainWidget();
       
    42 
       
    43 
       
    44     FmDriverListWidget *mDriverWidget;
       
    45     FmFileBrowseWidget *mFileWidget;
       
    46 };
       
    47 
       
    48 #endif