blob: 93b1581c485a088dc7b305a05659be70c6f7ffb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef SHEMOVCLEANER_H
#define SHEMOVCLEANER_H
#include <QMainWindow>
class QTabWidget;
class TorrentWidget;
class QLabel;
class QAction;
class ShemovCleaner : public QMainWindow {
Q_OBJECT
public:
ShemovCleaner(QWidget *parent = 0, Qt::WindowFlags f = 0);
public slots:
void statusBarMessage(const QString &msg);
void setSelectionCount(const QString &msg);
private:
void createStatusBar();
void createActions();
QAction *createSeparator();
QLabel *mSelected;
QTabWidget *mTab;
TorrentWidget *mTorrentTab;
QAction *mTorRefreshA;
QAction *mTorDeleteA;
QAction *mTorMoveA;
QAction *mTorInfoA;
QAction *mTorDirA;
};
#endif // SHEMOVCLEANER_H
|