Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | demos/declarative/flickr example modifications | artoka | 2011-11-17 | 15 | -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.8 | Jyri Tahtela | 2011-05-13 | 6 | -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 McDonald | 2011-01-10 | 6 | -6/+6 |
| | | | | Reviewed-by: Trust Me | ||||
* | Do not show 'More' button when in fullscreen view. | Yann Bodson | 2010-10-06 | 2 | -9/+15 |
| | | | | Task-number: QTBUG-11813 | ||||
* | Replace all occurances of "Qt 4.7" with "QtQuick 1.0" | Aaron Kennedy | 2010-09-29 | 6 | -6/+6 |
| | | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones | ||||
* | Fix text size issues for high ppi displays | Alessandro Portale | 2010-09-07 | 4 | -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 Jones | 2010-09-06 | 1 | -2/+20 |
| | | | | Task-number: QT-3718 | ||||
* | Fix photo positioning bug in flickr demo. | Yann Bodson | 2010-08-03 | 2 | -77/+75 |
| | | | | Task-number: QTBUG-3669 | ||||
* | Enter key performs same action as Return key in QML demos. | Martin Jones | 2010-07-14 | 1 | -0/+1 |
| | | | | N900 has an Enter key, not a return key | ||||
* | Improve input panel handling in declarative demos and examples | Joona Petrell | 2010-06-03 | 1 | -1/+1 |
| | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison | ||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 6 | -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 Bodson | 2010-05-12 | 1 | -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 cleanup | Yann Bodson | 2010-05-06 | 2 | -5/+9 |
| | |||||
* | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 3 | -5/+5 |
| | |||||
* | make quitable | Warwick Allison | 2010-04-27 | 2 | -1/+12 |
| | |||||
* | Ensure existing image is gone before next photo selection. | Warwick Allison | 2010-04-16 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-8084 | ||||
* | Replace "property var " with "property variant " in QML code | Aaron Kennedy | 2010-04-09 | 1 | -2/+2 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 6 | -6/+6 |
| | |||||
* | Remove ParentAction. | Michael Brasser | 2010-03-23 | 1 | -4/+6 |
| | | | | It has been replaced with ParentAnimation. | ||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 2 | -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-qml | Aaron Kennedy | 2010-03-02 | 1 | -4/+1 |
|\ | | | | | | | | | | | Conflicts: demos/declarative/minehunt/main.cpp demos/declarative/minehunt/minehunt.qml | ||||
| * | Fix position of image in detail view in flickr-mobile | Yann Bodson | 2010-03-01 | 1 | -4/+1 |
| | | |||||
* | | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 3 | -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 Allison | 2010-02-26 | 1 | -3/+3 |
| | |||||
* | Renamed Flickable viewportXXX properties contentXXX | Martin Jones | 2010-02-26 | 1 | -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 syntax | Leonardo Sobral Cunha | 2010-02-23 | 3 | -5/+5 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 2 | -2/+2 |
| | |||||
* | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 3 | -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 Brasser | 2009-11-06 | 3 | -5/+5 |
| | |||||
* | Update semantics of targets/properties and target/property. | Michael Brasser | 2009-11-06 | 1 | -1/+1 |
| | | | | | This is in preparation for renaming targets -> matchTargets and properties to matchProperties. | ||||
* | cleanup | Yann Bodson | 2009-10-28 | 4 | -13/+13 |
| | |||||
* | Doc | Aaron Kennedy | 2009-10-13 | 1 | -0/+0 |
| | |||||
* | lowercase ids | Yann Bodson | 2009-10-06 | 6 | -111/+107 |
| | |||||
* | Change .sci syntax to match BorderImage. | Yann Bodson | 2009-10-05 | 3 | -15/+15 |
| | |||||
* | Fix small bugs in flick-mobile | Yann Bodson | 2009-09-30 | 2 | -7/+2 |
| | |||||
* | Update demos to work with API changes | Alan Alpert | 2009-09-10 | 1 | -1/+1 |
| | | | | Affected are flickr and twitter. | ||||
* | Remove KeyProxy in favour of the Keys.forwardTo attached property. | Martin Jones | 2009-09-07 | 1 | -6/+2 |
| | |||||
* | Disallow using typenames as ids | Aaron Kennedy | 2009-09-02 | 2 | -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 view | Yann Bodson | 2009-09-01 | 2 | -2/+131 |
| | |||||
* | cleanup | Yann Bodson | 2009-09-01 | 8 | -10/+10 |
| | |||||
* | Fix bugs in flick-mobile demo. | Yann Bodson | 2009-09-01 | 3 | -11/+11 |
| | |||||
* | Fix flickr-mobile toolbar | Yann Bodson | 2009-08-31 | 3 | -38/+40 |
| | |||||
* | Flickr tweak for more generic components | Alan Alpert | 2009-08-27 | 1 | -2/+5 |
| | | | | | Using TitleBar in twitter too, this slight change prevents a copy of the whole component. | ||||
* | small flickr fixes | Yann Bodson | 2009-08-25 | 3 | -3/+3 |
| | |||||
* | Mobile version of Flickr demo in flickr-mobile.qml. | Yann Bodson | 2009-08-25 | 13 | -0/+251 |