summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter
Commit message (Collapse)AuthorAgeFilesLines
* Fix Twitter demo's list view for devicesJoona Petrell2010-10-191-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 Kennedy2010-09-2911-11/+11
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Re-add quit button to declarative Twitter demoJoona Petrell2010-09-091-1/+12
| | | | | Task-number: Reviewed-by: Bea Lam
* Updated Twitter demo in response to the new Twitter oauth requirementJens Bache-Wiig2010-08-3113-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 demosJoona Petrell2010-08-262-1/+11
| | | | | Task-number: QTBUG-13048 Reviewed-by: Martin Jones
* QML focus API updates.Michael Brasser2010-07-211-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 Jones2010-07-143-0/+4
| | | | N900 has an Enter key, not a return key
* Minor Twitter demo enhancementsAlan Alpert2010-06-302-1/+2
| | | | First time I actually use it to tweet and I find two bugs...
* Improve input panel handling in declarative demos and examplesJoona Petrell2010-06-033-2/+7
| | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison
* Fix TextEdit clipping when not wrapped. Rename most-useful-wrap-mode to "Wrap".Warwick Allison2010-05-261-1/+1
|
* Add license headers for .qml files.Jason McDonald2010-05-2111-0/+451
| | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me
* More cleanupYann Bodson2010-05-062-2/+2
|
* Use enum rather than string for easing type.Yann Bodson2010-05-054-4/+4
|
* Add .qmlproject files for declarative demos.Yann Bodson2010-04-201-0/+16
|
* Enable other wrapping modes.Martin Jones2010-04-091-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.7Martin Jones2010-04-094-46/+39
|\
| * Remove use of obsolete "Script" element.Warwick Allison2010-04-094-46/+39
| |
* | TextEdit::wrap changed to TextEdit::wrapMode enumerationMartin Jones2010-04-092-2/+2
|/
* Text.wrap is deprecatedYann Bodson2010-04-091-1/+1
|
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-093-3/+3
|
* Add tab navigation to twitter example authentication screen.Yann Bodson2010-04-081-5/+8
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-0811-11/+11
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-03-251-2/+2
|\
| * Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-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 Brasser2010-03-251-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 behaviourAlan Alpert2010-03-251-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 demosAlan Alpert2010-03-0221-2/+12
| | | | Samegame and Twitter are now trying the new naming convention.
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-023-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 syntaxLeonardo Sobral Cunha2010-02-234-4/+4
|
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-221-1/+1
|
* Fix example after introduction of RotationAnimation.Michael Brasser2010-02-181-1/+1
| | | | id can't be the same as a TypeName.
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-184-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 andBea Lam2010-02-031-1/+1
| | | | | | examples accordingly. Task-number: QT-2786
* Fix use of XmlHttpRequest in examplesAlan Alpert2009-11-271-0/+1
|
* Fix minor clipping issue in twitter appAlan Alpert2009-11-262-3/+2
|
* Twitter demo touchupsAlan Alpert2009-11-267-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 printWarwick Allison2009-11-231-1/+1
|
* Rename targets -> matchTargets and properties -> matchProperties.Michael Brasser2009-11-064-4/+4
|
* make twitter not depend on flickr exampleYann Bodson2009-10-3018-20/+172
|
* fix twitter exampleYann Bodson2009-10-302-3/+3
|
* cleanupYann Bodson2009-10-284-8/+8
|
* lowercase idsYann Bodson2009-10-065-91/+92
|
* Update demos to work with API changesAlan Alpert2009-09-102-4/+4
| | | | Affected are flickr and twitter.
* Positioners now implictly have the height and width of the childrenRectAlan Alpert2009-09-091-5/+3
| | | | | Also removed the now uneccesary height and width bindings from the twitter demo login screen.
* Size the list area correctly.Martin Jones2009-09-071-1/+1
|
* Remove KeyProxy in favour of the Keys.forwardTo attached property.Martin Jones2009-09-072-11/+3
|
* Fix some twitter demo bugsAlan Alpert2009-09-033-9/+11
| | | | Includes making the update button work and clearing the post box on post
* Better default behaviour for twitter demo.Alan Alpert2009-09-031-0/+1
|
* Differentiate between loading and error states.Alan Alpert2009-09-031-1/+7
|
* Move minehunt and twitter to demos directoryAlan Alpert2009-09-037-0/+444
Minehunt is more a demo than an example, and the twitter app goes with the flickr app.