sensorfw
lidsensor_i.h
Go to the documentation of this file.
26#ifndef LIDSENSOR_I_H
27#define LIDSENSOR_I_H
28
29#include <QtDBus/QtDBus>
30
31#include "datatypes/liddata.h"
32#include "abstractsensor_i.h"
33
38{
39 Q_OBJECT
40 Q_DISABLE_COPY(LidSensorChannelInterface)
41 Q_PROPERTY(LidData closed READ closed)
42
43public:
47 static const char* staticInterfaceName;
48
57
64
71 LidSensorChannelInterface(const QString& path, int sessionId);
72
80 static const LidSensorChannelInterface* listenInterface(const QString& id);
81
89 static LidSensorChannelInterface* controlInterface(const QString& id);
90
97 static LidSensorChannelInterface* interface(const QString& id);
98
99protected:
100 virtual bool dataReceivedImpl();
101
102Q_SIGNALS:
108 void lidChanged(const LidData& value);
109};
110
111namespace local {
113}
114
115#endif
Base class for sensor interface.
Base-class for client facades of different sensor types.
Datatype for device lid events.
Definition: liddata.h:36
Client interface for listening to lid sensor state changes.
Definition: lidsensor_i.h:38
LidData closed()
Get latest lid reading from sensor daemon.
static const char * staticInterfaceName
Name of the D-Bus interface for this class.
Definition: lidsensor_i.h:47
void lidChanged(const LidData &value)
Sent when measured ambient light intensity has changed.
static AbstractSensorChannelInterface * factoryMethod(const QString &id, int sessionId)
Create new instance of the class.
LidSensorChannelInterface(const QString &path, int sessionId)
Constructor.
static LidSensorChannelInterface * controlInterface(const QString &id)
Request a control interface to the sensor.
virtual bool dataReceivedImpl()
Callback for subclasses in which they must read their expected data from socket.
static const LidSensorChannelInterface * listenInterface(const QString &id)
Request a listening interface to the sensor.
static LidSensorChannelInterface * interface(const QString &id)
Request an interface to the sensor.
Datatype for device tap events.
::LidSensorChannelInterface LidSensor
Definition: lidsensor_i.h:112