summaryrefslogtreecommitdiff
path: root/tests/auto/SpecTextField.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/SpecTextField.qml')
-rw-r--r--tests/auto/SpecTextField.qml85
1 files changed, 0 insertions, 85 deletions
diff --git a/tests/auto/SpecTextField.qml b/tests/auto/SpecTextField.qml
deleted file mode 100644
index 14da3d7c..00000000
--- a/tests/auto/SpecTextField.qml
+++ /dev/null
@@ -1,85 +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 {
- TextField {
- }
- }
-
- property Component api:
- Component {
- QtObject {
- property string placeholderText
- property int inputMethodHints
- property QtObject font
- property int cursorPosition
- property bool readOnly
- property int echoMode
- property bool acceptableInput
- property string inputMask
- property QtObject validator
- property string selectedText
- property int selectionEnd
- property int selectionStart
- property string text
-
- function copy() {}
- function paste() {}
- function cut() {}
- function select(start, end) {}
- function selectAll() {}
- function selectWord() {}
- function positionAt(x) {}
- function positionToRectangle(pos) {}
- }
- }
-
- property Component defaults:
- Component {
- TextField {
- readOnly: false
- echoMode: TextInput.Normal
- cursorPosition: 0
- inputMask: ""
- text: ""
- placeholderText: ""
- }
- }
-
- property Component basic:
- Component {
- TextField {
- width: 200
- height: 200
- text: "Test TextField"
- }
- }
-}