X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Ffilelistwidget.h;fp=src%2Ffilelistwidget.h;h=0000000000000000000000000000000000000000;hb=05839590b40b017ba41125b31b93381cbc6aff0b;hp=48304cf458f842069367994ea433f22ece753c7e;hpb=9b21bcabd6dc128093b4e8e8193630adaf0575f1;p=cuteexplorer diff --git a/src/filelistwidget.h b/src/filelistwidget.h deleted file mode 100644 index 48304cf..0000000 --- a/src/filelistwidget.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef FILELISTWIDGET_H -#define FILELISTWIDGET_H - -#include -#include -#include -#include -#include - -class FileListWidget : public QListView -{ -Q_OBJECT -public: - explicit FileListWidget(QWidget *parent = 0); - - QString getPath(); - -signals: - void pathChanged(QString newPath); - -public slots: - void changePath(QString path); - void changePathUp(); - - void actionDelete(); - void actionCut(); - void actionCopy(); - void actionPaste(); - void actionSwitchMode(bool iconmode=true); - void actionRename(); - void actionShowHidden(bool show=true); - void actionSendFiles(); - - void setSelectMode(bool mode=true); -private slots: - void handleItemActivation(QModelIndex index); - -private: - QFileSystemModel *fileSystemModel; - QDir currentDir; - QModelIndexList selectedFiles; - bool mode_cut; - bool mode_copy; - bool select; -}; - -#endif // FILELISTWIDGET_H