CCIMXDesktop
 
Loading...
Searching...
No Matches
BacklightController.h
1#ifndef BACKLIGHTCONTROLLER_H
2#define BACKLIGHTCONTROLLER_H
3#include <QtClassHelperMacros>
5
11public:
22 int max_level();
28 int min_level();
34 void setLightLevel(int lightLevel);
40 int lightLevel();
41
42private:
47 Q_DISABLE_COPY_MOVE(BacklightController);
48};
49
50#endif // BACKLIGHTCONTROLLER_H
Definition BackLightControllerSingleton.h:7
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
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