QHolsterReading

#include <QtSensors/QHolsterReading>

QtSensors

The QHolsterReading class holds readings from the holster sensor.

Inheritance

QSensorReading
QHolsterReading

Properties Index

boolholstered [read-only]
QtMobility::qtimestamptimestamp [read-only]Inherited

Public Functions Index

QHolsterReading (QObject *parent=0)
virtual ~QHolsterReading ()
virtual voidcopyValuesFrom (QSensorReading *other)
boolholstered () const
voidsetHolstered (bool holstered)
voidsetTimestamp (qtimestamp timestamp)Inherited
qtimestamptimestamp () const Inherited
QVariantvalue (int index) const Inherited
intvalueCount () const Inherited

Protected Functions Index

Only has inherited protected functions

QScopedPointer< QSensorReadingPrivate > *d_ptr ()Inherited
QSensorReading (QObject *parent, QSensorReadingPrivate *d)Inherited

Properties

bool holstered[read-only]

A value indicating whether the device is holstered.

See:

{QHolsterReading Units}

QtMobility::qtimestamp timestampInherited[read-only]

the timestamp of the reading.

Returns the timestamp of the reading.

Since:

1.0

,

1.0

Public Functions

QHolsterReading (

virtual~QHolsterReading ()

Destructor.

virtual void copyValuesFrom (

bool holstered ()

void setHolstered (
  • boolholstered)

Sets the holstered value to holstered.

void setTimestamp (Inherited

Sets the timestamp of the reading.

Since:

1.0

qtimestamp timestamp ()Inherited

QVariant value (
  • intindex)
Inherited

Returns the value of the property at index.

Note that this function is slower than calling the data function directly.

Here is an example of getting a property via the different mechanisms available.

Accessing directly provides the best performance but requires compile-time knowledge of the data you are accessing.

QAccelerometerReading *reading = ...;
qreal x = reading->x();

You can also access a property by name. To do this you must call QObject::property().

qreal x = reading->property("x").value<qreal>();

Finally, you can access values via numeric index.

qreal x = reading->value(0).value<qreal>();

Note that value() can only access properties declared with Q_PROPERTY() in sub-classes of QSensorReading.

See:

valueCount(), QObject::property()

Since:

1.0

int valueCount ()Inherited

Returns the number of extra properties that the reading has.

Note that this does not count properties declared in QSensorReading.

As an example, this returns 3 for QAccelerometerReading because there are 3 properties defined in that class.
Since:

1.0

Protected Functions

(Only has inherited protected functions)

QScopedPointer< QSensorReadingPrivate > * d_ptr ()Inherited

QSensorReading (
  • QObject *parent,
  • QSensorReadingPrivate *d )
Inherited