summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | Add pixmap benchmarks and make cached rounded rect the same as Rectangle.Martin Jones2010-02-185-14/+102
| | |/ / / / /
| | * | | | | Doc: onExited, onEntered only work when button pressed or hoverEnabledMartin Jones2010-02-181-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-8305
| | * | | | | Ensure visibleIndex and currentIndex are updated on itemsMoved().Martin Jones2010-02-181-2/+25
| | | | | | |
| | * | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-1893-647/+2396
| | |\ \ \ \ \
| | | * | | | | Fix example after introduction of RotationAnimation.Michael Brasser2010-02-182-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | id can't be the same as a TypeName.
| | | * | | | | Animation doc fix.Michael Brasser2010-02-181-24/+11
| | | | | | | |
| | | * | | | | Add a RotationAnimation element.Michael Brasser2010-02-183-0/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is needed to provide more control of rotation direction when animating.
| | | * | | | | Remove unneeded comparison.Michael Brasser2010-02-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d->propertyName is now included in props.
| | | * | | | | Fix bugs and add tests related to manual start/stop control of animations.Michael Brasser2010-02-187-10/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This better enforces the restriction on starting an animation that is not top-level, or is part of a Transition or Behavior.
| | | * | | | | Transitions and Behaviors should exclusively control their animations.Michael Brasser2010-02-185-8/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't allow manual control (starting, stopping, etc) of animations in a Behavior or Transition.
| | | * | | | | Make test more reliable.Michael Brasser2010-02-181-3/+3
| | | | | | | |
| | | * | | | | Animation's setTarget should only be called via QmlValueSource*.Michael Brasser2010-02-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We rely on this to know whether to autostart. Disallow easy access to setTarget by making it private.
| | | * | | | | Minor transition cleanup.Michael Brasser2010-02-181-7/+1
| | | | | | | |
| | | * | | | | Minor animation class cleanup.Michael Brasser2010-02-183-29/+25
| | | | | | | |
| | | * | | | | Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-1887-600/+2024
| | | | |/ / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well.
| | * | | | | QmlView API review. See QmlChanges.txt for details.Martin Jones2010-02-1824-522/+499
| | |/ / / /
| | * | | | Provide a very generous timeout for QmlImageProvider testMartin Jones2010-02-171-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because it runs in an idle thread, which you would expect to be quite slow under load.
| | * | | | Doc fixAlan Alpert2010-02-171-1/+5
| | | | | |
| | * | | | Fix typo in docsAlan Alpert2010-02-171-1/+1
| | | | | |
| | * | | | Fix minor doc typoAlan Alpert2010-02-171-1/+1
| | | | | |
| | * | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-1777-408/+1144
| | |\ \ \ \
| | | * \ \ \ Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into ↵Qt Continuous Integration System2010-02-17183-4076/+2359
| | | |\ \ \ \ | | | | |_|/ / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-qml: (47 commits) Add missing NOTIFY signals to various QML item class properties Fix currentIndex after itemsMoved() qmlviewer: build on symbian Revert "Replace QList<>* support with QmlListProperty" Declare QmlXmlListModelRole meta type before any code uses it. Make compile on Symbian (call Q_DECLARE_METATYPE earlier) Conditionally link webkit on wince Revert "Run dos2unix on these files." Expose LayoutItem documentation Fix palette on the N900 Fix QTBUG-8090, improve original patch effectiveness. Replace QList<>* support with QmlListProperty Run dos2unix on these files. Remove standalone QmlDebugger. It is now only available through the Mobility 404 Fix crash in QmlMetaProperty that could occur when using value-type QML binding optimizer crash QML binding optimizer crash Fix crash in QML binding optimizer Don't delete binding directly ...
| | | | * | | Add missing NOTIFY signals to various QML item class propertiesJoona Petrell2010-02-1719-20/+441
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Aaron Kennedy
| | * | | | | Document loading QML from Qt resources.Martin Jones2010-02-171-0/+36
| | | |/ / / | | |/| | |
| | * | | | Fix currentIndex after itemsMoved()Martin Jones2010-02-171-8/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure fixupPosition() positions properly for StrictlyEnforceRange highlight mode. Update visibleIndex after itemsMoved().
| | * | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-1741-3207/+240
| | |\ \ \ \
| | | * | | | qmlviewer: build on symbianMichael Brasser2010-02-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-8266
| | | * | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAaron Kennedy2010-02-173-3/+9
| | | |\ \ \ \
| | | | * | | | Declare QmlXmlListModelRole meta type before any code uses it.Bea Lam2010-02-171-2/+4
| | | | | | | |
| | | | * | | | Make compile on Symbian (call Q_DECLARE_METATYPE earlier)Bea Lam2010-02-172-1/+5
| | | | | | | |
| | | * | | | | Revert "Replace QList<>* support with QmlListProperty"Aaron Kennedy2010-02-1725-248/+339
| | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was accidentally pushed early. This reverts commit 8454c53b304a4aba7c058b315041b3a38ad4fff5.
| | | * | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAaron Kennedy2010-02-174-2/+10
| | | |\ \ \ \
| | | | * \ \ \ Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAlan Alpert2010-02-161-1/+1
| | | | |\ \ \ \
| | | | | * | | | Fix palette on the N900Harald Fernengel2010-02-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The N900 has by default black background with white text, but white line edits with black text. Use windowText for the "Score" label to make it readable. Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
| | | | * | | | | Expose LayoutItem documentationAlan Alpert2010-02-162-0/+8
| | | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | Also made it slightly more verbose.
| | | | * | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlWarwick Allison2010-02-1687-3105/+804
| | | | |\ \ \ \
| | | | * | | | | Fix QTBUG-8090, improve original patch effectiveness.Warwick Allison2010-02-161-1/+1
| | | | | | | | |
| | | * | | | | | Conditionally link webkit on winceAaron Kennedy2010-02-171-1/+4
| | | | | | | | |
| | | * | | | | | Replace QList<>* support with QmlListPropertyAaron Kennedy2010-02-1625-339/+248
| | | | |/ / / / | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qmlgraphicsitem.cpp src/declarative/qml/qmlmetaproperty.cpp src/declarative/qml/qmlmetatype.cpp
| | | * | | | | Remove standalone QmlDebugger. It is now only available through theBea Lam2010-02-1623-3049/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | plugin in the Creator repo.
| | | * | | | | Mobility 404Wolfgang Beck2010-02-163-2/+6
| | | | | | | |
| | | * | | | | Fix crash in QmlMetaProperty that could occur when using value-typeMichael Brasser2010-02-163-4/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | properties after the engine was deleted.
| | | * | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAaron Kennedy2010-02-1665-77/+757
| | | |\ \ \ \ \
| | | * | | | | | QML binding optimizer crashAaron Kennedy2010-02-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The context's id values must be deleted after the compiled bindings as they may access the id values during shutdown.
| | | * | | | | | QML binding optimizer crashAaron Kennedy2010-02-161-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We should check that the fetch() generation succeeded before continuing.
| | | * | | | | | Fix crash in QML binding optimizerAaron Kennedy2010-02-163-138/+164
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Optimized bindings need to reset the mePtr too.
| | | * | | | | | Don't delete binding directlyAaron Kennedy2010-02-161-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bindings should be destroyed by calling their destroy() method, not by deleting them.
| | * | | | | | | Revert "Run dos2unix on these files."Martin Jones2010-02-163-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 3a96ecef0db619016cf132b16a99f2714215ebdd.
| | * | | | | | | Run dos2unix on these files.Martin Jones2010-02-163-22/+22
| | | |/ / / / / | | |/| | | | |
| | * | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-16560-8205/+5174
| | |\ \ \ \ \ \