Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve input panel handling in declarative demos and examples | Joona Petrell | 2010-06-03 | 2 | -6/+19 |
| | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison | ||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 4 | -0/+164 |
| | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me | ||||
* | Rename Component::errorsString() -> errorString() (and also for | Bea Lam | 2010-05-20 | 1 | -2/+2 |
| | | | | QDeclarativeComponent) | ||||
* | Make component.createObject require a parent argument | Alan Alpert | 2010-05-05 | 1 | -2/+1 |
| | | | | | | | | | For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110 | ||||
* | Remove Component's isReady, isLoading, isError and isNull properties. | Bea Lam | 2010-04-29 | 1 | -1/+1 |
| | | | | | | | The Component status enum covers all of these properties already and removing these also makes the API consistent with Image and Loader. Note this change only affects the QML Component API; the methods are still available for QDeclarativeComponent. | ||||
* | Replace usage of print() with console.log(). | Michael Brasser | 2010-04-23 | 1 | -5/+4 |
| | |||||
* | Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-04-21 | 1 | -0/+16 |
|\ | |||||
| * | Add .qmlproject files for declarative demos. | Yann Bodson | 2010-04-20 | 1 | -0/+16 |
| | | |||||
* | | Make the dynamic creation functions on the Qt object | Alan Alpert | 2010-04-21 | 1 | -1/+1 |
|/ | | | | | | | | | Also updated examples to still work, and the dynamic example now uses exceptions a little, to demonstrate that it can be done. Exceptions are also now filled out with the QML error data. Task-number: QT-2801 Reviewed-by: Aaron Kennedy | ||||
* | Indentation and whitespace fixes in qml's samegame tutorial | Leonardo Sobral Cunha | 2010-04-19 | 4 | -8/+10 |
| | |||||
* | Make demo code more consistent with example code in terms of variable | Bea Lam | 2010-04-13 | 5 | -142/+174 |
| | | | | naming and code style. | ||||
* | Renamed 'source' property from SpringFollow to 'to' | Leonardo Sobral Cunha | 2010-04-08 | 1 | -2/+2 |
| | |||||
* | Add running of examples to quality gate. | Warwick Allison | 2010-04-08 | 1 | -1/+1 |
| | | | | Fix broken examples too. | ||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 4 | -4/+4 |
| | |||||
* | Tweak import behaviour | Alan Alpert | 2010-03-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | The implicit import of types in the same directory/module now imports version -1 (which means all versions). This fixes the Twitter demo. Additionally, the current directory is not added to the imports path. No functionality is lost, as you can import local modules with relative paths for the same effect. Improved docs are on the way. Reviewed-by: mae | ||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 2 | -13/+7 |
| | | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential. | ||||
* | Move particles in their own plugin (Qt.labs.particles) | Yann Bodson | 2010-03-11 | 1 | -0/+1 |
| | | | | Task-number: QT-2846 | ||||
* | Use no-version-specified to mean any version (used to work, fixed again, | Warwick Allison | 2010-03-10 | 1 | -3/+3 |
| | | | | was only working with -1.-1 which looks silly) | ||||
* | Fix Samegame. | Michael Brasser | 2010-03-03 | 1 | -1/+1 |
| | |||||
* | Refactor demos | Alan Alpert | 2010-03-02 | 15 | -3/+3 |
| | | | | Samegame and Twitter are now trying the new naming convention. | ||||
* | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 3 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error. | ||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 3 | -3/+3 |
| | |||||
* | Fix palette on the N900 | Harald Fernengel | 2010-02-16 | 1 | -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> | ||||
* | Fix SameGame high scores | Alan Alpert | 2010-02-15 | 1 | -2/+3 |
| | | | | | When it's deployed across multiple devices, there is no 'standard' grid size. This allows non-desktop versions to display high scores. | ||||
* | Enhance samegame high score dialog | Alan Alpert | 2010-02-15 | 3 | -3/+18 |
| | | | | | 'Better' layout mechanics, included animated resize for those people with long names. | ||||
* | Remove samegame README (mentioned images have been replaced) | Kai Koehne | 2010-01-22 | 1 | -10/+0 |
| | |||||
* | Tweak marble graphics in Samegame | Nigel Hietala | 2010-01-22 | 4 | -0/+0 |
| | |||||
* | Updated graphics for Samegame | Nigel Hietala | 2010-01-21 | 6 | -0/+1 |
| | |||||
* | Add a quit button to the toolbar | Harald Fernengel | 2009-12-16 | 1 | -0/+6 |
| | | | | | Allows to run SameGame full-screen on the N900, and being able to quit without having to use xkill :) | ||||
* | Set score text color (so that it will be visible) | Alan Alpert | 2009-12-16 | 2 | -1/+2 |
| | |||||
* | Fix use of XmlHttpRequest in examples | Alan Alpert | 2009-11-27 | 1 | -0/+1 |
| | |||||
* | Update examples for new SQL API. | Warwick Allison | 2009-11-18 | 1 | -22/+10 |
| | |||||
* | Use darker() and lighter() functions from global Qt object rather than from ↵ | Yann Bodson | 2009-11-05 | 2 | -2/+2 |
| | | | | SystemPalette. | ||||
* | Particles cleaned up and placed in in qmlgraphics/ | Alan Alpert | 2009-11-05 | 1 | -6/+6 |
| | | | | | | | | | | | | | API changes: Removed bool streamIn Added int emissionRate Added int emissionVariance Added void burst(count, emissionRate=-1) While rewriting the internals to accomodate this, all other outstanding particles bugs were believed fixed. Task-number: QT-2392 QT-2391 QT-2390 QT-2406 | ||||
* | Add local highscores to SameGame | Alan Alpert | 2009-10-29 | 3 | -7/+47 |
| | |||||
* | cleanup | Yann Bodson | 2009-10-28 | 1 | -1/+1 |
| | |||||
* | SameGame cleans up blocks now. | Alan Alpert | 2009-10-27 | 1 | -0/+1 |
| | | | | Blocks now delete themselves on their death. | ||||
* | make remotable | Warwick Allison | 2009-10-26 | 2 | -4/+4 |
| | |||||
* | Start updating state and animation docs. | Michael Brasser | 2009-10-22 | 1 | -1/+1 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Aaron Kennedy | 2009-10-07 | 4 | -34/+35 |
|\ | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into test Conflicts: demos/declarative/samegame/content/samegame.js tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp | ||||
| * | Refactor tileSize to the gameCanvas item | Alan Alpert | 2009-10-07 | 2 | -13/+13 |
| | | |||||
| * | Merge branch 'kinetic-declarativeui' of ↵ | Alan Alpert | 2009-10-06 | 3 | -19/+19 |
| |\ | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| | * | lowercase ids | Yann Bodson | 2009-10-06 | 3 | -19/+19 |
| | | | |||||
| * | | Consistent Commenting in Samegame | Alan Alpert | 2009-10-05 | 1 | -0/+1 |
| |/ | |||||
* | | Reenable types/enums and move scripts into an isolated scope | Aaron Kennedy | 2009-10-05 | 2 | -2/+7 |
| | | |||||
* | | Prevent writes to the global object | Aaron Kennedy | 2009-10-05 | 1 | -14/+14 |
| | | | | | | | | Also add toString() method to qobjects | ||||
* | | Improve script lookup caching | Aaron Kennedy | 2009-10-05 | 1 | -0/+3 |
|/ | |||||
* | Clean up Same Game JS | Alan Alpert | 2009-09-22 | 1 | -37/+12 |
| | | | | Delayed loading is never used and is poorly implemented, so remove it. | ||||
* | Rename samegame | Aaron Kennedy | 2009-09-21 | 1 | -0/+0 |
| | |||||
* | Rename samegame | Aaron Kennedy | 2009-09-21 | 1 | -0/+0 |
| |