summaryrefslogtreecommitdiff
path: root/tests/auto/SpecProgressBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/SpecProgressBar.qml')
-rw-r--r--tests/auto/SpecProgressBar.qml64
1 files changed, 0 insertions, 64 deletions
diff --git a/tests/auto/SpecProgressBar.qml b/tests/auto/SpecProgressBar.qml
deleted file mode 100644
index f77be1ed..00000000
--- a/tests/auto/SpecProgressBar.qml
+++ /dev/null
@@ -1,64 +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 Qt Components API Conformance Test Suite.
-**
-** No Commercial Usage
-** This file contains pre-release code and may not be distributed.
-** You may use this file in accordance with the terms and conditions contained
-** in the Technology Preview License Agreement accompanying this package.
-**
-** 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.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
-**
-****************************************************************************/
-
-import QtQuick 1.0
-import "../../components"
-
-QtObject {
- property Component raw:
- Component {
- ProgressBar {
- }
- }
-
- property Component api:
- Component {
- QtObject {
- property real minimumValue
- property real maximumValue
- property real value
- property bool indeterminate
- }
- }
-
- property Component defaults:
- Component {
- ProgressBar {
- minimumValue: 0.0
- maximumValue: 1.0
- value: 0.0
- indeterminate: false
- }
- }
-
- property Component basic:
- Component {
- ProgressBar {
- width: 200
- height: 200
- }
- }
-}