-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
55 lines (40 loc) · 1 KB
/
mainwindow.h
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QThread>
#include <QSettings>
#include <QLineEdit>
#include <QMetaObject>
#include "config.h"
#include "rtor/rtorrent.h"
#include "torrents_daemon.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void changeEvent(QEvent*);
private:
Ui::MainWindow *ui;
Config conf{};
torrents_daemon torrents;
QThread worker;
QLineEdit *search;
signals:
void about_to_quit();
void add_torrents(QString dest_path, std::vector<std::string> filenames, bool start);
void update_client(std::shared_ptr<rtor::client>);
void fetch_start(int interval);
void fetch_stop();
void fetch_now();
private slots:
void on_actionConnect_triggered();
void on_actionOpen_triggered();
void show_details(QString hash);
void print_error(const QString &error);
};
#endif // MAINWINDOW_H