filebrowser/ui/inc/filebrowsermainwindow.h
changeset 35 98924d2efce9
parent 34 e0ec97ec3cc4
child 37 c20154ccf3c0
child 41 6c7007136f84
equal deleted inserted replaced
34:e0ec97ec3cc4 35:98924d2efce9
     1 /*
       
     2 * Copyright (c) 2010 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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef FILEBROWSERMAINWINDOW_H_
       
    19 #define FILEBROWSERMAINWINDOW_H_
       
    20 
       
    21 #include <hbmainwindow.h>
       
    22 
       
    23 class HbApplication;
       
    24 class EngineWrapper;
       
    25 class FileBrowserView;
       
    26 class SettingsView;
       
    27 class EditorView;
       
    28 class SearchView;
       
    29 
       
    30 class FileBrowserMainWindow : public HbMainWindow
       
    31     {
       
    32     Q_OBJECT
       
    33 
       
    34 public:
       
    35     explicit FileBrowserMainWindow(QWidget *parent = 0);
       
    36     virtual ~FileBrowserMainWindow();
       
    37     
       
    38     void init();
       
    39 
       
    40 private slots:
       
    41     void openFileBrowserView();
       
    42     void openSettingsView();
       
    43     void openEditorView(const QString &, bool);
       
    44     void openSearchView(const QString &);
       
    45     
       
    46 private:
       
    47     EngineWrapper* mEngineWrapper;
       
    48     FileBrowserView* mFileBrowserView;
       
    49     SettingsView* mSettingsView;
       
    50     EditorView* mEditorView;
       
    51     SearchView* mSearchView;
       
    52     };
       
    53 
       
    54 #endif /* FILEBROWSERMAINWINDOW_H_ */