Changeset 846 for trunk/src/gui/graphicsview/qgraphicstransform.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/graphicsview/qgraphicstransform.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) … … 55 55 order, one at a time, to the QGraphicsItem it's assigned to. 56 56 57 QGraphicsTransform is particular ily useful for animations. Whereas57 QGraphicsTransform is particularly useful for animations. Whereas 58 58 QGraphicsItem::setTransform() lets you assign any transform directly to an 59 59 item, there is no direct way to interpolate between two different … … 268 268 d->xScale = scale; 269 269 update(); 270 emit xScaleChanged(); 270 271 emit scaleChanged(); 271 272 } … … 294 295 d->yScale = scale; 295 296 update(); 297 emit yScaleChanged(); 296 298 emit scaleChanged(); 297 299 } … … 320 322 d->zScale = scale; 321 323 update(); 324 emit zScaleChanged(); 322 325 emit scaleChanged(); 323 326 } … … 340 343 341 344 \sa QGraphicsScale::origin 345 */ 346 347 /*! 348 \fn QGraphicsScale::xScaleChanged() 349 \since 4.7 350 351 This signal is emitted whenever the \l xScale property changes. 352 */ 353 354 /*! 355 \fn QGraphicsScale::yScaleChanged() 356 \since 4.7 357 358 This signal is emitted whenever the \l yScale property changes. 359 */ 360 361 /*! 362 \fn QGraphicsScale::zScaleChanged() 363 \since 4.7 364 365 This signal is emitted whenever the \l zScale property changes. 342 366 */ 343 367
Note:
See TracChangeset
for help on using the changeset viewer.