summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas McGuire <thomas.mcguire.qnx@kdab.com>2012-11-02 17:32:21 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-03 00:41:15 +0100
commit1b3b8a3619bb9fae6cf047f242398ecf0b189fc7 (patch)
treef2366d03f8ae188b71b2cbc9886364c9903b95fe
parent40efdaa48c07758233225a0483f40158da6bddf6 (diff)
Remove the QtSensors:: prefix from documentation.
This appears to be implicit. Now the property documentation is built correctly. Change-Id: I3998582fdeabf751a612c379df69f5eb41b9419d Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
-rw-r--r--examples/sensors/grue/import/main.cpp4
-rw-r--r--examples/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc6
-rw-r--r--src/imports/sensors/qmlaccelerometer.cpp10
-rw-r--r--src/imports/sensors/qmlambientlightsensor.cpp6
-rw-r--r--src/imports/sensors/qmlcompass.cpp8
-rw-r--r--src/imports/sensors/qmlgyroscope.cpp10
-rw-r--r--src/imports/sensors/qmlirproximitysensor.cpp6
-rw-r--r--src/imports/sensors/qmllightsensor.cpp8
-rw-r--r--src/imports/sensors/qmlmagnetometer.cpp14
-rw-r--r--src/imports/sensors/qmlorientationsensor.cpp6
-rw-r--r--src/imports/sensors/qmlproximitysensor.cpp6
-rw-r--r--src/imports/sensors/qmlrotationsensor.cpp12
-rw-r--r--src/imports/sensors/qmlsensor.cpp32
-rw-r--r--src/imports/sensors/qmlsensorgesture.cpp16
-rw-r--r--src/imports/sensors/qmlsensorglobal.cpp6
-rw-r--r--src/imports/sensors/qmltapsensor.cpp10
-rw-r--r--src/imports/sensors/qmltiltsensor.cpp10
-rw-r--r--src/sensors/doc/src/qtsensors5.qdoc2
18 files changed, 86 insertions, 86 deletions
diff --git a/examples/sensors/grue/import/main.cpp b/examples/sensors/grue/import/main.cpp
index db260bbd..5f6c925c 100644
--- a/examples/sensors/grue/import/main.cpp
+++ b/examples/sensors/grue/import/main.cpp
@@ -111,7 +111,7 @@ QT_END_NAMESPACE
/*
\qmltype GrueSensor
\instantiates GrueSensor
- \inherits QtSensors::Sensor
+ \inherits Sensor
\inqmlmodule Grue 1.0
\brief The GrueSensor type reports on your chance of being eaten by a Grue.
@@ -124,7 +124,7 @@ QT_END_NAMESPACE
/*
\qmltype GrueSensorReading
\instantiates GrueSensorReading
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\inqmlmodule Grue 1.0
\brief The GrueSensorReading type holds the most recent GrueSensor reading.
diff --git a/examples/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc b/examples/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc
index f6b4738c..c0e43b2a 100644
--- a/examples/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc
+++ b/examples/sensors/qmlqtsensors/doc/src/qmlqtsensors.qdoc
@@ -54,16 +54,16 @@
Reading the data can be done for each sensor type like following:
- \l {QtSensors::TiltSensor} {TiltSensor}
+ \l {TiltSensor} {TiltSensor}
\snippet qmlqtsensors/qmlqtsensors.qml 3
\snippet qmlqtsensors/qmlqtsensors.qml 4
- \l {QtSensors::AmbientLightSensor} {AmbientLightSensor}
+ \l {AmbientLightSensor} {AmbientLightSensor}
\snippet qmlqtsensors/qmlqtsensors.qml 5
- \l {QtSensors::ProximitySensor} {ProximitySensor}
+ \l {ProximitySensor} {ProximitySensor}
\snippet qmlqtsensors/qmlqtsensors.qml 6
*/
diff --git a/src/imports/sensors/qmlaccelerometer.cpp b/src/imports/sensors/qmlaccelerometer.cpp
index 3771dc3f..390f8beb 100644
--- a/src/imports/sensors/qmlaccelerometer.cpp
+++ b/src/imports/sensors/qmlaccelerometer.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The Accelerometer element reports on linear acceleration
along the X, Y and Z axes.
@@ -87,7 +87,7 @@ QSensor *QmlAccelerometer::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The AccelerometerReading element holds the most recent Accelerometer reading.
The AccelerometerReading element holds the most recent Accelerometer reading.
@@ -109,7 +109,7 @@ QmlAccelerometerReading::~QmlAccelerometerReading()
}
/*!
- \qmlproperty qreal QtSensors::AccelerometerReading::x
+ \qmlproperty qreal AccelerometerReading::x
This property holds the acceleration on the X axis.
Please see QAccelerometerReading::x for information about this property.
@@ -121,7 +121,7 @@ qreal QmlAccelerometerReading::x() const
}
/*!
- \qmlproperty qreal QtSensors::AccelerometerReading::y
+ \qmlproperty qreal AccelerometerReading::y
This property holds the acceleration on the Y axis.
Please see QAccelerometerReading::y for information about this property.
@@ -133,7 +133,7 @@ qreal QmlAccelerometerReading::y() const
}
/*!
- \qmlproperty qreal QtSensors::AccelerometerReading::z
+ \qmlproperty qreal AccelerometerReading::z
This property holds the acceleration on the Z axis.
Please see QAccelerometerReading::z for information about this property.
diff --git a/src/imports/sensors/qmlambientlightsensor.cpp b/src/imports/sensors/qmlambientlightsensor.cpp
index 9cd9b356..06dd1d59 100644
--- a/src/imports/sensors/qmlambientlightsensor.cpp
+++ b/src/imports/sensors/qmlambientlightsensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The AmbientLightSensor element repors on ambient lighting conditions.
The AmbientLightSensor element repors on ambient lighting conditions.
@@ -85,7 +85,7 @@ QSensor *QmlAmbientLightSensor::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The AmbientLightReading element holds the most AmbientLightSensor reading.
The AmbientLightReading element holds the most AmbientLightSensor reading.
@@ -107,7 +107,7 @@ QmlAmbientLightSensorReading::~QmlAmbientLightSensorReading()
}
/*!
- \qmlproperty LightLevel QtSensors::AmbientLightReading::lightLevel
+ \qmlproperty LightLevel AmbientLightReading::lightLevel
This property holds the ambient light level.
Please see QAmbientLightReading::lightLevel for information about this property.
diff --git a/src/imports/sensors/qmlcompass.cpp b/src/imports/sensors/qmlcompass.cpp
index 959cd36b..4067c412 100644
--- a/src/imports/sensors/qmlcompass.cpp
+++ b/src/imports/sensors/qmlcompass.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The Compass element reports on heading using magnetic north as a reference.
The Compass element reports on heading using magnetic north as a reference.
@@ -85,7 +85,7 @@ QSensor *QmlCompass::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The CompassReading element holds the most recent Compass reading.
The CompassReading element holds the most recent Compass reading.
@@ -107,7 +107,7 @@ QmlCompassReading::~QmlCompassReading()
}
/*!
- \qmlproperty qreal QtSensors::CompassReading::azimuth
+ \qmlproperty qreal CompassReading::azimuth
This property holds the azimuth of the device.
Please see QCompassReading::azimuth for information about this property.
@@ -119,7 +119,7 @@ qreal QmlCompassReading::azimuth() const
}
/*!
- \qmlproperty qreal QtSensors::CompassReading::calibrationLevel
+ \qmlproperty qreal CompassReading::calibrationLevel
This property holds the calibration level of the reading.
Please see QCompassReading::calibrationLevel for information about this property.
diff --git a/src/imports/sensors/qmlgyroscope.cpp b/src/imports/sensors/qmlgyroscope.cpp
index a60a7eb8..f193f437 100644
--- a/src/imports/sensors/qmlgyroscope.cpp
+++ b/src/imports/sensors/qmlgyroscope.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The Gyroscope element reports on rotational acceleration
around the X, Y and Z axes.
@@ -84,7 +84,7 @@ QSensor *QmlGyroscope::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The GyroscopeReading element holds the most recent Gyroscope reading.
The GyroscopeReading element holds the most recent Gyroscope reading.
@@ -106,7 +106,7 @@ QmlGyroscopeReading::~QmlGyroscopeReading()
}
/*!
- \qmlproperty qreal QtSensors::GyroscopeReading::x
+ \qmlproperty qreal GyroscopeReading::x
This property holds the angular velocity around the x axis.
Please see QGyroscopeReading::x for information about this property.
@@ -118,7 +118,7 @@ qreal QmlGyroscopeReading::x() const
}
/*!
- \qmlproperty qreal QtSensors::GyroscopeReading::y
+ \qmlproperty qreal GyroscopeReading::y
This property holds the angular velocity around the y axis.
Please see QGyroscopeReading::y for information about this property.
@@ -130,7 +130,7 @@ qreal QmlGyroscopeReading::y() const
}
/*!
- \qmlproperty qreal QtSensors::GyroscopeReading::z
+ \qmlproperty qreal GyroscopeReading::z
This property holds the angular velocity around the z axis.
Please see QGyroscopeReading::z for information about this property.
diff --git a/src/imports/sensors/qmlirproximitysensor.cpp b/src/imports/sensors/qmlirproximitysensor.cpp
index 00dbabb7..ca8b0b2d 100644
--- a/src/imports/sensors/qmlirproximitysensor.cpp
+++ b/src/imports/sensors/qmlirproximitysensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The IRProximitySensor element reports on infra-red reflectance values.
This element wraps the QIRProximitySensor class. Please see the documentation for
@@ -83,7 +83,7 @@ QSensor *QmlIRProximitySensor::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The IRProximityReading element holds the most recent IR proximity reading.
The IRProximityReading element holds the most recent IR proximity reading.
@@ -105,7 +105,7 @@ QmlIRProximitySensorReading::~QmlIRProximitySensorReading()
}
/*!
- \qmlproperty qreal QtSensors::IRProximityReading::reflectance
+ \qmlproperty qreal IRProximityReading::reflectance
This property holds the reflectance value.
Please see QIRProximityReading::reflectance for information about this property.
diff --git a/src/imports/sensors/qmllightsensor.cpp b/src/imports/sensors/qmllightsensor.cpp
index 7bc3477a..1c3fed2c 100644
--- a/src/imports/sensors/qmllightsensor.cpp
+++ b/src/imports/sensors/qmllightsensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The LightSensor element reports on light levels using LUX.
The LightSensor element reports on light levels using LUX.
@@ -80,7 +80,7 @@ QSensor *QmlLightSensor::sensor() const
}
/*!
- \qmlproperty qreal QtSensors::LightSensor::fieldOfView
+ \qmlproperty qreal LightSensor::fieldOfView
This property holds a value indicating the field of view.
Please see QLightSensor::fieldOfView for information about this property.
@@ -103,7 +103,7 @@ void QmlLightSensor::_update()
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The LightReading element holds the most recent LightSensor reading.
The LightReading element holds the most recent LightSensor reading.
@@ -125,7 +125,7 @@ QmlLightSensorReading::~QmlLightSensorReading()
}
/*!
- \qmlproperty qreal QtSensors::LightReading::illuminance
+ \qmlproperty qreal LightReading::illuminance
This property holds the light level.
Please see QLightReading::illuminance for information about this property.
diff --git a/src/imports/sensors/qmlmagnetometer.cpp b/src/imports/sensors/qmlmagnetometer.cpp
index f2eef9a9..1f95b3f2 100644
--- a/src/imports/sensors/qmlmagnetometer.cpp
+++ b/src/imports/sensors/qmlmagnetometer.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The Magnetometer element reports on magnetic field strength
along the Z, Y and Z axes.
@@ -82,7 +82,7 @@ QSensor *QmlMagnetometer::sensor() const
}
/*!
- \qmlproperty bool QtSensors::Magnetometer::returnGeoValues
+ \qmlproperty bool Magnetometer::returnGeoValues
This property holds a value indicating if geomagnetic values should be returned.
Please see QMagnetometer::returnGeoValues for information about this property.
@@ -105,7 +105,7 @@ void QmlMagnetometer::setReturnGeoValues(bool geo)
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The MagnetometerReading element holds the most recent Magnetometer reading.
The MagnetometerReading element holds the most recent Magnetometer reading.
@@ -127,7 +127,7 @@ QmlMagnetometerReading::~QmlMagnetometerReading()
}
/*!
- \qmlproperty qreal QtSensors::MagnetometerReading::x
+ \qmlproperty qreal MagnetometerReading::x
This property holds the raw magnetic flux density on the X axis.
Please see QMagnetometerReading::x for information about this property.
@@ -139,7 +139,7 @@ qreal QmlMagnetometerReading::x() const
}
/*!
- \qmlproperty qreal QtSensors::MagnetometerReading::y
+ \qmlproperty qreal MagnetometerReading::y
This property holds the raw magnetic flux density on the Y axis.
Please see QMagnetometerReading::y for information about this property.
@@ -151,7 +151,7 @@ qreal QmlMagnetometerReading::y() const
}
/*!
- \qmlproperty qreal QtSensors::MagnetometerReading::z
+ \qmlproperty qreal MagnetometerReading::z
This property holds the raw magnetic flux density on the Z axis.
Please see QMagnetometerReading::z for information about this property.
@@ -163,7 +163,7 @@ qreal QmlMagnetometerReading::z() const
}
/*!
- \qmlproperty qreal QtSensors::MagnetometerReading::calibrationLevel
+ \qmlproperty qreal MagnetometerReading::calibrationLevel
This property holds the accuracy of the reading.
Please see QMagnetometerReading::calibrationLevel for information about this property.
diff --git a/src/imports/sensors/qmlorientationsensor.cpp b/src/imports/sensors/qmlorientationsensor.cpp
index a51dd87c..371ca699 100644
--- a/src/imports/sensors/qmlorientationsensor.cpp
+++ b/src/imports/sensors/qmlorientationsensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The OrientationSensor element reports device orientation.
The OrientationSensor element reports device orientation.
@@ -85,7 +85,7 @@ QSensor *QmlOrientationSensor::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The OrientationReading element holds the most recent OrientationSensor reading.
The OrientationReading element holds the most recent OrientationSensor reading.
@@ -107,7 +107,7 @@ QmlOrientationSensorReading::~QmlOrientationSensorReading()
}
/*!
- \qmlproperty Orientation QtSensors::OrientationReading::orientation
+ \qmlproperty Orientation OrientationReading::orientation
This property holds the orientation of the device.
Please see QOrientationReading::orientation for information about this property.
diff --git a/src/imports/sensors/qmlproximitysensor.cpp b/src/imports/sensors/qmlproximitysensor.cpp
index 79a3b651..66e66482 100644
--- a/src/imports/sensors/qmlproximitysensor.cpp
+++ b/src/imports/sensors/qmlproximitysensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The ProximitySensor element reports on object proximity.
The ProximitySensor element reports on object proximity.
@@ -85,7 +85,7 @@ QSensor *QmlProximitySensor::sensor() const
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The ProximityReading element holds the most recent ProximitySensor reading.
The ProximityReading element holds the most recent ProximitySensor reading.
@@ -107,7 +107,7 @@ QmlProximitySensorReading::~QmlProximitySensorReading()
}
/*!
- \qmlproperty bool QtSensors::ProximityReading::near
+ \qmlproperty bool ProximityReading::near
This property holds a value indicating if something is near.
Please see QProximityReading::near for information about this property.
diff --git a/src/imports/sensors/qmlrotationsensor.cpp b/src/imports/sensors/qmlrotationsensor.cpp
index cb7d47a6..e58a3f8c 100644
--- a/src/imports/sensors/qmlrotationsensor.cpp
+++ b/src/imports/sensors/qmlrotationsensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The RotationSensor element reports on device rotation
around the X, Y and Z axes.
@@ -82,7 +82,7 @@ QSensor *QmlRotationSensor::sensor() const
}
/*!
- \qmlproperty qreal QtSensors::RotationSensor::hasZ
+ \qmlproperty qreal RotationSensor::hasZ
This property holds a value indicating if the z angle is available.
Please see QRotationSensor::hasZ for information about this property.
@@ -103,7 +103,7 @@ void QmlRotationSensor::_update()
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The RotationReading element holds the most recent RotationSensor reading.
The RotationReading element holds the most recent RotationSensor reading.
@@ -125,7 +125,7 @@ QmlRotationSensorReading::~QmlRotationSensorReading()
}
/*!
- \qmlproperty qreal QtSensors::RotationReading::x
+ \qmlproperty qreal RotationReading::x
This property holds the rotation around the x axis.
Please see QRotationReading::x for information about this property.
@@ -137,7 +137,7 @@ qreal QmlRotationSensorReading::x() const
}
/*!
- \qmlproperty qreal QtSensors::RotationReading::y
+ \qmlproperty qreal RotationReading::y
This property holds the rotation around the y axis.
Please see QRotationReading::y for information about this property.
@@ -149,7 +149,7 @@ qreal QmlRotationSensorReading::y() const
}
/*!
- \qmlproperty qreal QtSensors::RotationReading::z
+ \qmlproperty qreal RotationReading::z
This property holds the rotation around the z axis.
Please see QRotationReading::z for information about this property.
diff --git a/src/imports/sensors/qmlsensor.cpp b/src/imports/sensors/qmlsensor.cpp
index cdf522f9..ec1b0691 100644
--- a/src/imports/sensors/qmlsensor.cpp
+++ b/src/imports/sensors/qmlsensor.cpp
@@ -73,7 +73,7 @@ QmlSensor::~QmlSensor()
}
/*!
- \qmlproperty string QtSensors::Sensor::identifier
+ \qmlproperty string Sensor::identifier
This property holds the backend identifier for the sensor.
Please see QSensor::identifier for information about this property.
@@ -92,7 +92,7 @@ void QmlSensor::setIdentifier(const QString &identifier)
}
/*!
- \qmlproperty string QtSensors::Sensor::type
+ \qmlproperty string Sensor::type
This property holds the type of the sensor.
*/
@@ -102,7 +102,7 @@ QString QmlSensor::type() const
}
/*!
- \qmlproperty bool QtSensors::Sensor::connectedToBackend
+ \qmlproperty bool Sensor::connectedToBackend
This property holds a value indicating if the sensor has connected to a backend.
Please see QSensor::connectedToBackend for information about this property.
@@ -114,7 +114,7 @@ bool QmlSensor::isConnectedToBackend() const
}
/*!
- \qmlproperty bool QtSensors::Sensor::busy
+ \qmlproperty bool Sensor::busy
This property holds a value to indicate if the sensor is busy.
Please see QSensor::busy for information about this property.
@@ -126,7 +126,7 @@ bool QmlSensor::isBusy() const
}
/*!
- \qmlproperty bool QtSensors::Sensor::active
+ \qmlproperty bool Sensor::active
This property holds a value to indicate if the sensor is active.
Please see QSensor::active for information about this property.
@@ -154,7 +154,7 @@ bool QmlSensor::isActive() const
}
/*!
- \qmlproperty bool QtSensors::Sensor::alwaysOn
+ \qmlproperty bool Sensor::alwaysOn
This property holds a value to indicate if the sensor should remain running when the screen is off.
Please see QSensor::alwaysOn for information about this property.
@@ -171,7 +171,7 @@ void QmlSensor::setAlwaysOn(bool alwaysOn)
}
/*!
- \qmlproperty list<Range> QtSensors::Sensor::availableDataRates
+ \qmlproperty list<Range> Sensor::availableDataRates
This property holds the data rates that the sensor supports.
Please see QSensor::availableDataRates for information about this property.
@@ -192,7 +192,7 @@ QQmlListProperty<QmlSensorRange> QmlSensor::availableDataRates() const
}
/*!
- \qmlproperty int QtSensors::Sensor::dataRate
+ \qmlproperty int Sensor::dataRate
This property holds the data rate that the sensor should be run at.
Please see QSensor::dataRate for information about this property.
@@ -212,7 +212,7 @@ void QmlSensor::setDataRate(int rate)
}
/*!
- \qmlproperty list<OutputRange> QtSensors::Sensor::outputRanges
+ \qmlproperty list<OutputRange> Sensor::outputRanges
This property holds a list of output ranges the sensor supports.
Please see QSensor::outputRanges for information about this property.
@@ -234,7 +234,7 @@ QQmlListProperty<QmlSensorOutputRange> QmlSensor::outputRanges() const
}
/*!
- \qmlproperty int QtSensors::Sensor::outputRange
+ \qmlproperty int Sensor::outputRange
This property holds the output range in use by the sensor.
Please see QSensor::outputRange for information about this property.
@@ -255,7 +255,7 @@ void QmlSensor::setOutputRange(int index)
}
/*!
- \qmlproperty string QtSensors::Sensor::description
+ \qmlproperty string Sensor::description
This property holds a descriptive string for the sensor.
*/
@@ -265,7 +265,7 @@ QString QmlSensor::description() const
}
/*!
- \qmlproperty int QtSensors::Sensor::error
+ \qmlproperty int Sensor::error
This property holds the last error code set on the sensor.
*/
@@ -275,7 +275,7 @@ int QmlSensor::error() const
}
/*!
- \qmlproperty SensorReading QtSensors::Sensor::reading
+ \qmlproperty SensorReading Sensor::reading
This property holds the reading class.
Please see QSensor::reading for information about this property.
@@ -288,7 +288,7 @@ QmlSensorReading *QmlSensor::reading() const
}
/*!
- \qmlmethod bool QtSensors::Sensor::start()
+ \qmlmethod bool Sensor::start()
Start retrieving values from the sensor. Returns true if the sensor was started, false otherwise.
Please see QSensor::start() for information.
@@ -301,7 +301,7 @@ bool QmlSensor::start()
}
/*!
- \qmlmethod bool QtSensors::Sensor::stop()
+ \qmlmethod bool Sensor::stop()
Stop retrieving values from the sensor.
Please see QSensor::stop() for information.
@@ -402,7 +402,7 @@ QmlSensorReading::~QmlSensorReading()
}
/*!
- \qmlproperty quint64 QtSensors::SensorReading::timestamp
+ \qmlproperty quint64 SensorReading::timestamp
A timestamp for the reading.
Please see QSensorReading::timestamp for information about this property.
diff --git a/src/imports/sensors/qmlsensorgesture.cpp b/src/imports/sensors/qmlsensorgesture.cpp
index 2fae55e3..92af3f32 100644
--- a/src/imports/sensors/qmlsensorgesture.cpp
+++ b/src/imports/sensors/qmlsensorgesture.cpp
@@ -117,7 +117,7 @@ void QmlSensorGesture::componentComplete()
*/
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::availableGestures
+ \qmlproperty stringlist SensorGesture::availableGestures
This property can be used to determine all available gestures on the system.
*/
QStringList QmlSensorGesture::availableGestures()
@@ -126,13 +126,13 @@ QStringList QmlSensorGesture::availableGestures()
}
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::gestures
+ \qmlproperty stringlist SensorGesture::gestures
Set this property to a list of the gestures that the application is interested in detecting.
This property cannot be changed while the type is enabled.
The properties validGestures and invalidGestures will be set as appropriate immediately.
To determine all available getures on the system please use the
- \l {QtSensors::SensorGesture::availableGestures} {availableGestures} property.
+ \l {SensorGesture::availableGestures} {availableGestures} property.
\sa {QtSensorGestures Plugins}
*/
@@ -157,7 +157,7 @@ void QmlSensorGesture::setGestures(const QStringList& value)
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::validGestures
+ \qmlproperty stringlist SensorGesture::validGestures
This property holds the requested gestures that were found on the system.
*/
QStringList QmlSensorGesture::validGestures() const
@@ -168,7 +168,7 @@ QStringList QmlSensorGesture::validGestures() const
}
/*!
- \qmlproperty stringlist QtSensors::SensorGesture::invalidGestures
+ \qmlproperty stringlist SensorGesture::invalidGestures
This property holds the requested gestures that were not found on the system.
*/
QStringList QmlSensorGesture::invalidGestures() const
@@ -179,10 +179,10 @@ QStringList QmlSensorGesture::invalidGestures() const
}
/*!
- \qmlproperty bool QtSensors::SensorGesture::enabled
+ \qmlproperty bool SensorGesture::enabled
This property can be used to activate or deactivate the sensor gesture.
Default value is false;
- \sa {QtSensors::SensorGesture::detected}, {detected}
+ \sa {SensorGesture::detected}, {detected}
*/
bool QmlSensorGesture::enabled() const
{
@@ -211,7 +211,7 @@ void QmlSensorGesture::setEnabled(bool value)
}
/*!
- \qmlsignal QtSensors::SensorGesture::detected(string gesture)
+ \qmlsignal SensorGesture::detected(string gesture)
This signal is emitted whenever a gesture is detected.
The gesture parameter contains the gesture that was detected.
*/
diff --git a/src/imports/sensors/qmlsensorglobal.cpp b/src/imports/sensors/qmlsensorglobal.cpp
index 9f26e419..1cba256a 100644
--- a/src/imports/sensors/qmlsensorglobal.cpp
+++ b/src/imports/sensors/qmlsensorglobal.cpp
@@ -78,7 +78,7 @@ QmlSensorGlobal::~QmlSensorGlobal()
}
/*!
- \qmlmethod list<string> QtSensors::SensorGlobal::sensorTypes()
+ \qmlmethod list<string> SensorGlobal::sensorTypes()
Returns a list of the sensor types that have been registered.
Please see QSensor::sensorTypes() for information.
@@ -92,7 +92,7 @@ QStringList QmlSensorGlobal::sensorTypes() const
}
/*!
- \qmlmethod list<string> QtSensors::SensorGlobal::sensorsForType(type)
+ \qmlmethod list<string> SensorGlobal::sensorsForType(type)
Returns a list of the sensor identifiers that have been registered for \a type.
Please see QSensor::sensorsForType() for information.
@@ -106,7 +106,7 @@ QStringList QmlSensorGlobal::sensorsForType(const QString &type) const
}
/*!
- \qmlmethod string QtSensors::SensorGlobal::defaultSensorForType(type)
+ \qmlmethod string SensorGlobal::defaultSensorForType(type)
Returns the default sensor identifier that has been registered for \a type.
Please see QSensor::defaultSensorForType() for information.
diff --git a/src/imports/sensors/qmltapsensor.cpp b/src/imports/sensors/qmltapsensor.cpp
index 6e00f386..65afcb59 100644
--- a/src/imports/sensors/qmltapsensor.cpp
+++ b/src/imports/sensors/qmltapsensor.cpp
@@ -48,7 +48,7 @@
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The TapSensor element reports tap and double tap events
along the X, Y and Z axes.
@@ -82,7 +82,7 @@ QSensor *QmlTapSensor::sensor() const
}
/*!
- \qmlproperty bool QtSensors::TapSensor::returnDoubleTapEvents
+ \qmlproperty bool TapSensor::returnDoubleTapEvents
This property holds a value indicating if double tap events should be reported.
Please see QTapSensor::returnDoubleTapEvents for information about this property.
@@ -106,7 +106,7 @@ void QmlTapSensor::setReturnDoubleTapEvents(bool ret)
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The TapReading element holds the most recent TapSensor reading.
The TapReading element holds the most recent TapSensor reading.
@@ -128,7 +128,7 @@ QmlTapSensorReading::~QmlTapSensorReading()
}
/*!
- \qmlproperty TapDirection QtSensors::TapReading::tapDirection
+ \qmlproperty TapDirection TapReading::tapDirection
This property holds the direction of the tap.
Please see QTapReading::tapDirection for information about this property.
@@ -150,7 +150,7 @@ QTapReading::TapDirection QmlTapSensorReading::tapDirection() const
}
/*!
- \qmlproperty bool QtSensors::TapReading::doubleTap
+ \qmlproperty bool TapReading::doubleTap
This property holds a value indicating if there was a single or double tap.
Please see QTapReading::doubleTap for information about this property.
diff --git a/src/imports/sensors/qmltiltsensor.cpp b/src/imports/sensors/qmltiltsensor.cpp
index 34a3bc2f..08f42312 100644
--- a/src/imports/sensors/qmltiltsensor.cpp
+++ b/src/imports/sensors/qmltiltsensor.cpp
@@ -51,7 +51,7 @@ QT_END_NAMESPACE
\ingroup qml-sensors_type
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::Sensor
+ \inherits Sensor
\brief The TiltSensor element reports tilt events
along the X and Y axes.
@@ -84,7 +84,7 @@ QSensor *QmlTiltSensor::sensor() const
}
/*!
- \qmlmethod QtSensors::TiltSensor::calibrate()
+ \qmlmethod TiltSensor::calibrate()
Calibrate the tilt sensor.
Please see QTiltSensor::calibrate() for information about this property.
@@ -100,7 +100,7 @@ void QmlTiltSensor::calibrate()
\ingroup qml-sensors_reading
\inqmlmodule QtSensors 5.0
\since QtSensors 5.0
- \inherits QtSensors::SensorReading
+ \inherits SensorReading
\brief The TiltReading element holds the most recent TiltSensor reading.
The TiltReading element holds the most recent TiltSensor reading.
@@ -122,7 +122,7 @@ QmlTiltSensorReading::~QmlTiltSensorReading()
}
/*!
- \qmlproperty qreal QtSensors::TiltReading::yRotation
+ \qmlproperty qreal TiltReading::yRotation
This property holds the amount of tilt on the Y axis.
Please see QTiltReading::yRotation for information about this property.
@@ -134,7 +134,7 @@ qreal QmlTiltSensorReading::yRotation() const
}
/*!
- \qmlproperty qreal QtSensors::TiltReading::xRotation
+ \qmlproperty qreal TiltReading::xRotation
This property holds the amount of tilt on the X axis.
Please see QTiltReading::xRotation for information about this property.
diff --git a/src/sensors/doc/src/qtsensors5.qdoc b/src/sensors/doc/src/qtsensors5.qdoc
index 71b62dae..90af5f61 100644
--- a/src/sensors/doc/src/qtsensors5.qdoc
+++ b/src/sensors/doc/src/qtsensors5.qdoc
@@ -65,7 +65,7 @@
These types represent specific types of sensors.
- Note that most properties come from the abstract \l{QtSensors::Sensor}{Sensor} element.
+ Note that most properties come from the abstract \l{Sensor}{Sensor} element.
\annotatedlist qml-sensors_type