summaryrefslogtreecommitdiffstats
path: root/shemovcleaner.h
diff options
context:
space:
mode:
Diffstat (limited to 'shemovcleaner.h')
-rw-r--r--shemovcleaner.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/shemovcleaner.h b/shemovcleaner.h
index e21dbe4..441b0a3 100644
--- a/shemovcleaner.h
+++ b/shemovcleaner.h
@@ -12,12 +12,15 @@ class QAction;
class ShemovCleaner : public QMainWindow {
Q_OBJECT
public:
+ enum Tabs { Torrents = 0, Videos = 1 };
ShemovCleaner(QWidget *parent = 0, Qt::WindowFlags f = 0);
public slots:
void statusBarMessage(const QString &msg);
void setSelectionCount(const QString &msg);
+ void setDuration(const QString &msg);
void configure();
+ void tabChanged(int idx);
protected:
virtual void closeEvent(QCloseEvent *e);
@@ -28,6 +31,7 @@ class ShemovCleaner : public QMainWindow {
void openDatabase();
QAction *createSeparator();
QLabel *mSelected;
+ QLabel *mDuration;
QTabWidget *mTab;
TorrentWidget *mTorrentTab;
FileWidget *mFileTab;