summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeflipable.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change copyrights from Nokia to DigiaIikka Eklund2012-09-291-24/+24
| | | | | | | | Change copyrights and license headers from Nokia to Digia Change-Id: I280c0a575987d1770e354b4948f1d4d767d711ea Reviewed-by: Simo Fält <simo.falt@digia.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Update contact information in license headers.Sergio Ahumada2012-08-011-2/+2
| | | | | | | | | | | | | - Replace Nokia contact email address with Qt Project website. - Remove "All rights reserved" line from license headers. As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: Ie7ba62011752fcb149b99b26317c54f2a0cfa931 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
* Update year in Nokia copyright messages.Jason McDonald2012-01-111-1/+1
| | | | | | | | | Simple search and replace. This commit doesn't touch 3rd-party files, nor translations (where the change is not so simple and will be handled in a separate commit). Change-Id: I4e48513b8078a44a8cd272326685b25338890148 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Converting accidental use of doubles to qreal in declarativemread2011-10-051-2/+2
| | | | | | | | | | | | | Declarative had a number of places where double operations were used instead of qreal, due to the use of double literals. These are now constructed as qreal literals so that qreal operations are used. This makes no difference where qreal is double. But on Symbian, qreal is float, and this give a performance boost for floating point intensive code. Task-number: QTBUG-4894 Reviewed-by: Martin Jones
* 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
* Merge branch 'jpasions-qt-doc-team-qtquick-4.7' into 4.7David Boddie2011-02-171-7/+7
|\ | | | | | | | | | | | | | | Conflicts: doc/src/declarative/propertybinding.qdoc doc/src/overviews.qdoc src/declarative/util/qdeclarativeanimation.cpp src/declarative/util/qdeclarativeview.cpp
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-doc-team into 4.7Jerome Pasion2011-01-171-3/+3
| |\ | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/elements.qdoc doc/src/declarative/extending.qdoc src/declarative/qml/qdeclarativecomponent.cpp
| * | Re-organized the Qt Quick page. Changed titles and links.Jerome Pasion2010-12-201-7/+7
| | | | | | | | | | | | Task-number: QTBUG-16071
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-3/+3
|\ \ \ | | |/ | |/|
| * | Doc: Fixed a few misspellings of FlipableThorbjørn Lindeijer2011-01-111-2/+2
| | |
| * | Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| |/ | | | | | | Reviewed-by: Trust Me
* | Add NOTIFY signals to Flipable 'front' and 'back' propertiesBea Lam2011-01-131-0/+2
|/ | | | | | | | | Although the change notifications themselves may not be that useful, as these properties are write-once, adding the NOTIFY signals allows the properties to be used in bindings. Task-number: QTBUG-16580, QTBUG-14551 Reviewed-by: Martin Jones
* Fix Flipable docsBea Lam2010-10-221-13/+14
| | | | Task-number: QTBUG-13789
* Doc: Worked on two more elements, replacing an image.David Boddie2010-09-061-10/+19
|
* Remove pointless \internal docs (that contain no information)Aaron Kennedy2010-08-271-9/+0
|
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+2
| | | | ...and a set of functional group pages.
* Explain Flipable example furtherBea Lam2010-08-091-4/+10
|
* Doc fixes and improvements - fix some example code, link toBea Lam2010-06-021-4/+6
| | | | examples from class docs and improve assorted docs
* Correct Flipable back item based on parent, not scene transformAaron Kennedy2010-05-111-6/+9
| | | | | | | | | | Flipable transformation consists of two parts: 1. Detecting that the back face is visible 2. Transforming the back item as though "it were on the front" These are two steps. The first should be done in scene coordinates, and the second relative to the Flipable parent. QTBUG-10532
* docWarwick Allison2010-05-051-1/+1
| | | | Task-number: QTBUG-10386
* Remove obsolete doc groupings.Michael Brasser2010-05-041-2/+0
|
* Fix flipable behaviour when back element is resizedAlan Alpert2010-04-191-12/+37
| | | | | Task-number: QTBUG-8424 Reviewed-by: mae
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-3/+3
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Improve flipable example.Yann Bodson2010-03-311-1/+1
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7Martin Jones2010-03-251-1/+1
|\ | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativeitem.cpp
| * Merge remote branch 'main/4.7' into 4.7Morten Johan Sørvig2010-03-251-4/+5
| |\ | | | | | | | | | | | | | | | Conflicts: demos/declarative/minehunt/minehunt.cpp src/declarative/qml/qdeclarativecompiler.cpp
| * | doc: Fixed all the remaining qdoc errors. For now.Martin Smith2010-03-241-1/+1
| | |
* | | Port Flickable and Flipable to support QGraphicsObject.Alexis Menard2010-03-251-10/+11
| |/ |/| | | | | | | | | Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too. Reviewed-by:akennedy
* | Fix abort in flipableLeonardo Sobral Cunha2010-03-241-1/+1
| | | | | | | | | | | | | | | | | | Flipable was calling updateSceneTransformFromParent, but this can only called when the the parent's scene transform is guaranteed to be updated, which is not the case in flipable. Task-number: QTBUG-8474 Reviewed-by: bnilsen
* | Fix Flipable crash.Michael Brasser2010-03-211-3/+4
|/ | | | Task-number: QTBUG-9161
* Add Flipable example.Bea Lam2010-03-081-38/+13
| | | | Task-number: QT-2824
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+238
QDeclarativeXXX.