summaryrefslogtreecommitdiffstats
path: root/tests/manual/navigation1
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/navigation1')
-rw-r--r--tests/manual/navigation1/README8
-rw-r--r--tests/manual/navigation1/main.cpp63
-rw-r--r--tests/manual/navigation1/navigation1.pro10
-rw-r--r--tests/manual/navigation1/qml/meshes/monkey.3dsbin13886 -> 0 bytes
-rw-r--r--tests/manual/navigation1/qml/tst_navigation1.qml133
-rw-r--r--tests/manual/navigation1/qtquick3d.pngbin4050 -> 0 bytes
6 files changed, 0 insertions, 214 deletions
diff --git a/tests/manual/navigation1/README b/tests/manual/navigation1/README
deleted file mode 100644
index 29aaad44..00000000
--- a/tests/manual/navigation1/README
+++ /dev/null
@@ -1,8 +0,0 @@
-This tests navigation, specifically zooming and rotating the object using the default
-navigation configuration for QML applications.
-
-The first panel shows a 3D monkey head, and uses positional zooming: zooming in will
-move the camera physically closer to the object until it is clipped by the near plane.
-
-The second panel show a 3D monkey head, and uses field of view zooming: zooming is
-based on adjusting the field of view: zooming in will not clip the object.
diff --git a/tests/manual/navigation1/main.cpp b/tests/manual/navigation1/main.cpp
deleted file mode 100644
index f3d6a8b9..00000000
--- a/tests/manual/navigation1/main.cpp
+++ /dev/null
@@ -1,63 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the QtQuick3D module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtGui/QApplication>
-#include "qdeclarativeview3d.h"
-
-#include "../../shared/qmlres.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QDeclarativeView3D view;
- QString qml = q_get_qmldir(QLatin1String("qml/tst_navigation1.qml"));
- view.setSource(QUrl::fromLocalFile(qml));
-
- if (QApplication::arguments().contains(QLatin1String("-maximize")))
- view.showMaximized();
- else if (QApplication::arguments().contains(QLatin1String("-fullscreen")))
- view.showFullScreen();
- else
- view.show();
-
- return app.exec();
-}
diff --git a/tests/manual/navigation1/navigation1.pro b/tests/manual/navigation1/navigation1.pro
deleted file mode 100644
index a1d3bfad..00000000
--- a/tests/manual/navigation1/navigation1.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-TEMPLATE = app
-TARGET = tst_navigation1
-CONFIG += qt warn_on
-
-INSTALL_DIRS = qml
-CONFIG += qt3d_deploy_qml qt3dquick_deploy_pkg
-include(../../../pkg.pri)
-qtcAddDeployment()
-
-SOURCES += main.cpp
diff --git a/tests/manual/navigation1/qml/meshes/monkey.3ds b/tests/manual/navigation1/qml/meshes/monkey.3ds
deleted file mode 100644
index e9a007b2..00000000
--- a/tests/manual/navigation1/qml/meshes/monkey.3ds
+++ /dev/null
Binary files differ
diff --git a/tests/manual/navigation1/qml/tst_navigation1.qml b/tests/manual/navigation1/qml/tst_navigation1.qml
deleted file mode 100644
index 14f16429..00000000
--- a/tests/manual/navigation1/qml/tst_navigation1.qml
+++ /dev/null
@@ -1,133 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the QtQuick3D module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 1.0
-import Qt3D 1.0
-import Qt3D.Shapes 1.0
-
-// QTBUG-17408 TEST
-Item {
- id: screen
- width: 720
- height: 480
-
- //ITEM 1: Simple model without materials
- Rectangle {
- id: panel1
- x: 0; y:0
- width: screen.width/2
- height: screen.height
- border.width: 3
- color: "#3333aa"
-
- Viewport {
- anchors.fill: parent
- camera: Camera { eye: Qt.vector3d(0,3,15)}
-
- Item3D {
- scale: 2
- position: Qt.vector3d(0,-1,0)
- mesh: Mesh {source: "meshes/monkey.3ds"}
- }
- }
-
- Rectangle {
- border.width: 3; radius: 5
- width: parent.width
- height: text1.height + 10
- Text {
- id: text1
- width: parent.width
- wrapMode: "WordWrap"
- text: " POSITIONAL ZOOM:\n\n" +
- " A shaded lit monkey head should\n"+
- " be displayed. Left click-and-hold" +
- " & move mouse to rotate.\n\n" +
- " Wheel to zoom. Zooming in should\n"+
- " result in eventual clipping.";
- anchors.centerIn: parent
- }
- }
- }
-
- //ITEM 2: Simple model with materials
- Rectangle {
- id: panel2
- anchors.left: panel1.right
- anchors.top: parent.top
- anchors.right: parent.right
- height: screen.height
- border.width: 3
- color: "#3333aa"
-
- Viewport {
- anchors.fill: parent
- fovzoom: true
- camera: Camera { eye: Qt.vector3d(0,3,15)}
-
- Item3D {
- scale: 2
- position: Qt.vector3d(0,-1,0)
- mesh: Mesh {source: "meshes/monkey.3ds"}
- }
- }
-
- Rectangle {
- border.width: 3; radius: 5
- width: parent.width
- height: text2.height + 10
- Text {
- id: text2
- width: parent.width
- wrapMode: "WordWrap"
- text: " FIELD-OF-VIEW ZOOM:\n\n" +
- " A shaded lit monkey head should\n"+
- " be displayed. Left click-and-hold" +
- " & move mouse to rotate.\n\n" +
- " Wheel to zoom. Zooming in should\n"+
- " not result in eventual clipping.";
- anchors.centerIn: parent
- }
- }
- }
-}
-
-
diff --git a/tests/manual/navigation1/qtquick3d.png b/tests/manual/navigation1/qtquick3d.png
deleted file mode 100644
index 8351083e..00000000
--- a/tests/manual/navigation1/qtquick3d.png
+++ /dev/null
Binary files differ