diff options
author | Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com> | 2010-05-11 14:02:16 (GMT) |
---|---|---|
committer | Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com> | 2010-05-12 14:36:10 (GMT) |
commit | e4902b4f25ca9c1ecff99609dbe376b407d9c6c5 (patch) | |
tree | f66db8d2cc152da3208fe1f3729692b9dfe00996 /examples/graphicsview/padnavigator/padnavigator.pro | |
parent | 953411c6eecc4175752ade1834bf8db3398961c5 (diff) | |
download | Qt-e4902b4f25ca9c1ecff99609dbe376b407d9c6c5.zip Qt-e4902b4f25ca9c1ecff99609dbe376b407d9c6c5.tar.gz Qt-e4902b4f25ca9c1ecff99609dbe376b407d9c6c5.tar.bz2 |
New Pad Nagivator example implementation.
The old implementation was demo-quality and didn't really belong in
the examples section. This new code cleans up the implementation, and
also makes use of brand new features such as the state machine and
animated transitions system.
The new code is more suitable for documentation, and full docs are
coming up in the next commit.
Diffstat (limited to 'examples/graphicsview/padnavigator/padnavigator.pro')
-rw-r--r-- | examples/graphicsview/padnavigator/padnavigator.pro | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/examples/graphicsview/padnavigator/padnavigator.pro b/examples/graphicsview/padnavigator/padnavigator.pro index d6f536c..93ea293 100644 --- a/examples/graphicsview/padnavigator/padnavigator.pro +++ b/examples/graphicsview/padnavigator/padnavigator.pro @@ -1,19 +1,20 @@ -HEADERS += \ - panel.h \ - roundrectitem.h \ - splashitem.h +SOURCES += main.cpp \ + roundrectitem.cpp \ + flippablepad.cpp \ + padnavigator.cpp \ + splashitem.cpp -SOURCES += \ - panel.cpp \ - roundrectitem.cpp \ - splashitem.cpp \ - main.cpp +HEADERS += \ + roundrectitem.h \ + flippablepad.h \ + padnavigator.h \ + splashitem.h RESOURCES += \ - padnavigator.qrc + padnavigator.qrc FORMS += \ - backside.ui + form.ui contains(QT_CONFIG, opengl):QT += opengl |