mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
38 lines
796 B
C++
38 lines
796 B
C++
#ifndef BRIGHTNESSDIALOG_H
|
|
#define BRIGHTNESSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
using namespace std;
|
|
|
|
namespace Ui {
|
|
class brightnessDialog;
|
|
}
|
|
|
|
class brightnessDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QString checkconfig_str_val;
|
|
int oldValue;
|
|
int oldWarmthValue;
|
|
void pre_set_brightness(int brightnessValue);
|
|
explicit brightnessDialog(QWidget *parent = nullptr);
|
|
~brightnessDialog();
|
|
|
|
private slots:
|
|
void on_quitBtn_clicked();
|
|
void on_horizontalSlider_valueChanged(int value);
|
|
void on_incBtn_clicked();
|
|
void on_decBtn_clicked();
|
|
void on_okBtn_clicked();
|
|
void on_warmthSlider_valueChanged(int value);
|
|
void on_warmthDecBtn_clicked();
|
|
void on_warmthIncBtn_clicked();
|
|
|
|
private:
|
|
Ui::brightnessDialog *ui;
|
|
};
|
|
|
|
#endif // BRIGHTNESSDIALOG_H
|