forked from LazyT/rrcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.h
48 lines (33 loc) · 1000 Bytes
/
setup.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
#ifndef SETUPDLG_H
#define SETUPDLG_H
#include "ui_setup.h"
#include "mainwindow.h"
class setupDialog : public QDialog, private Ui::Dialog_Setup
{
Q_OBJECT
public:
setupDialog(QWidget*, QString);
private:
QTimer timerVolume;
QSshSocket *ssh;
private slots:
void on_horizontalSlider_volume_valueChanged(int);
void on_toolButton_ssh_clicked();
void on_toolButton_convert_clicked();
void on_toolButton_sound_install_clicked();
void on_toolButton_sound_pack_clicked();
void on_toolButton_sound_unpack_clicked();
void on_toolButton_carpet_reset_clicked();
void on_toolButton_ssh_keyfile_clicked();
void on_groupBox_ssh_password_clicked(bool checked);
void on_groupBox_ssh_keyfile_clicked(bool checked);
void on_buttonBox_clicked(QAbstractButton*);
void timer_setVolume();
void ssh_connected();
void ssh_disconnected();
void ssh_error(QSshSocket::SshError);
void ssh_loginSuccessful();
void ssh_commandExecuted(QString, QString);
void reject();
};
#endif // SETUPDLG_H