summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxflipable.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-08-261-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Fix compile after merge from 4.6.Michael Brasser2009-08-251-1/+1
| |
* | Proposed changes following reviewMartin Jones2009-08-261-0/+2
|/
* rewrite QFxFlipable to work with graphics transforms.Lars Knoll2009-07-291-13/+1
| | | | | | | | | Remove it's builtin axis and rotation properties. At least rotation also clashes with QGraphicsObject::rotation making it a bad idea. Now Flipable is a pure two sided item, and the developer/designer will have to set up the flipping tranformation himself.
* make QFxItem use QGraphicsTransformLars Knoll2009-07-291-4/+4
| | | | | | removed all the QFxTransform code and converted QFxItem::transform to use a QmlList instead of a QList.
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-101-1/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-gv Conflicts: examples/itemviews/frozencolumn/main.cpp src/declarative/canvas/qsimplecanvas.cpp src/declarative/canvas/qsimplecanvas_p.h src/declarative/canvas/qsimplecanvasitem.h src/declarative/extra/qfxparticles.cpp src/declarative/fx/fx.pri src/declarative/fx/qfxblurfilter.h src/declarative/fx/qfxcontentwrapper.cpp src/declarative/fx/qfxflickable.cpp src/declarative/fx/qfxfocuspanel.h src/declarative/fx/qfxfocusrealm.h src/declarative/fx/qfxhighlightfilter.cpp src/declarative/fx/qfxhighlightfilter.h src/declarative/fx/qfximage.cpp src/declarative/fx/qfxitem.cpp src/declarative/fx/qfxitem.h src/declarative/fx/qfxrect.cpp src/declarative/fx/qfxreflectionfilter.h src/declarative/fx/qfxshadowfilter.cpp src/declarative/fx/qfxshadowfilter.h src/declarative/fx/qfxtext.cpp src/declarative/fx/qfxtext.h src/declarative/fx/qfxtextedit.cpp src/declarative/opengl/glbasicshaders.h src/declarative/test/qfxtestengine.cpp src/declarative/test/qfxtestengine.h src/declarative/test/qfxtestobjects.cpp src/declarative/test/qfxtestobjects.h src/declarative/test/qfxtestview.h src/declarative/util/qfxglobal.h src/declarative/util/qfxview.cpp src/gui/graphicsview/qgraphicsitem_p.h tools/qmlviewer/qmlviewer.cpp
| * Support compile-in-namespace for the declarative module.Michael Brasser2009-06-301-1/+2
| |
* | Make QSimpleCanvasItem inherit QGraphicsObjectAaron Kennedy2009-06-231-2/+2
| |
* | Remove OpenGL support from Fluid UI primitivesAaron Kennedy2009-06-191-3/+0
|/
* Remove more unneeded semicolons.Martin Jones2009-05-261-1/+1
|
* Remove extraneous semicolons.Martin Jones2009-05-261-1/+1
| | | | Caused massive number of warnings with winscw
* Fixed #includesRoberto Raggi2009-05-181-3/+3
|
* API improvements for Flipable.Michael Brasser2009-04-291-0/+10
| | | | | | You can now specify an axis and rotation, rather than using transform. The tranform behavior has been preserved, however, to allow for cases where you want a more complex transform when rotating.
* API and documentation work on the transform elements.Michael Brasser2009-04-281-0/+96
Axis has been split into Axis, AxisRotation, and AxisTranslation. Basic docs (in some cases just a stub) have been added for these, Perspective, and Squish. Flipable has moved to its own file.