mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-08 19:52:07 +00:00
45 lines
713 B
C++
45 lines
713 B
C++
#ifndef QSETTINGSU_H
|
|
#define QSETTINGSU_H
|
|
|
|
#include <QWidget>
|
|
#include "tegrarcmgui.h"
|
|
#include "qutils.h"
|
|
|
|
class TegraRcmGUI;
|
|
class Kourou;
|
|
class QKourou;
|
|
class Switch;
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui {
|
|
class qSettings;
|
|
}
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class qSettings : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit qSettings(TegraRcmGUI *parent = nullptr);
|
|
~qSettings();
|
|
|
|
public slots:
|
|
void on_driverMissing();
|
|
|
|
private slots:
|
|
void on_installDriverButton_clicked();
|
|
void on_minToTraySwitch_toggled();
|
|
|
|
void on_packagesButton_clicked();
|
|
|
|
private:
|
|
Ui::qSettings *ui;
|
|
TegraRcmGUI *parent;
|
|
QKourou *m_kourou;
|
|
Kourou *m_device;
|
|
Switch *minTraySwitch;
|
|
|
|
};
|
|
|
|
#endif // QSETTINGSU_H
|