summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/mobile/ImageDetails.qml
Commit message (Collapse)AuthorAgeFilesLines
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
| | | | | | | 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-101-1/+1
| | | | Reviewed-by: Trust Me
* Do not show 'More' button when in fullscreen view.Yann Bodson2010-10-061-0/+2
| | | | Task-number: QTBUG-11813
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-291-1/+1
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Fix text size issues for high ppi displaysAlessandro Portale2010-09-071-1/+1
| | | | | | | | | | | 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-031-11/+11
| | | | Task-number: QTBUG-3669
* Add license headers for .qml files.Jason McDonald2010-05-211-0/+41
| | | | | | | 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-061-4/+8
|
* Use enum rather than string for easing type.Yann Bodson2010-05-051-1/+1
|
* 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-081-1/+1
|
* 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-021-1/+1
|/ | | | | | | | | | | | | | | | | | | | | 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.
* 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-231-1/+1
|
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-181-1/+1
| | | | | | | | | | | 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-061-1/+1
|
* cleanupYann Bodson2009-10-281-7/+7
|
* lowercase idsYann Bodson2009-10-061-37/+37
|
* Fix small bugs in flick-mobileYann Bodson2009-09-301-5/+0
|
* Disallow using typenames as idsAaron Kennedy2009-09-021-2/+2
| | | | | | | | | 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-011-0/+129