aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/jumplist
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-10-09 15:12:33 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-10 09:09:09 +0200
commit7a8575566fca28d04337e2d2a41918ab45a57da1 (patch)
tree6a024edf3dc6f7551ea020e32a29e10a8368333d /tests/manual/jumplist
parent2eef1a3cfa90e6eba1cacc3adf23bae05ccee561 (diff)
Add quick-prefix to all QtQuick based manual tests
Change-Id: I4c377ab5db7699c182e8ce3903c10482668840bf Reviewed-by: Ivan Vizir <define-true-false@yandex.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/manual/jumplist')
-rw-r--r--tests/manual/jumplist/jumplist.qmlproject16
-rw-r--r--tests/manual/jumplist/main.qml116
2 files changed, 0 insertions, 132 deletions
diff --git a/tests/manual/jumplist/jumplist.qmlproject b/tests/manual/jumplist/jumplist.qmlproject
deleted file mode 100644
index e5a8bf0..0000000
--- a/tests/manual/jumplist/jumplist.qmlproject
+++ /dev/null
@@ -1,16 +0,0 @@
-import QmlProject 1.1
-
-Project {
- mainFile: "main.qml"
-
- /* Include .qml, .js, and image files from current directory and subdirectories */
- QmlFiles {
- directory: "."
- }
- JavaScriptFiles {
- directory: "."
- }
- ImageFiles {
- directory: "."
- }
-}
diff --git a/tests/manual/jumplist/main.qml b/tests/manual/jumplist/main.qml
deleted file mode 100644
index 963ac8b..0000000
--- a/tests/manual/jumplist/main.qml
+++ /dev/null
@@ -1,116 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, 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, Digia gives you certain additional
-** rights. These rights are described in the Digia 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.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-import QtQuick 2.1
-import QtWinExtras 1.0
-import QtQuick.Dialogs 1.0
-import QtQuick.Layouts 1.0
-import QtQuick.Controls 1.0
-
-ApplicationWindow {
- id: window
-
- title: "JumpList"
-
- width: 800
- height: 400
- minimumWidth: groupBox.implicitWidth + 40
- minimumHeight: groupBox.implicitHeight + 40
-
- JumpList {
- id: jumpList
- recent.visible: recentBox.checked
- frequent.visible: frequentBox.checked
- tasks: JumpListCategory {
- visible: tasksBox.checked
- JumpListLink {
- title: "qmlscene"
- description: "qmlscene main.qml"
- executablePath: Qt.application.arguments[0]
- arguments: Qt.application.arguments[1]
- }
- }
- JumpListCategory {
- title: "Custom"
- visible: customBox.checked
- JumpListLink {
- title: "qmlscene"
- description: "qmlscene main.qml"
- executablePath: Qt.application.arguments[0]
- arguments: Qt.application.arguments[1]
- }
- }
- }
-
- GroupBox {
- id: groupBox
- title: "JumpList"
- anchors.centerIn: parent
- RowLayout {
- anchors.fill: parent
- anchors.margins: 20
- ColumnLayout {
- CheckBox {
- id: recentBox
- text: "Recent"
- }
- CheckBox {
- id: frequentBox
- text: "Frequent"
- }
- CheckBox {
- id: tasksBox
- text: "Tasks"
- }
- CheckBox {
- id: customBox
- text: "Custom"
- }
- }
- Button {
- text: "Open..."
- onClicked: dialog.open()
- FileDialog {
- id: dialog
- }
- }
- }
- }
-}