summaryrefslogtreecommitdiff
path: root/tests/manual
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2013-05-03 13:00:14 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-07 07:52:44 +0200
commit1667675fcdf30635aa9799728ad226abf875786e (patch)
treed2c13ad41955e8e04a66cdbc7d41a63ebf714ed4 /tests/manual
parentfbd18c8b1fbda00e865bed33839c2c5ab26f8de2 (diff)
downloadqtquickcontrols-1667675fcdf30635aa9799728ad226abf875786e.tar.gz
Remove experimental controls
Those controls are not properly tested nor documented. They are not part of the release. Remove them for now to avoid confusion. Change-Id: Ic8bb536e9e91f4fb763f0e1c9b00602e87dd8c44 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/Dialog.qml70
1 files changed, 0 insertions, 70 deletions
diff --git a/tests/manual/Dialog.qml b/tests/manual/Dialog.qml
deleted file mode 100644
index 8b65f706..00000000
--- a/tests/manual/Dialog.qml
+++ /dev/null
@@ -1,70 +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 Qt Quick Controls module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.1
-import QtQuick.Controls.Experimental 1.0
-
-Rectangle {
- width: 300
- height: 200
-
- Text {
- anchors.fill: parent
- text: "Click here"
-
- MouseArea {
- anchors.fill: parent
- onClicked: testDialog.visible = true
- }
- }
-
- Dialog {
- id: testDialog
- title: "Test dialog"
- visible: false
-
- Text {
- text: "This is the dialog content"
- }
-
- onAccepted: console.log("Accepted")
- onRejected: console.log("Rejected")
- }
-}