aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml b/tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml
new file mode 100644
index 0000000000..27f9ff0d17
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/text/textinput_echomodes.qml
@@ -0,0 +1,42 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ Column {
+ anchors.centerIn: parent
+
+ TextInput {
+ font.pixelSize: 16
+ font.family: "Arial"
+ echoMode: TextInput.Normal
+ text: "Lorem ipsum"
+ }
+ TextInput {
+ font.pixelSize: 16
+ font.family: "Arial"
+ echoMode: TextInput.NoEcho
+ text: "Lorem ipsum"
+ }
+ TextInput {
+ font.pixelSize: 16
+ font.family: "Arial"
+ echoMode: TextInput.Password
+ text: "Lorem ipsum"
+ }
+ TextInput {
+ font.pixelSize: 16
+ font.family: "Arial"
+ echoMode: TextInput.PasswordEchoOnEdit
+ text: "Lorem ipsum"
+ }
+ TextInput {
+ font.pixelSize: 16
+ font.family: "Arial"
+ echoMode: TextInput.Password
+ passwordCharacter: "o"
+ text: "Lorem ipsum"
+ }
+ }
+}