aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextinput/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetextinput/data')
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/cursorTest.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/echoMode.qml11
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/geometrySignals.qml12
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/halign_center.pngbin293 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/halign_left.pngbin291 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/halign_right.pngbin292 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml22
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment_RightToLeft.qml24
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/inputmethods.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/masks.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/maxLength.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_default.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_readonly.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_words.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_readonly.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_words.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_characters.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_default.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_words.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/navigation.qml24
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/positionAt.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/readOnly.qml12
-rw-r--r--tests/auto/qtquick1/qdeclarativetextinput/data/validators.qml22
25 files changed, 0 insertions, 238 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/cursorTest.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/cursorTest.qml
deleted file mode 100644
index 73085c1749..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/cursorTest.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-Rectangle { width: 300; height: 300; color: "white"
- TextInput { text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
- resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance";} } ]
- cursorDelegate: cursor
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/echoMode.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/echoMode.qml
deleted file mode 100644
index 0320872b86..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/echoMode.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property QtObject myInput: input
-
- width: 400; height: 200; color: "green"
-
- TextInput { id: input; focus: true
- text: "ABCDefgh"
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/geometrySignals.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/geometrySignals.qml
deleted file mode 100644
index 353d0e2f77..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/geometrySignals.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 1.0
-
-Item {
- width: 400; height: 500;
- property int bindingWidth: text.width
- property int bindingHeight: text.height
-
- TextEdit {
- id: text
- anchors.fill: parent
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_center.png b/tests/auto/qtquick1/qdeclarativetextinput/data/halign_center.png
deleted file mode 100644
index 53e09a8e5b..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_center.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_left.png b/tests/auto/qtquick1/qdeclarativetextinput/data/halign_left.png
deleted file mode 100644
index 247acbc9df..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_left.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_right.png b/tests/auto/qtquick1/qdeclarativetextinput/data/halign_right.png
deleted file mode 100644
index 691bc75c89..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/halign_right.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
deleted file mode 100644
index 3114c48209..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 70; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "Test"
-
- Rectangle {
- anchors.centerIn: parent
- width: 60
- height: 20
- color: "green"
-
- TextInput {
- id: text
- anchors.fill: parent
- text: top.text
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment_RightToLeft.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment_RightToLeft.qml
deleted file mode 100644
index 7f27bbe5cb..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/horizontalAlignment_RightToLeft.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 200; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "اختبا"
-
- Rectangle {
- anchors.centerIn: parent
- width: 180
- height: 20
- color: "green"
-
- TextInput {
- id: text
- objectName: "text"
- anchors.fill: parent
- text: top.text
- focus: true
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/inputmethods.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/inputmethods.qml
deleted file mode 100644
index 5063892306..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/inputmethods.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- text: "Hello world!"
- inputMethodHints: Qt.ImhNoPredictiveText
- Keys.onLeftPressed: {}
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/masks.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/masks.qml
deleted file mode 100644
index c75764af91..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/masks.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput{
- focus: true
- objectName: "myInput"
- inputMask: "HHHHhhhh; "
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/maxLength.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/maxLength.qml
deleted file mode 100644
index 95902bb687..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/maxLength.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput{
- focus: true
- objectName: "myInput"
- maximumLength: 10
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_default.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_default.qml
deleted file mode 100644
index eea83ed035..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_default.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false.qml
deleted file mode 100644
index eea83ed035..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_readonly.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_readonly.qml
deleted file mode 100644
index 36a95634e3..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_readonly.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
- readOnly: true
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_words.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_words.qml
deleted file mode 100644
index eea83ed035..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_false_words.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: false
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true.qml
deleted file mode 100644
index 8115ba05e3..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_readonly.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_readonly.qml
deleted file mode 100644
index 678a89aa8b..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_readonly.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- readOnly: true
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_words.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_words.qml
deleted file mode 100644
index 8115ba05e3..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselection_true_words.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_characters.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_characters.qml
deleted file mode 100644
index 0ffc6ff225..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_characters.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.1
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- mouseSelectionMode: TextInput.SelectCharacters
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_default.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_default.qml
deleted file mode 100644
index 87c174be14..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_default.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.1
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_words.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_words.qml
deleted file mode 100644
index df69a7d042..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/mouseselectionmode_words.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.1
-
-TextInput {
- focus: true
- text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- selectByMouse: true
- mouseSelectionMode: TextInput.SelectWords
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/navigation.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/navigation.qml
deleted file mode 100644
index af1b14090e..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/navigation.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property variant myInput: input
-
- width: 800; height: 600; color: "blue"
-
- Item {
- id: firstItem;
- KeyNavigation.right: input
- }
-
- TextInput { id: input; focus: true
- text: "Needs some text"
- KeyNavigation.left: firstItem
- KeyNavigation.right: lastItem
- KeyNavigation.up: firstItem
- KeyNavigation.down: lastItem
- }
- Item {
- id: lastItem
- KeyNavigation.left: input
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/positionAt.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/positionAt.qml
deleted file mode 100644
index cbbf33d9fd..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/positionAt.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-TextInput{
- focus: true
- objectName: "myInput"
- width: 50
- text: "This is a long piece of text"
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/readOnly.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/readOnly.qml
deleted file mode 100644
index f173649ef5..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/readOnly.qml
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property variant myInput: input
-
- width: 800; height: 600; color: "blue"
-
- TextInput { id: input; focus: true
- readOnly: true
- text: "I am the very model of a modern major general.\n"
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetextinput/data/validators.qml b/tests/auto/qtquick1/qdeclarativetextinput/data/validators.qml
deleted file mode 100644
index e26bcb30e6..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextinput/data/validators.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 1.0
-
-Item {
- property variant intInput: intInput
- property variant dblInput: dblInput
- property variant strInput: strInput
-
- width: 800; height: 600;
-
- Column{
- TextInput { id: intInput;
- validator: IntValidator{top: 11; bottom: 2}
- }
- TextInput { id: dblInput;
- validator: DoubleValidator{top: 12.12; bottom: 2.93; decimals: 2; notation: DoubleValidator.StandardNotation}
- }
- TextInput { id: strInput;
- validator: RegExpValidator { regExp: /[a-zA-z]{2,4}/ }
- }
- }
-
-}