diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-03-16 14:55:30 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-05-11 14:51:35 (GMT) |
commit | 415039d9c9dab219505cc082981e2175a8977b03 (patch) | |
tree | e02514f725ad14185b2acaee3a79de1562323cd6 /doc | |
parent | d392c3073c10d053ffcd5d64d4f9d89a971fcb2d (diff) | |
download | Qt-415039d9c9dab219505cc082981e2175a8977b03.zip Qt-415039d9c9dab219505cc082981e2175a8977b03.tar.gz Qt-415039d9c9dab219505cc082981e2175a8977b03.tar.bz2 |
More documentation fixes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/qnamespace.qdoc | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/doc/src/qnamespace.qdoc b/doc/src/qnamespace.qdoc index c44b41e..c30dc88 100644 --- a/doc/src/qnamespace.qdoc +++ b/doc/src/qnamespace.qdoc @@ -2676,9 +2676,17 @@ \sa QPixmapBorders, qDrawBorderPixmap() */ -/*! \typedef Qt::GestureType +/*! \enum Qt::GestureType - A string representing a type of a gesture. + This enum lists standard gestures. + + \value UnknownGesture An unknown gesture. This enum value shouldn't be used. + \value TapGesture A single tap gesture. + \value DoubleTapGesture A double tap gesture. + \value TrippleTapGesture A tripple tap gesture. + \value TapAndHoldGesture A tap-and-hold (long tap) gesture. + \value PanGesture A pan gesture. + \value PinchGesture A pinch gesture. */ /*! @@ -2691,3 +2699,24 @@ \sa QGesture */ + +/*! + \enum Qt::DirectionType + + This enum type describes directions. This could be used by the + gesture recognizers. + + \value NoDirection Non-specific direction. + \value LeftDownDirection + \value DownLeftDirection + \value DownDirection + \value RightDownDirection + \value DownRightDirection + \value LeftDirection + \value RightDirection + \value LeftUpDirection + \value UpLeftDirection + \value UpDirection + \value RightUpDirection + \value UpRightDirection +*/ |