Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Twitter demo's list view for devices | Joona Petrell | 2010-10-19 | 1 | -1/+1 |
| | | | | | | | The height of ListView in Twitter demo was fixed, which looked bad when the demo was run maximized or in a full screen mode on devices. Task-number: Reviewed-by: Aaron Kennedy | ||||
* | Replace all occurances of "Qt 4.7" with "QtQuick 1.0" | Aaron Kennedy | 2010-09-29 | 11 | -11/+11 |
| | | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones | ||||
* | Re-add quit button to declarative Twitter demo | Joona Petrell | 2010-09-09 | 1 | -1/+12 |
| | | | | | Task-number: Reviewed-by: Bea Lam | ||||
* | Updated Twitter demo in response to the new Twitter oauth requirement | Jens Bache-Wiig | 2010-08-31 | 13 | -459/+330 |
| | | | | | | | | | | | | | Twitter is blocking access to the old authentification method that our demo was using. This breaks the demo completely. To fix this, I changed the demo into only make use of the public search API. You can no longer tweet but you can search for different tweets. At the moment making an oauth capable demo is not desirable due to the problems with handling a secret app token among other issues. Task-number: QTBUG-13181 Reviewed-by: Alan Alpert | ||||
* | Add quit buttons to declarative demos | Joona Petrell | 2010-08-26 | 2 | -1/+11 |
| | | | | | Task-number: QTBUG-13048 Reviewed-by: Martin Jones | ||||
* | QML focus API updates. | Michael Brasser | 2010-07-21 | 1 | -1/+1 |
| | | | | | | | | | The wantsFocus property has been renamed to activeFocus, to better reflect its value. Reading and writing the focus property is also now consistent -- this property represents focus within a scope. Other small changes were made to keep things consistent with the new naming. Reviewed-by: Aaron Kennedy | ||||
* | Enter key performs same action as Return key in QML demos. | Martin Jones | 2010-07-14 | 3 | -0/+4 |
| | | | | N900 has an Enter key, not a return key | ||||
* | Minor Twitter demo enhancements | Alan Alpert | 2010-06-30 | 2 | -1/+2 |
| | | | | First time I actually use it to tweet and I find two bugs... | ||||
* | Improve input panel handling in declarative demos and examples | Joona Petrell | 2010-06-03 | 3 | -2/+7 |
| | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison | ||||
* | Fix TextEdit clipping when not wrapped. Rename most-useful-wrap-mode to "Wrap". | Warwick Allison | 2010-05-26 | 1 | -1/+1 |
| | |||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 11 | -0/+451 |
| | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me | ||||
* | More cleanup | Yann Bodson | 2010-05-06 | 2 | -2/+2 |
| | |||||
* | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 4 | -4/+4 |
| | |||||
* | Add .qmlproject files for declarative demos. | Yann Bodson | 2010-04-20 | 1 | -0/+16 |
| | |||||
* | Enable other wrapping modes. | Martin Jones | 2010-04-09 | 1 | -1/+1 |
| | | | | | | | | WrapAnywhere - Text can be wrapped at any point on a line, even if it occurs in the middle of a word. WrapAtWordBoundaryOrAnywhere - If possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word. | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-04-09 | 4 | -46/+39 |
|\ | |||||
| * | Remove use of obsolete "Script" element. | Warwick Allison | 2010-04-09 | 4 | -46/+39 |
| | | |||||
* | | TextEdit::wrap changed to TextEdit::wrapMode enumeration | Martin Jones | 2010-04-09 | 2 | -2/+2 |
|/ | |||||
* | Text.wrap is deprecated | Yann Bodson | 2010-04-09 | 1 | -1/+1 |
| | |||||
* | Replace "property var " with "property variant " in QML code | Aaron Kennedy | 2010-04-09 | 3 | -3/+3 |
| | |||||
* | Add tab navigation to twitter example authentication screen. | Yann Bodson | 2010-04-08 | 1 | -5/+8 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 11 | -11/+11 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-25 | 1 | -2/+2 |
|\ | |||||
| * | Qt.Infinite -> Animation.Infinite | Michael Brasser | 2010-03-25 | 1 | -1/+1 |
| | | | | | | | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops. | ||||
| * | Replace Animation's repeat property with loops. | Michael Brasser | 2010-03-25 | 1 | -2/+2 |
| | | | | | | | | | | You can now loop a fixed number of times as well as forever. The old repeat behavior (loop forever) can be acheived with loops: Qt.Infinite. | ||||
* | | 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 | ||||
* | Refactor demos | Alan Alpert | 2010-03-02 | 21 | -2/+12 |
| | | | | 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 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Updates all qml examples/demos to use the easing curve value type syntax | Leonardo Sobral Cunha | 2010-02-23 | 4 | -4/+4 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | Fix example after introduction of RotationAnimation. | Michael Brasser | 2010-02-18 | 1 | -1/+1 |
| | | | | id can't be the same as a TypeName. | ||||
* | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 4 | -4/+4 |
| | | | | | | | | | | | 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. | ||||
* | Disallow ids that start with uppercase letters and update docs and | Bea Lam | 2010-02-03 | 1 | -1/+1 |
| | | | | | | examples accordingly. Task-number: QT-2786 | ||||
* | Fix use of XmlHttpRequest in examples | Alan Alpert | 2009-11-27 | 1 | -0/+1 |
| | |||||
* | Fix minor clipping issue in twitter app | Alan Alpert | 2009-11-26 | 2 | -3/+2 |
| | |||||
* | Twitter demo touchups | Alan Alpert | 2009-11-26 | 7 | -29/+61 |
| | | | | | | Arrowkey navigation on the login page, and Escape on the main page takes you back to the login page. Posting does not seem to be working still. Also switched to pixelSize fonts in many places. | ||||
* | Use console.log, not print | Warwick Allison | 2009-11-23 | 1 | -1/+1 |
| | |||||
* | Rename targets -> matchTargets and properties -> matchProperties. | Michael Brasser | 2009-11-06 | 4 | -4/+4 |
| | |||||
* | make twitter not depend on flickr example | Yann Bodson | 2009-10-30 | 18 | -20/+172 |
| | |||||
* | fix twitter example | Yann Bodson | 2009-10-30 | 2 | -3/+3 |
| | |||||
* | cleanup | Yann Bodson | 2009-10-28 | 4 | -8/+8 |
| | |||||
* | lowercase ids | Yann Bodson | 2009-10-06 | 5 | -91/+92 |
| | |||||
* | Update demos to work with API changes | Alan Alpert | 2009-09-10 | 2 | -4/+4 |
| | | | | Affected are flickr and twitter. | ||||
* | Positioners now implictly have the height and width of the childrenRect | Alan Alpert | 2009-09-09 | 1 | -5/+3 |
| | | | | | Also removed the now uneccesary height and width bindings from the twitter demo login screen. | ||||
* | Size the list area correctly. | Martin Jones | 2009-09-07 | 1 | -1/+1 |
| | |||||
* | Remove KeyProxy in favour of the Keys.forwardTo attached property. | Martin Jones | 2009-09-07 | 2 | -11/+3 |
| | |||||
* | Fix some twitter demo bugs | Alan Alpert | 2009-09-03 | 3 | -9/+11 |
| | | | | Includes making the update button work and clearing the post box on post | ||||
* | Better default behaviour for twitter demo. | Alan Alpert | 2009-09-03 | 1 | -0/+1 |
| | |||||
* | Differentiate between loading and error states. | Alan Alpert | 2009-09-03 | 1 | -1/+7 |
| | |||||
* | Move minehunt and twitter to demos directory | Alan Alpert | 2009-09-03 | 7 | -0/+444 |
Minehunt is more a demo than an example, and the twitter app goes with the flickr app. |