QSensorFilter Class Reference
The QSensorFilter class provides an efficient callback facility for asynchronous notifications of sensor changes. More...
#include <QSensorFilter>
Inherited by QAccelerometerFilter, QAmbientLightFilter, QCompassFilter, QMagnetometerFilter, QOrientationFilter, QProximityFilter, QRotationFilter, and QTapFilter.
Public Functions
virtual bool | filter ( QSensorReading * reading ) = 0 |
Protected Functions
~QSensorFilter () |
Detailed Description
The QSensorFilter class provides an efficient callback facility for asynchronous notifications of sensor changes.
Some sensors (eg. the accelerometer) are often accessed very frequently. This may be slowed down by the use of signals and slots. The QSensorFilter interface provides a more efficient way for the sensor to notify your class that the sensor has changed.
Additionally, multiple filters can be added to a sensor. They are called in order and each filter has the option to modify the values in the reading or to suppress the reading altogether.
Note that the values in the class returned by QSensor::reading() will not be updated until after the filters have been run.