Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/gui/graphicsview/qgraphicstransform.cpp

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
     
    5555    order, one at a time, to the QGraphicsItem it's assigned to.
    5656
    57     QGraphicsTransform is particularily useful for animations. Whereas
     57    QGraphicsTransform is particularly useful for animations. Whereas
    5858    QGraphicsItem::setTransform() lets you assign any transform directly to an
    5959    item, there is no direct way to interpolate between two different
     
    268268    d->xScale = scale;
    269269    update();
     270    emit xScaleChanged();
    270271    emit scaleChanged();
    271272}
     
    294295    d->yScale = scale;
    295296    update();
     297    emit yScaleChanged();
    296298    emit scaleChanged();
    297299}
     
    320322    d->zScale = scale;
    321323    update();
     324    emit zScaleChanged();
    322325    emit scaleChanged();
    323326}
     
    340343
    341344    \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.
    342366*/
    343367
Note: See TracChangeset for help on using the changeset viewer.