CCIMXDesktop
 
Loading...
Searching...
No Matches
BacklightController.h
1#ifndef BACKLIGHTCONTROLLER_H
2#define BACKLIGHTCONTROLLER_H
3#include <QtClassHelperMacros>
5
11public:
22
28 int max_level();
34 int min_level();
40 void setLightLevel(int lightLevel);
46 int lightLevel();
47
48private:
50};
51
52#endif // BACKLIGHTCONTROLLER_H
The BacklightControllerImpl class Abstract base class for platform-specific backlight control impleme...
Definition BacklightControllerImpl.h:13
backlighty controller
Definition BacklightController.h:10
void setLightLevel(int lightLevel)
Set the Light Level object.
Definition BacklightController.cpp:15
Q_DISABLE_COPY_MOVE(BacklightController)
Disable copy move.
int max_level()
max level light
Definition BacklightController.cpp:7
BacklightController()
Construct a new Backlight Controller object.
Definition BacklightController.cpp:3
int min_level()
min level light
Definition BacklightController.cpp:11
int lightLevel()
get the light level
Definition BacklightController.cpp:19