summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/mobile
Commit message (Collapse)AuthorAgeFilesLines
* demos/declarative/flickr example modificationsartoka2011-11-1715-652/+0
| | | | | | | | | Modified the example to use centralized qmlapplicationviewer, removed duplicate files and modified project files according to the changes. Merge-request: 2719 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-136-102/+102
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Update copyright year to 2011.Jason McDonald2011-01-106-6/+6
| | | | Reviewed-by: Trust Me
* Do not show 'More' button when in fullscreen view.Yann Bodson2010-10-062-9/+15
| | | | Task-number: QTBUG-11813
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-296-6/+6
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Fix text size issues for high ppi displaysAlessandro Portale2010-09-074-6/+6
| | | | | | | | | | | Many layout sizes in flickr are specified by the artwork sizes. The heights and widths are defined in static pixel sizes. Therefore the text has to obey the size restrictions, and should not overlap. This patch sets the font sizes in pixels. Otherwise the default font sizes in points may be too big on high ppi displays. (XM5800 has ~230 ppi)
* Ensure slider is updated when screen size changes.Martin Jones2010-09-061-2/+20
| | | | Task-number: QT-3718
* Fix photo positioning bug in flickr demo.Yann Bodson2010-08-032-77/+75
| | | | Task-number: QTBUG-3669
* Enter key performs same action as Return key in QML demos.Martin Jones2010-07-141-0/+1
| | | | N900 has an Enter key, not a return key
* Improve input panel handling in declarative demos and examplesJoona Petrell2010-06-031-1/+1
| | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison
* Add license headers for .qml files.Jason McDonald2010-05-216-0/+246
| | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me
* Flickable small API changes.Yann Bodson2010-05-121-2/+2
| | | | | | | | | | - Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones
* More cleanupYann Bodson2010-05-062-5/+9
|
* Use enum rather than string for easing type.Yann Bodson2010-05-053-5/+5
|
* make quitableWarwick Allison2010-04-272-1/+12
|
* Ensure existing image is gone before next photo selection.Warwick Allison2010-04-161-0/+1
| | | | Task-number: QTBUG-8084
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-2/+2
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-086-6/+6
|
* Remove ParentAction.Michael Brasser2010-03-231-4/+6
| | | | It has been replaced with ParentAnimation.
* Deprecate inline Script {} blocksAaron Kennedy2010-03-222-21/+17
| | | | | | | | 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.
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAaron Kennedy2010-03-021-4/+1
|\ | | | | | | | | | | Conflicts: demos/declarative/minehunt/main.cpp demos/declarative/minehunt/minehunt.qml
| * Fix position of image in detail view in flickr-mobileYann Bodson2010-03-011-4/+1
| |
* | Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-023-4/+4
|/ | | | | | | | | | | | | | | | | | | | | 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.
* Change Connection syntax as per QT-2822.Warwick Allison2010-02-261-3/+3
|
* Renamed Flickable viewportXXX properties contentXXXMartin Jones2010-02-261-5/+5
| | | | A viewport is the thing you look through, not what you look at.
* Updates all qml examples/demos to use the easing curve value type syntaxLeonardo Sobral Cunha2010-02-233-5/+5
|
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-222-2/+2
|
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-183-5/+5
| | | | | | | | | | | 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.
* Rename targets -> matchTargets and properties -> matchProperties.Michael Brasser2009-11-063-5/+5
|
* Update semantics of targets/properties and target/property.Michael Brasser2009-11-061-1/+1
| | | | | This is in preparation for renaming targets -> matchTargets and properties to matchProperties.
* cleanupYann Bodson2009-10-284-13/+13
|
* DocAaron Kennedy2009-10-131-0/+0
|
* lowercase idsYann Bodson2009-10-066-111/+107
|
* Change .sci syntax to match BorderImage.Yann Bodson2009-10-053-15/+15
|
* Fix small bugs in flick-mobileYann Bodson2009-09-302-7/+2
|
* Update demos to work with API changesAlan Alpert2009-09-101-1/+1
| | | | Affected are flickr and twitter.
* Remove KeyProxy in favour of the Keys.forwardTo attached property.Martin Jones2009-09-071-6/+2
|
* Disallow using typenames as idsAaron Kennedy2009-09-022-7/+7
| | | | | | | | | This is now illegal: import Qt 4.6 Item { id: Item } as is import Qt 4.6 Item { id: Text }
* improve flickr-mobile detailed viewYann Bodson2009-09-012-2/+131
|
* cleanupYann Bodson2009-09-018-10/+10
|
* Fix bugs in flick-mobile demo.Yann Bodson2009-09-013-11/+11
|
* Fix flickr-mobile toolbarYann Bodson2009-08-313-38/+40
|
* Flickr tweak for more generic componentsAlan Alpert2009-08-271-2/+5
| | | | | Using TitleBar in twitter too, this slight change prevents a copy of the whole component.
* small flickr fixesYann Bodson2009-08-253-3/+3
|
* Mobile version of Flickr demo in flickr-mobile.qml.Yann Bodson2009-08-2513-0/+251