summaryrefslogtreecommitdiffstats
path: root/shemovcleaner.h
diff options
context:
space:
mode:
Diffstat (limited to 'shemovcleaner.h')
-rw-r--r--shemovcleaner.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/shemovcleaner.h b/shemovcleaner.h
index fe02fc6..80ccddb 100644
--- a/shemovcleaner.h
+++ b/shemovcleaner.h
@@ -3,6 +3,7 @@
#include <QMainWindow>
#include <QItemSelection>
+#include <QString>
class QPushButton;
class QLineEdit;
@@ -25,6 +26,7 @@ class ShemovCleaner : public QMainWindow {
void deleteFiles();
void moveFiles();
void torrentInfo();
+ void searchFile();
private:
void setupGui();
@@ -34,12 +36,13 @@ class ShemovCleaner : public QMainWindow {
void readSettings();
void writeSettings();
QLineEdit *mDir;
- QLineEdit *mExt;
QPushButton *mSelDir;
- QPushButton *mSelExt;
+ QLineEdit *mSearchTorrents;
+ QPushButton *mDoSearchTorrents;
QPushButton *mMove;
QPushButton *mDelete;
QPushButton *mInfo;
+ QString mExt;
QLabel *mSelected;
QStandardItemModel *mModel;
FileSorter *mProxy;