summaryrefslogtreecommitdiffstats
path: root/doc/src/frameworks-technologies
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-09-15 12:55:13 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-09-15 12:56:16 (GMT)
commit85c79e53208b0171198cb748ad85b5be1af7a558 (patch)
treee786d2d4d295576fac010e1d2e91af439f62a8d2 /doc/src/frameworks-technologies
parent59aa130bb9209aa1809c7bd31f694265eeb1baf1 (diff)
downloadQt-85c79e53208b0171198cb748ad85b5be1af7a558.zip
Qt-85c79e53208b0171198cb748ad85b5be1af7a558.tar.gz
Qt-85c79e53208b0171198cb748ad85b5be1af7a558.tar.bz2
doc: Fixed some qdoc errors.
Diffstat (limited to 'doc/src/frameworks-technologies')
-rw-r--r--doc/src/frameworks-technologies/gestures.qdoc41
1 files changed, 21 insertions, 20 deletions
diff --git a/doc/src/frameworks-technologies/gestures.qdoc b/doc/src/frameworks-technologies/gestures.qdoc
index 57f25ba..a0eab21 100644
--- a/doc/src/frameworks-technologies/gestures.qdoc
+++ b/doc/src/frameworks-technologies/gestures.qdoc
@@ -58,21 +58,21 @@
\section1 Overview
- QGesture is the central class in Qt's gesture framework, providing the API
- used by classes that represent specific gestures, such as QPanGesture,
- QPinchGesture, and QSwipeGesture. These standard classes are ready to use,
- and each exposes functions and properties that give gesture-specific
- information about the user's input. This is described in the
- \l{#Using Standard Gestures}{Using Standard Gestures} section.
-
- QGesture is also designed to be subclassed and extended so that support for
- new gestures can be implemented by developers. Adding support for a new
- gesture involves implementing code to recognize the gesture from incoming
- events. This is described in the
- \l{#Creating Your Own Gesture Recognizer}{Creating Your Own Gesture Recognizer}
- section.
-
- \section1 Using Standard Gestures with Widgets
+ QGesture is the central class in Qt's gesture framework, providing
+ the API used by classes that represent specific gestures, such as
+ QPanGesture, QPinchGesture, and QSwipeGesture. These standard
+ classes are ready to use, and each exposes functions and
+ properties that give gesture-specific information about the user's
+ input. This is described in the section \l{Using Standard Gestures
+ With Widgets}.
+
+ QGesture is also designed to be subclassed and extended so that
+ support for new gestures can be implemented by developers. Adding
+ support for a new gesture involves implementing code to recognize
+ the gesture from incoming events. This is described in the section
+ \l{Creating Your Own Gesture Recognizer}.
+
+ \section1 Using Standard Gestures With Widgets
Gesture objects are applied directly to widgets and other controls that accept
user input \mdash these are the \e{target objects}. When a gesture object is
@@ -91,10 +91,11 @@
\snippet examples/gestures/imageviewer/imagewidget.cpp connect swipe gesture
- Here, the \l{QGesture::}{triggered()} signal is used to inform the application
- that a gesture was used. More precise monitoring of a gesture can be implemented
- by connecting its \l{QGesture::}{started()}, \l{QGesture::}{canceled()} and
- \l{QGesture::}{finished()} signals to slots.
+ Here, the \l{QGesture::} {triggered()} signal is used to inform
+ the application that a gesture was used. More precise monitoring
+ of a gesture can be implemented by connecting its \l{QGesture::}
+ {started()}, \l{QGesture::} {canceled()} and \l{QGesture::}
+ {finished()} signals to slots.
Responding to a signal is simply a matter of obtaining the gesture that sent
it and examining the information it contains.
@@ -141,7 +142,7 @@
\table
\header \o New State \o Description \o QGesture Actions on Entering this State
- \row \o Qt::NoGesture \o Initial value \o emit \l {QGesture::}{cancelled()}
+ \row \o Qt::NoGesture \o Initial value \o emit \l {QGesture::}{canceled()}
\row \o Qt::GestureStarted \o A continuous gesture has started \o emit \l{QGesture::}{started()} and emit \l{QGesture::}{triggered()}
\row \o Qt::GestureUpdated \o A gesture continues \o emit \l{QGesture::}{triggered()}
\row \o Qt::GestureFinished \o A gesture has finished. \o emit \l{QGesture::}{finished()}