diff options
| author | Arno <arno@disconnect.de> | 2016-12-02 12:39:04 +0100 |
|---|---|---|
| committer | Arno <arno@disconnect.de> | 2016-12-02 12:39:04 +0100 |
| commit | e0b8c355e5f05398174abd8e70f0694f07a9821c (patch) | |
| tree | 8e62809b2d3ad8eac5e0fd12eafdef5e23463379 /configurationwidget.h | |
| parent | db12a715196e81863fc14ffa1be519e31aa7907a (diff) | |
| download | ShemovCleaner-e0b8c355e5f05398174abd8e70f0694f07a9821c.tar.gz ShemovCleaner-e0b8c355e5f05398174abd8e70f0694f07a9821c.tar.bz2 ShemovCleaner-e0b8c355e5f05398174abd8e70f0694f07a9821c.zip | |
Add configuration option for copy dirs
Copy dirs are destination directories for copy operations. They will be
used later on to copy files or to check if a file has already been
copied.
Diffstat (limited to 'configurationwidget.h')
| -rw-r--r-- | configurationwidget.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configurationwidget.h b/configurationwidget.h index 53fb230..df69652 100644 --- a/configurationwidget.h +++ b/configurationwidget.h @@ -5,6 +5,8 @@ class QLineEdit; class QPushButton; +class QListView; +class QStandardItemModel; class ConfigurationWidget : public QDialog { Q_OBJECT @@ -18,6 +20,10 @@ class ConfigurationWidget : public QDialog { void browseFfProbe(); void browseFfMpeg(); void browseMkvInfo(); + void browseCopyDir(); + void addCopyDir(); + void removeCopyDir(); + void selectCopyDir(const QModelIndex &cur, const QModelIndex &prev); private: void readSettings(); @@ -28,8 +34,11 @@ class ConfigurationWidget : public QDialog { QLineEdit *mFfProbe; QLineEdit *mFfMpeg; QLineEdit *mMkvInfo; + QLineEdit *mDir; QPushButton *mAccept; QPushButton *mCancel; + QListView *mCopyDirV; + QStandardItemModel *mCopyDirM; }; #endif // CONFIGURATIONWIDGET_H |
