aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-09-20 15:20:27 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 09:49:22 +0200
commit0794c6e552c2df6c7531f7657f276e3c7f90976d (patch)
treec126c36e876d8b4933dc2081416c036b46da56a2 /tests
parent48e14ce3ed6a269cec26c0b18df00617271936d9 (diff)
Sync the jump lists QML API
The C++ API was changed - update the QML API accordingly. Change-Id: I89d0939c4ffc27580e7db53a479db4ff70ee0fef Reviewed-by: Ivan Vizir <define-true-false@yandex.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/jumplist/jumplist.qmlproject16
-rw-r--r--tests/manual/jumplist/main.qml116
2 files changed, 132 insertions, 0 deletions
diff --git a/tests/manual/jumplist/jumplist.qmlproject b/tests/manual/jumplist/jumplist.qmlproject
new file mode 100644
index 0000000..e5a8bf0
--- /dev/null
+++ b/tests/manual/jumplist/jumplist.qmlproject
@@ -0,0 +1,16 @@
+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
new file mode 100644
index 0000000..49a77c4
--- /dev/null
+++ b/tests/manual/jumplist/main.qml
@@ -0,0 +1,116 @@
+/****************************************************************************
+**
+** 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
+ JumpLink {
+ title: "qmlscene"
+ description: "qmlscene main.qml"
+ executablePath: Qt.application.arguments[0]
+ arguments: Qt.application.arguments[1]
+ }
+ }
+ JumpListCategory {
+ title: "Custom"
+ visible: customBox.checked
+ JumpLink {
+ 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
+ }
+ }
+ }
+ }
+}