Rabbit Remote Control 0.0.30
Loading...
Searching...
No Matches
ParameterDlgSettings.h
1#ifndef DLGSETTINGS_H
2#define DLGSETTINGS_H
3
4#include <QDialog>
5#include "ParameterApp.h"
6
7namespace Ui {
9}
10
11class CParameterDlgSettings : public QDialog
12{
13 Q_OBJECT
14
15public:
17 QList<QWidget*> wViewer,
18 QWidget *parent = nullptr);
19 virtual ~CParameterDlgSettings();
20
21private slots:
22 void on_pbOk_clicked();
23 void on_pbNo_clicked();
24
25 void on_cbShowSystemTrayIcon_toggled(bool checked);
26
27private:
28 Ui::CParameterDlgSettings *ui;
29
30 CParameterApp* m_pParameters;
31};
32
33#endif // DLGSETTINGS_H