Changeset 846 for trunk/src/gui/kernel/qgesturerecognizer.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/kernel/qgesturerecognizer.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 45 45 #include "private/qgesturemanager_p.h" 46 46 47 #ifndef QT_NO_GESTURES 48 47 49 QT_BEGIN_NAMESPACE 48 50 … … 60 62 need to use this class directly. Instances will be created behind the scenes by the 61 63 framework. 64 65 For an overview of gesture handling in Qt and information on using gestures 66 in your applications, see the \l{Gestures Programming} document. 62 67 63 68 \section1 Recognizing Gestures … … 162 167 Reimplement this function to create a custom QGesture-derived gesture 163 168 object if necessary. 169 170 The application takes ownership of the created gesture object. 164 171 */ 165 172 QGesture *QGestureRecognizer::create(QObject *target) … … 182 189 d->state = Qt::NoGesture; 183 190 d->hotSpot = QPointF(); 191 d->sceneHotSpot = QPointF(); 184 192 d->isHotSpotSet = false; 185 193 } … … 229 237 230 238 QT_END_NAMESPACE 239 240 #endif // QT_NO_GESTURES
Note:
See TracChangeset
for help on using the changeset viewer.