summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qgesture.cpp
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-03-16 13:56:24 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-05-11 14:51:34 (GMT)
commitd392c3073c10d053ffcd5d64d4f9d89a971fcb2d (patch)
treeb0bc9f3b46a3b76051d45b72e984c177f17bb66d /src/gui/kernel/qgesture.cpp
parentd8e4d20f3d225a3c29168d7a9440f2efc129ea8e (diff)
downloadQt-d392c3073c10d053ffcd5d64d4f9d89a971fcb2d.zip
Qt-d392c3073c10d053ffcd5d64d4f9d89a971fcb2d.tar.gz
Qt-d392c3073c10d053ffcd5d64d4f9d89a971fcb2d.tar.bz2
Extended the gesture documentation.
Also made some small fixes that noticed while was writing a doc.
Diffstat (limited to 'src/gui/kernel/qgesture.cpp')
-rw-r--r--src/gui/kernel/qgesture.cpp124
1 files changed, 116 insertions, 8 deletions
diff --git a/src/gui/kernel/qgesture.cpp b/src/gui/kernel/qgesture.cpp
index b2d357c..b2bb859 100644
--- a/src/gui/kernel/qgesture.cpp
+++ b/src/gui/kernel/qgesture.cpp
@@ -46,11 +46,58 @@ QT_BEGIN_NAMESPACE
QString qt_getStandardGestureTypeName(Qt::GestureType type);
+/*!
+ \class QGesture
+
+ \brief The QGesture class represents a gesture, containing all
+ properties that describe a gesture.
+
+ The widget receives a QGestureEvent with a list of QGesture
+ objects that represent gestures that are occuring on it. The class
+ has a list of properties that can be queried by the user to get
+ some gesture-specific arguments (i.e. position of the tap in the
+ DoubleTap gesture).
+
+ When creating custom gesture recognizers, they might add new
+ properties to the gesture object, or custom gesture developers
+ might subclass the QGesture objects to provide some extended
+ information. However, if the gesture developer wants to add a new
+ property to the gesture object that describe coordinate (like a
+ QPoint or QRect), it is required to subclass the QGesture and
+ re-implement the \l{QGesture::}{translate} function to make sure
+ the coordinates are translated properly when the gesture event is
+ propagated to parent widgets.
+
+ \sa QGestureEvent, QGestureRecognizer
+*/
+
+/*!
+ Creates a new gesture object of type \a type in a \a state and
+ marks it as a child of \a parent.
+
+ Usually QGesture objects should only be contructed by the
+ QGestureRecognizer classes.
+*/
QGesture::QGesture(QObject *parent, const QString &type, Qt::GestureState state)
: QObject(*new QGesturePrivate, parent), gestureType_(type), gestureState_(state)
{
}
+/*!
+ Creates a new gesture object of type \a type in a \a state and
+ marks it as a child of \a parent.
+
+ This constructor also fills some basic information about the
+ gesture like a \a startPos which describes the start point of the
+ gesture, \a lastPos - last point where the gesture happened, \a
+ pos - a current point, \a rect - a bounding rect of the gesture,
+ \a hotSpot - a center point of the gesture, \a startTime - a time
+ when the gesture has started, \a duration - how long the gesture
+ is going on.
+
+ Usually QGesture objects should only be contructed by the
+ QGestureRecognizer classes.
+*/
QGesture::QGesture(QObject *parent, const QString &type, const QPoint &startPos,
const QPoint &lastPos, const QPoint &pos, const QRect &rect,
const QPoint &hotSpot, const QDateTime &startTime,
@@ -60,51 +107,105 @@ QGesture::QGesture(QObject *parent, const QString &type, const QPoint &startPos,
d_func()->init(startPos, lastPos, pos, rect, hotSpot, startTime, duration);
}
+/*! \internal
+*/
QGesture::QGesture(QGesturePrivate &dd, QObject *parent, const QString &type,
Qt::GestureState state)
: QObject(dd, parent), gestureType_(type), gestureState_(state)
{
}
+/*!
+ Destroys the gesture object.
+*/
QGesture::~QGesture()
{
}
+/*!
+ Translates the internal gesture properties that represent
+ coordinates by \a offset.
+
+ Custom gesture recognizer developer have to re-implement this
+ function if they want to store custom properties that represent
+ coordinates.
+*/
+void QGesture::translate(const QPoint &offset)
+{
+ Q_D(QGesture);
+ d->rect.translate(offset);
+ d->hotSpot += offset;
+ d->startPos += offset;
+ d->lastPos += offset;
+ d->pos += offset;
+}
+
+/*!
+ Returns a bounding rect of a gesture.
+*/
QRect QGesture::rect() const
{
return d_func()->rect;
}
+/*!
+ Returns a center point of a gesture.
+*/
QPoint QGesture::hotSpot() const
{
return d_func()->hotSpot;
}
+/*!
+ Returns a time when the gesture has started.
+*/
QDateTime QGesture::startTime() const
{
return d_func()->startTime;
}
+/*!
+ Returns a duration time of a gesture.
+*/
uint QGesture::duration() const
{
return d_func()->duration;
}
+/*!
+ Returns the start position of the pointer.
+*/
QPoint QGesture::startPos() const
{
return d_func()->startPos;
}
+/*!
+ Returns the last recorded position of the pointer.
+*/
QPoint QGesture::lastPos() const
{
return d_func()->lastPos;
}
+/*!
+ Returns the position of the pointer.
+*/
QPoint QGesture::pos() const
{
return d_func()->pos;
}
+/*!
+ \class QPannableGesture
+
+ \brief The QPannableGesture class represents a Pan gesture,
+ providing additional information related to panning.
+
+ This class is provided for convenience, panning direction
+ information is also contained in the QGesture object in it's
+ properties.
+*/
QPannableGesture::QPannableGesture(QObject *parent, const QPoint &startPos,
const QPoint &lastPos, const QPoint &pos, const QRect &rect,
const QPoint &hotSpot, const QDateTime &startTime,
@@ -114,24 +215,31 @@ QPannableGesture::QPannableGesture(QObject *parent, const QPoint &startPos,
{
Q_D(QPannableGesture);
d->init(startPos, lastPos, pos, rect, hotSpot, startTime, duration);
- d->lastDirection = QPannableGesture::None;
- d->direction = QPannableGesture::None;
+ setProperty("lastDirection", QVariant::fromValue(Qt::NoDirection));
+ setProperty("direction", QVariant::fromValue(Qt::NoDirection));
}
+/*!
+ Destroys the QPannableGesture object.
+*/
QPannableGesture::~QPannableGesture()
{
}
-QPannableGesture::DirectionType QPannableGesture::lastDirection() const
+/*!
+ Returns the last recorded direction of panning.
+*/
+Qt::DirectionType QPannableGesture::lastDirection() const
{
- Q_D(const QPannableGesture);
- return d->lastDirection;
+ return qVariantValue<Qt::DirectionType>(property("lastDirection"));
}
-QPannableGesture::DirectionType QPannableGesture::direction() const
+/*!
+ Returns the current direction of panning.
+*/
+Qt::DirectionType QPannableGesture::direction() const
{
- Q_D(const QPannableGesture);
- return d->direction;
+ return qVariantValue<Qt::DirectionType>(property("direction"));
}
QT_END_NAMESPACE