QAccelerometerReading

#include <QtSensors/QAccelerometerReading>

QtSensors

Since:

1.0

The QAccelerometerReading class reports on linear acceleration along the X, Y and Z axes.

Inheritance

QSensorReading
QAccelerometerReading

Properties Index

qrealx [read-only]
qrealy [read-only]
qrealz [read-only]
QtMobility::qtimestamptimestamp [read-only]Inherited

Public Functions Index

QAccelerometerReading (QObject *parent=0)
virtual ~QAccelerometerReading ()
virtual voidcopyValuesFrom (QSensorReading *other)
qrealx () const
voidsetX (qreal x)
qrealy () const
voidsetY (qreal y)
qrealz () const
voidsetZ (qreal z)
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

qreal x[read-only]

the acceleration on the X axis.

The scale of the values is meters per second squared.
See:

{QAccelerometerReading Units}

Since:

1.0

qreal y[read-only]

the acceleration on the Y axis.

The scale of the values is meters per second squared.
See:

{QAccelerometerReading Units}

Since:

1.0

qreal z[read-only]

the acceleration on the Z axis.

The scale of the values is meters per second squared.
See:

{QAccelerometerReading Units}

Since:

1.0

QtMobility::qtimestamp timestampInherited[read-only]

the timestamp of the reading.

Returns the timestamp of the reading.

Since:

1.0

,

1.0

Public Functions

QAccelerometerReading (

virtual~QAccelerometerReading ()

Destructor.

virtual void copyValuesFrom (

qreal x ()

void setX (
  • qrealx)

Sets the acceleration on the X axis to x.

Since:

1.0

qreal y ()

void setY (
  • qrealy)

Sets the acceleration on the Y axis to y.

Since:

1.0

qreal z ()

void setZ (
  • qrealz)

Sets the acceleration on the Z axis to z.

Since:

1.0

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