CCIMXDesktop
 
Loading...
Searching...
No Matches
LightConfigures.h
1#ifndef LIGHTCONFIGURES_H
2#define LIGHTCONFIGURES_H
3
4#include <QWidget>
5
6namespace Ui {
8}
9
11
19class LightConfigures : public QWidget {
20 Q_OBJECT
21
22public:
27 explicit LightConfigures(QWidget* parent = nullptr);
28
33
34private:
35 Ui::LightConfigures* ui;
36 std::shared_ptr<BacklightController> controller;
37
42 void setLightLevel(int level);
43
47 void post_hooks_of_value_session();
48};
49
50#endif // LIGHTCONFIGURES_H
backlighty controller
Definition BacklightController.h:10
The LightConfigures class Provides a UI interface for adjusting the screen backlight brightness.
Definition LightConfigures.h:19
~LightConfigures()
Destructor.
Definition LightConfigures.cpp:35