filebrowser/ui/inc/fbfileview.h
branchRCL_3
changeset 46 fad26422216a
parent 45 b3cee849fa46
child 49 f8280f3bfeb7
--- a/filebrowser/ui/inc/fbfileview.h	Tue Aug 31 15:15:20 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,248 +0,0 @@
-/*
-* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:
-*
-*/
-
-#ifndef FBFILEVIEWH_H_
-#define FBFILEVIEWH_H_
-
-#include "menuaction.h"
-#include "enginewrapper.h"
-
-#include <HbView>
-#include <HbApplication>
-
-#include <QModelIndexList>
-
-// Forward declarations
-class QFileInfo;
-class QSignalMapper;
-class QItemSelection;
-class QString;
-class QGraphicsLinearLayout;
-
-class HbListView;
-class HbListWidget;
-class HbToolBar;
-class HbLabel;
-class HbDialog;
-class HbAbstractViewItem;
-class HbMenu;
-class HbSearchPanel;
-
-class EditorView;
-class SearchView;
-class SettingsView;
-class EngineWrapper;
-class FbFileModel;
-class FileBrowserSortFilterProxyModel;
-
-class FbFileView : public HbView
-{
-    Q_OBJECT
-
-public:
-    explicit FbFileView();
-    virtual ~FbFileView();
-    void init(EngineWrapper *engineWrapper);
-
-public slots:
-    void refreshList();
-
-private:
-    void fileOverwriteDialog();
-    void openListDialog(const QStringList &items, const QString &titleText, QObject *receiver, const char *member);
-
-    void openPropertyDialog(const QStringList &propertyList, const QString &title);
-
-    QModelIndex currentItemIndex();
-    void storeSelectedItemsOrCurrentItem();
-
-    // Menu related methods
-    void createMenu();
-    void createFileMenu();
-    void createEditMenu();
-    void createViewMenu();
-    void createToolsMenu();
-
-    void createSelectionMenuItem();
-    void createSettingsMenuItem();
-    void createAboutMenuItem();
-    void createExitMenuItem();
-
-    void createContextMenu();
-    void createFileContextMenu();
-    void createEditContextMenu();
-    void createViewContextMenu();
-    void createToolBar();
-
-private slots:
-    // menu action slots
-    // file menu
-    void fileBackMoveUp();
-    void fileOpenDirectory();
-    void fileSearch();
-
-    void fileNewFile();
-    void doFileNewFile(HbAction *);
-
-    void fileNewDirectory();
-    void doFileNewDirectory(HbAction *);
-
-    void fileDelete();
-    void doFileDelete(HbAction *);
-
-    void fileRename();
-    void doFileRename(HbAction *);
-    void doFileRenameFileExist(HbAction *);
-
-    void fileTouch();
-    void doFileTouch(HbAction *);
-    void fileProperties();
-
-    void fileChecksumsMD5();
-    void fileChecksumsMD2();
-    void fileChecksumsSHA1();
-    void fileChecksums(TFileBrowserCmdFileChecksums checksumType);
-
-    void fileSetAttributes();
-
-    // edit menu
-    void editSnapShotToE();
-    void editCut();
-    void editCopy();
-    void editPaste();
-
-    void editCopyToFolder();
-    void doEditCopyToFolder(HbAction *);
-
-    void editMoveToFolder();
-    void doEditMoveToFolder(HbAction *);
-
-    void editSelect();
-    void editUnselect();
-    void editSelectAll();
-    void editUnselectAll();
-
-    // view menu
-    void viewFilterEntries();
-    void filterCriteriaChanged(const QString &);
-    void clearFilterCriteria();
-    void viewRefresh();
-
-    // tools menu
-    void toolsAllAppsToTextFile();
-    void toolsAllFilesToTextFile();
-//    void toolsAvkonIconCacheEnable();
-//    void toolsAvkonIconCacheDisable();
-
-    void toolsDisableExtendedErrors();
-    void toolsDumpMsgStoreWalk();
-    void toolsEditDataTypes();
-    void toolsEnableExtendedErrors();
-
-    void toolsErrorSimulateLeave();
-    void doToolsErrorSimulateLeave(HbAction *);
-
-    void toolsErrorSimulatePanic();
-    void doToolsErrorSimulatePanicCode(HbAction *);
-    void doToolsErrorSimulatePanic(HbAction *);
-
-    void toolsErrorSimulateException();
-    void doToolsErrorSimulateException(HbAction *);
-
-//    void toolsLocalConnectivityActivateInfrared();
-//    void toolsLocalConnectivityLaunchBTUI();
-//    void toolsLocalConnectivityLaunchUSBUI();
-    void toolsMessageInbox();
-    void toolsMessageDrafts();
-    void toolsMessageSentItems();
-    void toolsMessageOutbox();
-    void toolsMemoryInfo();
-    void toolsSecureBackStart();
-    void toolsSecureBackRestore();
-    void toolsSecureBackStop();
-    void toolsSetDebugMaskQuestion();
-    void toolsSetDebugMask(HbAction *);
-    void toolsShowOpenFilesHere();
-
-    // main menu items
-    void selectionModeChanged();
-    void about();
-    
-signals:
-    void aboutToShowDriveView();
-    void aboutToShowSettingsView();
-    void aboutToShowEditorView(const QString &, bool);
-    void aboutToShowSearchView(const QString &);
-    void aboutToSimulateLeave(int);
-
-private slots:
-    void updateOptionMenu();
-    void updateContextMenu();
-    void selectionChanged(const QItemSelection &, const QItemSelection &);
-    void activated(const QModelIndex& index);
-    void activateSelectionMode();
-    void deActivateSelectionMode();
-    void onLongPressed(HbAbstractViewItem *, QPointF);
-
-    void fileOpen(HbAction *);
-    void fileOverwrite(HbAction *);
-    void fileOverwritePostfix(HbAction *);
-
-private:
-    EngineWrapper *mEngineWrapper;
-
-    HbListView *mListView;
-    HbToolBar *mToolBar;
-    HbLabel *mNaviPane;
-    HbSearchPanel *mSearchPanel;
-
-    QGraphicsLinearLayout *mMainLayout;
-
-    // file info contains all needed information of selected file from file model
-    QModelIndexList mClipboardIndexes;
-    QModelIndexList mSelectionIndexes;
-
-    FbFileModel *mFbFileModel;
-    FileBrowserSortFilterProxyModel *mSortFilterProxyModel;
-    OptionMenuActions mOptionMenuActions;
-    ContextMenuActions mContextMenuActions;
-    HbMenu *mContextMenu;
-    HbAction *mToolbarBackAction;
-
-    // flags
-    bool mItemHighlighted;
-    bool mLocationChanged;
-    // flag for removing source file after copied to target file
-    bool mRemoveFileAfterCopied;
-    bool mClipBoardInUse;
-    bool mFolderContentChanged;
-    QModelIndex mCurrentIndex;
-
-    // temporarily storage
-    QString mOldPassword;
-    QString mPanicCategory;
-    QString mAbsoluteFilePath;
-    OverwriteOptions mOverwriteOptions;
-    QModelIndex mModelIndex;
-    QString mNewFileName;
-    bool mProceed;
-    bool mEraseMBR;
-};
-
-
-
-#endif /* FBFILEVIEWH_H_ */