diff options
author | Martin Smith <msmith@trolltech.com> | 2009-06-30 10:11:32 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-06-30 10:12:26 (GMT) |
commit | 5a54b2c4c448ea22adb56bc191303abca34f230b (patch) | |
tree | 1b4941c3d502ed4f737484b3400837344f15631a /src | |
parent | a823334a1b61f7a8cf73d96cbc4cd0f71bdc3df7 (diff) | |
download | Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.zip Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.tar.gz Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.tar.bz2 |
qdoc: Added more handling of \reimp command
Also fixed a few qdoc error reports.
Task-number: 162182, 222650
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qevent.cpp | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp index 2467a62..e40ad9d 100644 --- a/src/gui/kernel/qevent.cpp +++ b/src/gui/kernel/qevent.cpp @@ -3647,12 +3647,13 @@ void QGestureEvent::acceptAll() } /*! - Sets the accept flag of the specified gesture inside the event - object, the equivalent of calling - \l{QGestureEvent::gesture()}{gesture(type)}->\l{QGesture::accept()}{accept()} + Sets the accept flag of the gesture specified by \a type. + This is equivalent to calling + \l{QGestureEvent::gesture()}{gesture(type)}-> + \l{QGesture::accept()}{accept()} - Setting the accept parameter indicates that the event receiver - wants the gesture. Unwanted gestures might be propagated to the parent + Setting the accept flag indicates that the event receiver wants + the gesture. Unwanted gestures might be propagated to the parent widget. */ void QGestureEvent::accept(Qt::GestureType type) @@ -3662,12 +3663,13 @@ void QGestureEvent::accept(Qt::GestureType type) } /*! - Sets the accept flag of the specified gesture inside the event - object, the equivalent of calling - \l{QGestureEvent::gesture()}{gesture(type)}->\l{QGesture::accept()}{accept()} + Sets the accept flag of the gesture specified by \a type. + This is equivalent to calling + \l{QGestureEvent::gesture()}{gesture(type)}-> + \l{QGesture::accept()}{accept()} - Setting the accept parameter indicates that the event receiver - wants the gesture. Unwanted gestures might be propagated to the parent + Setting the accept flag indicates that the event receiver wants + the gesture. Unwanted gestures might be propagated to the parent widget. */ void QGestureEvent::accept(const QString &type) @@ -4165,4 +4167,15 @@ QTouchEvent::TouchPoint &QTouchEvent::TouchPoint::operator=(const QTouchEvent::T return *this; } +/*! \fn QTouchEvent::DeviceType QTouchEvent::deviceType() const + Returns the touch device Type, which is of type + \l {QTouchEvent::DeviceType} {DeviceType}. + */ + +/*! \fn void QTouchEvent::setDeviceType(DeviceType deviceType) + Sets the device type to \a deviceType, which is of type + \l {QTouchEvent::DeviceType} {DeviceType}. + */ + + QT_END_NAMESPACE |