diff options
author | Arno <am@disconnect.de> | 2013-08-28 10:31:29 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-08-28 10:31:29 +0200 |
commit | 00084a82f08ea72bafc6c002422c8f49bdeb1742 (patch) | |
tree | 0c69d4de4ff173b658f4cc514f1dcda1d19a2f9b /filesystemwidget.h | |
parent | 1ee897fbb51cb431cba7690076a29a3ca2ddc1a7 (diff) | |
download | SheMov-00084a82f08ea72bafc6c002422c8f49bdeb1742.tar.gz SheMov-00084a82f08ea72bafc6c002422c8f49bdeb1742.tar.bz2 SheMov-00084a82f08ea72bafc6c002422c8f49bdeb1742.zip |
Add a progress dialog to FilesystemWidget1.2.0
Show a progress dialog when gathering data from the filesystem.
Diffstat (limited to 'filesystemwidget.h')
-rw-r--r-- | filesystemwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filesystemwidget.h b/filesystemwidget.h index c8f7931..b9f082d 100644 --- a/filesystemwidget.h +++ b/filesystemwidget.h @@ -18,6 +18,7 @@ class FilesystemDirProxy; class FileView; class FilesystemFileProxy; class QLineEdit; +class QProgressDialog; class PictureViewer2; class FileSystemModel; class SheMovIconProvider; @@ -59,6 +60,8 @@ class FilesystemWidget : public QWidget { void moveToArchive(); void selectAllPV(); void setWindowTitle(); + void setupProgressDlg(int max); + void progress(); private slots: void dirExpanded(const QModelIndex &idx); @@ -83,6 +86,7 @@ class FilesystemWidget : public QWidget { FilesystemDirProxy *mDirProxy; FilesystemFileProxy *mFileProxy; QLineEdit *mDirEdit; + QProgressDialog *mProgressDlg; QString mWindowTitle; QString mTemplate; qint64 mSize; |