summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/util.pri
Commit message (Collapse)AuthorAgeFilesLines
* Introduce Qt.application.active propertyJoona Petrell2011-01-071-0/+2
| | | | | | | Replaces qmlviewer's runtime.activeWindow property. Task-number: QTBUG-13351 Reviewed-by: Martin Jones
* Follow -> Behaviormae2010-07-081-4/+0
| | | | Replace the usages of Follows with Behaviors, update docs.
* Added QDeclarativeSpringAnimationmae2010-07-071-0/+2
| | | | | | | | | | | | | The QDeclarativeSpringAnimation is a replacement for QDeclarativeSpringFollow. The idea is to remove the Follows quickly. Follows used to have an inSync property. In order to provide an alternative mechanism, the commit also fixes the running property for animations which are controlled by a behavior. Previously running would always return false and never change. Now running does change and indicates that the animation is running indeed.
* Move QListModelInterface into util.Michael Brasser2010-06-041-2/+4
| | | | Get rid of src/declarative/3rdparty.
* Add SmoothedFollow element to qmlLeonardo Sobral Cunha2010-04-081-0/+2
| | | | | | | | | | | | | | | | | | | | | The SmoothedFollow is the same as the old EaseFollow, so it's not an animation, but its main use case is to be used as a property value source to automatically follow the 'to' property, as in the example below. Rectangle { color: "green" width: 60; height: 60; SmoothedFollow on x { to: rect1.x - 5; velocity: 200 } SmoothedFollow on y { to: rect1.y - 5; velocity: 200 } } This element shares the internal implementation with SmoothedAnimation, both providing the same easing function, but with SmoothedFollow it's easier to set a start value to animate intially and then start to follow, while SmoothedAnimation is still convenient for using inside Behaviors and Transitions. Reviewed-by: Michael Brasser
* Finished file rename of qdeclarative easefollow to smoothedanimationLeonardo Sobral Cunha2010-03-301-3/+3
|
* Change and rename qml EaseFollow to SmoothedAnimationLeonardo Sobral Cunha2010-03-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QDeclarativeSmoothedAnimation inherits from QDeclarativeNumberAnimation, as a consequence SmoothedAnimation can be used inside Behaviors and as PropertySourceValues, like any other animation. The old EaseFollow properties changed to comply with the other declarative animations ('source' changed to 'to'), so now 'to' changes are not automatically 'followed' anymore. You can achieve the following behavior by putting a SmoothedAnimation inside a Behavior of a property that is bound to another, as the following example: If you want to follow an hypothetical rect1, you should do now: Rectangle { color: "green" width: 60; height: 60; x: rect1.x - 5; y: rect1.y - 5; Behavior on x { SmoothedAnimation { velocity: 200 } } Behavior on y { SmoothedAnimation { velocity: 200 } } } SmoothedAnimation also supports animating multiple target(s)/property(ies) in the transition case. When a QDeclarativeSmoothedAnimation is restarted, it will match the QDeclarativeProperty which were being animated and transfer the corresponding track velocity to the new starting animations. QSmoothedAnimation is an uncontrolled animation, duration == -1. The duration is set as -1 to avoid consecutive animation state changes stop()/start(). This is particularly useful when using QSmoothAnimation to 'follow' another property, which is also being animated (change the 'to' property every tick). Reviewed-by: Michael Brasser
* Remove non-existing header from pri fileKai Koehne2010-03-221-2/+1
| | | | Got added in 081fafe395d52.
* Remove dead performance measurement code from QMLAaron Kennedy2010-03-221-4/+0
|
* Remove unneeded #include and add needed header to .priMartin Jones2010-03-161-0/+1
|
* Remove WorkerListModel and integrate its functionality into ListModel.Bea Lam2010-03-161-2/+5
| | | | Task-number: QT-2829
* Remove NumberFormatter and DateTimeFormatter.Michael Brasser2010-03-051-6/+0
| | | | | | | Functions have been added to QML's global Qt object for date/time formatting. Number formatting will not be supported for 4.7. Task-number: QT-2821
* Rename files to follow class name.Warwick Allison2010-02-261-2/+2
| | | | Task-number: QT-2822
* Revert "Add QDeclarativeGraphicsWidget, a QGraphicsWidget version of QmlView"Aaron Kennedy2010-02-251-4/+2
| | | | This reverts commit 327d212f5cff81f1c21b7be5c54b3e1eab4f0ac5.
* Add QDeclarativeGraphicsWidget, a QGraphicsWidget version of QmlViewAlan Alpert2010-02-241-2/+4
| | | | | | | | | Could use to be renamed. Possibly to -QDeclarativeViewGraphicsWidget -QGraphicsDeclarativeViewWidget (Or QGraphicsD20, in the spirit of i18n) But those aren't any shorter. Task-number: QTBUG-7067
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-59/+59
| | | | QDeclarativeXXX.
* Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-231-0/+2
| | | | Task-number: QT-2798
* Implement a fast "styled" text format.Martin Jones2009-12-221-2/+4
|
* clean up project filesOswald Buddenhagen2009-12-031-61/+63
|
* Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-11-111-2/+18
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/util/util.pri
| * Get rid of the extra directory.Michael Brasser2009-11-111-2/+18
| |
* | Make QmlPropertyMap publicAlan Alpert2009-11-111-1/+1
|/
* Rename QmlGraphicsPixmapCache to QmlPixmapCache.Michael Brasser2009-11-041-2/+4
|
* CleanupAaron Kennedy2009-10-301-1/+0
|
* Make private headers _pAaron Kennedy2009-10-301-22/+22
|
* Rename QBindableMap to QmlPropertyMap.Michael Brasser2009-10-211-2/+4
| | | | Task-number: QT-2316
* Make Script an instrinsic typeAaron Kennedy2009-10-071-2/+0
| | | | | This allows us to delay the QML load until external script files have been loaded from the network, and to correctly scope these scripts.
* Renaming: QFxView -> QmlViewYann Bodson2009-09-221-2/+2
|
* Follow renamed to SpringFollow.Martin Jones2009-09-101-2/+2
|
* Add EaseFollow elementAaron Kennedy2009-09-091-0/+2
|
* Rename State change elements.Martin Jones2009-08-211-2/+2
| | | | | | SetProperties -> PropertyChanges RunScript -> StateChangeScript SetAnchors -> AnchorChanges
* Renaming Palette -> SystemPaletteYann Bodson2009-08-201-2/+2
|
* Get rid of QmlFont and use the QFont value type instead.Michael Brasser2009-08-141-2/+0
|
* Move QmlFontFamily to extra.Yann Bodson2009-08-041-2/+0
|
* Add QmlFontFamily.Yann Bodson2009-07-231-0/+2
|
* Update .pri for QmlTimer move.Martin Jones2009-07-141-0/+2
|
* Add access to Qt palettes from QML.Yann Bodson2009-07-141-0/+2
|
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-021-0/+2
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Remove QmlSetPropertyAaron Kennedy2009-07-011-0/+2
| | | | | | | | This involves the introduction of separation between states and transition application. This was necessary to allow layouts to continue to use transitions.
* | Make performance logging classes private.Michael Brasser2009-07-021-2/+2
| |
* | Move timeline class to util and make private.Michael Brasser2009-07-021-0/+2
|/
* Move some non-essential classes to extra.Michael Brasser2009-06-291-6/+0
|
* Initial import of kinetic-dui branch from the old kineticMichael Brasser2009-04-221-0/+49