sensorfw
lidsensor_i.h
Go to the documentation of this file.
1 
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 
43 public:
47  static const char* staticInterfaceName;
48 
56  static AbstractSensorChannelInterface* factoryMethod(const QString& id, int sessionId);
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 
99 protected:
100  virtual bool dataReceivedImpl();
101 
102 Q_SIGNALS:
108  void lidChanged(const LidData& value);
109 };
110 
111 namespace local {
112  typedef ::LidSensorChannelInterface LidSensor;
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
static LidSensorChannelInterface * controlInterface(const QString &id)
Request a control interface to the sensor.
static LidSensorChannelInterface * interface(const QString &id)
Request an interface to the sensor.
static const LidSensorChannelInterface * listenInterface(const QString &id)
Request a listening interface to the sensor.
void lidChanged(const LidData &value)
Sent when measured ambient light intensity has changed.
LidSensorChannelInterface(const QString &path, int sessionId)
Constructor.
static AbstractSensorChannelInterface * factoryMethod(const QString &id, int sessionId)
Create new instance of the class.
virtual bool dataReceivedImpl()
Callback for subclasses in which they must read their expected data from socket.
Datatype for device tap events.
::LidSensorChannelInterface LidSensor
Definition: lidsensor_i.h:112