summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qabstractphysicaldevice.cpp
diff options
context:
space:
mode:
authorTomi Korpipää <tomi.korpipaa@theqtcompany.com>2016-05-25 07:00:50 +0300
committerSean Harmer <sean.harmer@kdab.com>2016-05-25 19:52:23 +0000
commite7171fea8981c695274746449d98f1243e1f6a0b (patch)
treea4ffb6997aafef10e3665570f91a18241221d5fa /src/input/frontend/qabstractphysicaldevice.cpp
parent78ce47be07d077f26a1542c8cd84b8f788834e1a (diff)
Add doc skeleton for Qt3DInput
Conflicts: src/input/frontend/qanalogaxisinput.cpp src/input/frontend/qaxis.cpp src/input/frontend/qaxissetting.cpp src/input/frontend/qbuttonaxisinput.cpp src/input/frontend/qinputsettings.cpp src/input/frontend/qmousedevice.cpp Change-Id: Ic3e06179f745520d9c49af8d8242af360cbd20d8 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend/qabstractphysicaldevice.cpp')
-rw-r--r--src/input/frontend/qabstractphysicaldevice.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/input/frontend/qabstractphysicaldevice.cpp b/src/input/frontend/qabstractphysicaldevice.cpp
index 98313773e..4984b4300 100644
--- a/src/input/frontend/qabstractphysicaldevice.cpp
+++ b/src/input/frontend/qabstractphysicaldevice.cpp
@@ -82,7 +82,7 @@ QAbstractPhysicalDevicePrivate::~QAbstractPhysicalDevicePrivate()
*/
/*!
- Constructs a new QAbstractPhysicalDevice instance with parent \a parent.
+ Constructs a new QAbstractPhysicalDevice instance with \a parent.
*/
QAbstractPhysicalDevice::QAbstractPhysicalDevice(Qt3DCore::QNode *parent)
: Qt3DCore::QNode(*new QAbstractPhysicalDevicePrivate, parent)
@@ -100,7 +100,7 @@ QAbstractPhysicalDevice::QAbstractPhysicalDevice(QAbstractPhysicalDevicePrivate
}
/*!
- Return the number of axis this device has.
+ \return the number of axis this device has.
*/
int QAbstractPhysicalDevice::axisCount() const
{
@@ -109,7 +109,7 @@ int QAbstractPhysicalDevice::axisCount() const
}
/*!
- Return the number of buttons this device has.
+ \return the number of buttons this device has.
*/
int QAbstractPhysicalDevice::buttonCount() const
{
@@ -118,7 +118,7 @@ int QAbstractPhysicalDevice::buttonCount() const
}
/*!
- Return a list of the names of device's axis.
+ \return a list of the names of device's axis.
*/
QStringList QAbstractPhysicalDevice::axisNames() const
{
@@ -127,7 +127,7 @@ QStringList QAbstractPhysicalDevice::axisNames() const
}
/*!
- Return a list of the names of device's buttons.
+ \return a list of the names of device's buttons.
*/
QStringList QAbstractPhysicalDevice::buttonNames() const
{
@@ -136,7 +136,7 @@ QStringList QAbstractPhysicalDevice::buttonNames() const
}
/*!
- Return the integer identifer of the axis /a name or -1 if it does not exist on this device.
+ \return the integer identifer of the axis \a name or -1 if it does not exist on this device.
*/
int QAbstractPhysicalDevice::axisIdentifier(const QString &name) const
{
@@ -148,7 +148,7 @@ int QAbstractPhysicalDevice::axisIdentifier(const QString &name) const
}
/*!
- Return the integer identifer of the button /a name or -1 if it does not exist on this device.
+ \return the integer identifer of the button \a name or -1 if it does not exist on this device.
*/
int QAbstractPhysicalDevice::buttonIdentifier(const QString &name) const
{
@@ -160,7 +160,7 @@ int QAbstractPhysicalDevice::buttonIdentifier(const QString &name) const
}
/*!
- Add the axisSetting /a axisSetting to this device.
+ Add the axisSetting \a axisSetting to this device.
*/
void QAbstractPhysicalDevice::addAxisSetting(QAxisSetting *axisSetting)
{
@@ -177,7 +177,7 @@ void QAbstractPhysicalDevice::addAxisSetting(QAxisSetting *axisSetting)
}
/*!
- Remove the axisSetting /a axisSetting to this device.
+ Remove the axisSetting \a axisSetting to this device.
*/
void QAbstractPhysicalDevice::removeAxisSetting(QAxisSetting *axisSetting)
{
@@ -194,7 +194,7 @@ void QAbstractPhysicalDevice::removeAxisSetting(QAxisSetting *axisSetting)
}
/*!
- Return the axisSettings /ascociated with this device.
+ \return the axisSettings associated with this device.
*/
QVector<QAxisSetting *> QAbstractPhysicalDevice::axisSettings() const
{