summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-04-06 13:36:17 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-04-12 07:21:33 (GMT)
commitefc80209fb5e6ac9d0343b3c9f6d5a1548cf5556 (patch)
tree28b0cac83c4991b5e6b219c1277197c792fcd3ce
parent3a632cb5f1c1da5c2e72ce167e35a42778867829 (diff)
downloadQt-efc80209fb5e6ac9d0343b3c9f6d5a1548cf5556.zip
Qt-efc80209fb5e6ac9d0343b3c9f6d5a1548cf5556.tar.gz
Qt-efc80209fb5e6ac9d0343b3c9f6d5a1548cf5556.tar.bz2
Add some TextInput properties and methods
Adds the properties -passwordCharacter -displayText And the method -moveCursorSelection(int pos) These just provide a QML way to access existing QLineControl functionality, and are necessary to create desktop style LineEdits (the existing TextInput QML API was designed with a focus on touch input LineEdits) Includes tests and documentation. Task-number: QT-321 Reviewed-by: Aaron Kennedy
-rw-r--r--src/declarative/graphicsitems/qdeclarativetextinput.cpp83
-rw-r--r--src/declarative/graphicsitems/qdeclarativetextinput_p.h15
-rw-r--r--tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml11
-rw-r--r--tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp39
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml67
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.pngbin999 -> 716 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.pngbin1880 -> 1352 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.pngbin2962 -> 2047 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml376
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.pngbin0 -> 3137 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.pngbin0 -> 3195 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.pngbin0 -> 3853 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.pngbin0 -> 3171 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.pngbin0 -> 3228 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.pngbin0 -> 3198 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.pngbin0 -> 3310 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.pngbin0 -> 3233 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.pngbin0 -> 3607 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.pngbin0 -> 3657 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.pngbin0 -> 3262 bytes
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml4335
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml2
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml10
23 files changed, 4745 insertions, 193 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativetextinput.cpp b/src/declarative/graphicsitems/qdeclarativetextinput.cpp
index 29e43f9..e6d0948 100644
--- a/src/declarative/graphicsitems/qdeclarativetextinput.cpp
+++ b/src/declarative/graphicsitems/qdeclarativetextinput.cpp
@@ -634,7 +634,18 @@ void QDeclarativeTextInput::moveCursor()
d->cursorItem->setX(d->control->cursorToX() - d->hscroll);
}
-int QDeclarativeTextInput::xToPos(int x)
+/*
+ \qmlmethod int xToPosition(int x)
+
+ This function returns the character position at
+ x pixels from the left of the textInput. Position 0 is before the
+ first character, position 1 is after the first character but before the second,
+ and so on until position text.length, which is after all characters.
+
+ This means that for all x values before the first character this function returns 0,
+ and for all x values after the last character this function returns text.length.
+*/
+int QDeclarativeTextInput::xToPosition(int x)
{
Q_D(const QDeclarativeTextInput);
return d->control->xToPos(x - d->hscroll);
@@ -645,6 +656,8 @@ void QDeclarativeTextInputPrivate::focusChanged(bool hasFocus)
Q_Q(QDeclarativeTextInput);
focused = hasFocus;
q->setCursorVisible(hasFocus);
+ if(q->echoMode() == QDeclarativeTextInput::PasswordEchoOnEdit && !hasFocus)
+ control->updatePasswordEchoEditing(false);//QLineControl sets it on key events, but doesn't deal with focus events
QDeclarativeItemPrivate::focusChanged(hasFocus);
}
@@ -809,6 +822,72 @@ void QDeclarativeTextInput::selectAll()
filtering at the beginning of the animation and reenable it at the conclusion.
*/
+/*
+ \qmlproperty string TextInput::passwordCharacter
+
+ This is the character displayed when echoMode is set to Password or
+ PasswordEchoOnEdit. By default it is an asterisk.
+
+ Attempting to set this to more than one character will set it to
+ the first character in the string. Attempting to set this to less
+ than one character will fail.
+*/
+QString QDeclarativeTextInput::passwordCharacter() const
+{
+ Q_D(const QDeclarativeTextInput);
+ return QString(d->control->passwordCharacter());
+}
+
+void QDeclarativeTextInput::setPasswordCharacter(const QString &str)
+{
+ Q_D(QDeclarativeTextInput);
+ if(str.length() < 1)
+ return;
+ emit passwordCharacterChanged();
+ d->control->setPasswordCharacter(str.constData()[0]);
+}
+
+/*
+ \qmlproperty string TextInput::displayText
+
+ This is the actual text displayed in the TextInput. When
+ echoMode is set to TextInput::Normal this will be exactly
+ the same as the TextInput::text property. When echoMode
+ is set to something else, this property will contain the text
+ the user sees, while the text property will contain the
+ entered text.
+*/
+QString QDeclarativeTextInput::displayText() const
+{
+ Q_D(const QDeclarativeTextInput);
+ return d->control->displayText();
+}
+
+/*
+ \qmlmethod void moveCursorSelection(int pos)
+
+ This method allows you to move the cursor while modifying the selection accordingly.
+ To simply move the cursor, set the cursorPosition property.
+
+ When this method is called it additionally sets either the
+ selectionStart or the selectionEnd (whichever was at the previous cursor position)
+ to the specified position. This allows you to easily extend and contract the selected
+ text range.
+
+ Example: The sequence of calls
+ cursorPosition = 5
+ moveCursorSelection(9)
+ moveCursorSelection(7)
+ would move the cursor to position 5, extend the selection end from 5 to 9
+ and then retract the selection end from 9 to 7, leaving the text from position 5 to 7
+ selected (the 6th and 7th characters).
+*/
+void QDeclarativeTextInput::moveCursorSelection(int pos)
+{
+ Q_D(QDeclarativeTextInput);
+ d->control->moveCursor(pos, true);
+}
+
void QDeclarativeTextInputPrivate::init()
{
Q_Q(QDeclarativeTextInput);
@@ -824,6 +903,8 @@ void QDeclarativeTextInputPrivate::init()
q->connect(control, SIGNAL(selectionChanged()),
q, SLOT(selectionChanged()));
q->connect(control, SIGNAL(textChanged(const QString &)),
+ q, SIGNAL(displayTextChanged(const QString &)));
+ q->connect(control, SIGNAL(textChanged(const QString &)),
q, SLOT(q_textChanged()));
q->connect(control, SIGNAL(accepted()),
q, SIGNAL(accepted()));
diff --git a/src/declarative/graphicsitems/qdeclarativetextinput_p.h b/src/declarative/graphicsitems/qdeclarativetextinput_p.h
index 64aff7d..e453f5d 100644
--- a/src/declarative/graphicsitems/qdeclarativetextinput_p.h
+++ b/src/declarative/graphicsitems/qdeclarativetextinput_p.h
@@ -86,6 +86,8 @@ class Q_DECLARATIVE_EXPORT QDeclarativeTextInput : public QDeclarativePaintedIte
Q_PROPERTY(bool acceptableInput READ hasAcceptableInput NOTIFY acceptableInputChanged)
Q_PROPERTY(EchoMode echoMode READ echoMode WRITE setEchoMode NOTIFY echoModeChanged)
Q_PROPERTY(bool focusOnPress READ focusOnPress WRITE setFocusOnPress NOTIFY focusOnPressChanged)
+ Q_PROPERTY(QString passwordCharacter READ passwordCharacter WRITE setPasswordCharacter NOTIFY passwordCharacterChanged)
+ Q_PROPERTY(QString displayText READ displayText NOTIFY displayTextChanged)
public:
QDeclarativeTextInput(QDeclarativeItem* parent=0);
@@ -104,9 +106,9 @@ public:
AlignHCenter = Qt::AlignHCenter
};
- //### Should we have this function, x based properties,
- //### or copy TextEdit with x instead of QTextCursor?
- Q_INVOKABLE int xToPos(int x);
+ //Auxilliary functions needed to control the TextInput from QML
+ Q_INVOKABLE int xToPosition(int x);
+ Q_INVOKABLE void moveCursorSelection(int pos);
QString text() const;
void setText(const QString &);
@@ -157,6 +159,11 @@ public:
EchoMode echoMode() const;
void setEchoMode(EchoMode echo);
+ QString passwordCharacter() const;
+ void setPasswordCharacter(const QString &str);
+
+ QString displayText() const;
+
QDeclarativeComponent* cursorDelegate() const;
void setCursorDelegate(QDeclarativeComponent*);
@@ -188,6 +195,8 @@ Q_SIGNALS:
void validatorChanged();
void inputMaskChanged(const QString &inputMask);
void echoModeChanged(EchoMode echoMode);
+ void passwordCharacterChanged();
+ void displayTextChanged(const QString &text);
void focusOnPressChanged(bool focusOnPress);
protected:
diff --git a/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml
new file mode 100644
index 0000000..5773cc2
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml
@@ -0,0 +1,11 @@
+import Qt 4.7
+
+Rectangle {
+ property var myInput: input
+
+ width: 400; height: 200; color: "green"
+
+ TextInput { id: input; focus: true
+ text: "ABCDefgh"
+ }
+}
diff --git a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp
index b6f55dd..26d4cb1 100644
--- a/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp
+++ b/tests/auto/declarative/qdeclarativetextinput/tst_qdeclarativetextinput.cpp
@@ -74,6 +74,7 @@ private slots:
void sendRequestSoftwareInputPanelEvent();
void setHAlignClearCache();
+ void echoMode();
private:
void simulateKey(QDeclarativeView *, int key);
QDeclarativeView *createView(const QString &filename);
@@ -587,6 +588,44 @@ void tst_qdeclarativetextinput::readOnly()
QCOMPARE(input->text(), initial);
}
+void tst_qdeclarativetextinput::echoMode()
+{
+ QDeclarativeView *canvas = createView(SRCDIR "/data/echoMode.qml");
+ canvas->show();
+ canvas->setFocus();
+
+ QVERIFY(canvas->rootObject() != 0);
+
+ QDeclarativeTextInput *input = qobject_cast<QDeclarativeTextInput *>(qvariant_cast<QObject *>(canvas->rootObject()->property("myInput")));
+
+ QVERIFY(input != 0);
+ QTRY_VERIFY(input->hasFocus() == true);
+ QString initial = input->text();
+ QCOMPARE(initial, QLatin1String("ABCDefgh"));
+ QCOMPARE(input->echoMode(), QDeclarativeTextInput::Normal);
+ QCOMPARE(input->displayText(), input->text());
+ input->setEchoMode(QDeclarativeTextInput::NoEcho);
+ QCOMPARE(input->text(), initial);
+ QCOMPARE(input->displayText(), QLatin1String(""));
+ QCOMPARE(input->passwordCharacter(), QLatin1String("*"));
+ input->setEchoMode(QDeclarativeTextInput::Password);
+ QCOMPARE(input->text(), initial);
+ QCOMPARE(input->displayText(), QLatin1String("********"));
+ input->setPasswordCharacter(QChar('Q'));
+ QCOMPARE(input->passwordCharacter(), QLatin1String("Q"));
+ QCOMPARE(input->text(), initial);
+ QCOMPARE(input->displayText(), QLatin1String("QQQQQQQQ"));
+ input->setEchoMode(QDeclarativeTextInput::PasswordEchoOnEdit);
+ QCOMPARE(input->text(), initial);
+ QCOMPARE(input->displayText(), QLatin1String("QQQQQQQQ"));
+ QTest::keyPress(canvas, Qt::Key_A);//Clearing previous entry is part of PasswordEchoOnEdit
+ QTest::keyRelease(canvas, Qt::Key_A, Qt::NoModifier ,10);
+ QCOMPARE(input->text(), QLatin1String("a"));
+ QCOMPARE(input->displayText(), QLatin1String("a"));
+ input->setFocus(false);
+ QCOMPARE(input->displayText(), QLatin1String("Q"));
+}
+
void tst_qdeclarativetextinput::simulateKey(QDeclarativeView *view, int key)
{
QKeyEvent press(QKeyEvent::KeyPress, key, 0);
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml
new file mode 100644
index 0000000..31f24ec
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml
@@ -0,0 +1,67 @@
+import Qt 4.7
+
+Item {
+ id:lineedit
+ property alias text: textInp.text
+
+ width: textInp.width + 11
+ height: 13 + 11
+
+ Rectangle{
+ color: 'lightsteelblue'
+ anchors.fill: parent
+ }
+ clip: true
+ Component.onCompleted: textInp.cursorPosition = 0;
+ TextInput{
+ id:textInp
+ cursorDelegate: Item{
+ Rectangle{
+ visible: parent.parent.focus
+ color: "#009BCE"
+ height: 13
+ width: 2
+ y: 1
+ }
+ }
+ property int leftMargin: 6
+ property int rightMargin: 6
+ x: leftMargin
+ y: 5
+ //Below function implements all scrolling logic
+ onCursorPositionChanged: {
+ if(cursorRect.x < leftMargin - textInp.x){//Cursor went off the front
+ textInp.x = leftMargin - Math.max(0, cursorRect.x);
+ }else if(cursorRect.x > parent.width - leftMargin - rightMargin - textInp.x){//Cusor went off the end
+ textInp.x = leftMargin - Math.max(0, cursorRect.x - (parent.width - leftMargin - rightMargin));
+ }
+ }
+
+ text:""
+ horizontalAlignment: TextInput.AlignLeft
+ font.pixelSize:15
+ }
+ MouseArea{
+ //Implements all line edit mouse handling
+ id: mainMouseArea
+ anchors.fill: parent;
+ function translateX(x){
+ return x - textInp.x
+ }
+ onPressed: {
+ textInp.focus = true;
+ textInp.cursorPosition = textInp.xToPosition(translateX(mouse.x));
+ }
+ onPositionChanged: {
+ textInp.moveCursorSelection(textInp.xToPosition(translateX(mouse.x)));
+ }
+ onReleased: {
+ }
+ onDoubleClicked: {
+ textInp.selectionStart=0;
+ textInp.selectionEnd=textInp.text.length;
+ }
+ z: textInp.z + 1
+ }
+
+}
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png
index 2b45a06..f30ee4f 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png
index 1f5bae0..7ae3b94 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png
index cb2b5a4..636afe8 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml
index dd7b291..b779c21 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml
@@ -6,11 +6,11 @@ VisualTest {
}
Frame {
msec: 16
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 32
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Key {
type: 6
@@ -22,83 +22,83 @@ VisualTest {
}
Frame {
msec: 48
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 64
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 80
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 96
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 112
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 128
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 144
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 160
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 176
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 192
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 208
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 224
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 240
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 256
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 272
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 288
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 304
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 320
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 336
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Frame {
msec: 352
- hash: "b73bd9c2fef8812591fff9f43b73da13"
+ hash: "48400809c3862dae64b0cd00d51057a4"
}
Key {
type: 6
@@ -110,23 +110,23 @@ VisualTest {
}
Frame {
msec: 368
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 384
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 400
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 416
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 432
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Key {
type: 7
@@ -138,27 +138,27 @@ VisualTest {
}
Frame {
msec: 448
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 464
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 480
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 496
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 512
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Frame {
msec: 528
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "4acf112eda369b7eb351e0e522cefa05"
}
Key {
type: 7
@@ -170,43 +170,43 @@ VisualTest {
}
Frame {
msec: 544
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 560
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 576
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 592
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 608
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 624
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 640
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 656
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 672
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Frame {
msec: 688
- hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125"
+ hash: "238dc96885dadb763bfc1500d8b7c5b2"
}
Key {
type: 6
@@ -218,23 +218,23 @@ VisualTest {
}
Frame {
msec: 704
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 720
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 736
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 752
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 768
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Key {
type: 7
@@ -246,23 +246,23 @@ VisualTest {
}
Frame {
msec: 784
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 800
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 816
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 832
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Frame {
msec: 848
- hash: "fbc09d695e0b47aae6e977c13f535bfd"
+ hash: "2da540e72d88932b61a261d791fc34b0"
}
Key {
type: 6
@@ -274,15 +274,15 @@ VisualTest {
}
Frame {
msec: 864
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Frame {
msec: 880
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Frame {
msec: 896
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Key {
type: 7
@@ -294,15 +294,15 @@ VisualTest {
}
Frame {
msec: 912
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Frame {
msec: 928
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Frame {
msec: 944
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Frame {
msec: 960
@@ -310,7 +310,7 @@ VisualTest {
}
Frame {
msec: 976
- hash: "a4b81c526a5bf8902fde9b8721980977"
+ hash: "25ade09747f07a9bdd07f5885a72dc55"
}
Key {
type: 6
@@ -322,19 +322,19 @@ VisualTest {
}
Frame {
msec: 992
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "0a60e76e96846f9f4e909f7a01ede377"
}
Frame {
msec: 1008
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "0a60e76e96846f9f4e909f7a01ede377"
}
Frame {
msec: 1024
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "0a60e76e96846f9f4e909f7a01ede377"
}
Frame {
msec: 1040
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Key {
type: 7
@@ -346,51 +346,51 @@ VisualTest {
}
Frame {
msec: 1056
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1072
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1088
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1104
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1120
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1136
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1152
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1168
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1184
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1200
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1216
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Frame {
msec: 1232
- hash: "d072aebc2314a149a856634786b208a0"
+ hash: "6f28f435e552cbbf6376f2443ed3843c"
}
Key {
type: 6
@@ -402,15 +402,15 @@ VisualTest {
}
Frame {
msec: 1248
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Frame {
msec: 1264
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Frame {
msec: 1280
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Key {
type: 7
@@ -422,15 +422,15 @@ VisualTest {
}
Frame {
msec: 1296
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Frame {
msec: 1312
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Frame {
msec: 1328
- hash: "94defec2865529f185d02cfcbfe166cc"
+ hash: "16a353e711a8fb654b5fe3097ba29296"
}
Key {
type: 6
@@ -442,39 +442,39 @@ VisualTest {
}
Frame {
msec: 1344
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1360
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1376
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1392
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1408
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1424
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1440
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1456
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Frame {
msec: 1472
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Key {
type: 7
@@ -486,7 +486,7 @@ VisualTest {
}
Frame {
msec: 1488
- hash: "f625a2a82879df96141000e6931d4487"
+ hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d"
}
Key {
type: 6
@@ -498,19 +498,19 @@ VisualTest {
}
Frame {
msec: 1504
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "fe0e4e097f655e0b330ed6fcfce669c2"
}
Frame {
msec: 1520
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "fe0e4e097f655e0b330ed6fcfce669c2"
}
Frame {
msec: 1536
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1552
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Key {
type: 7
@@ -522,27 +522,27 @@ VisualTest {
}
Frame {
msec: 1568
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1584
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1600
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1616
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1632
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Frame {
msec: 1648
- hash: "1cf29837a4ea63bbb06c15382680d1b6"
+ hash: "522f11cbb8da0cca25af91d3f6d5240b"
}
Key {
type: 6
@@ -554,23 +554,23 @@ VisualTest {
}
Frame {
msec: 1664
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "f459ca172e643d6e22c38067f8ced305"
}
Frame {
msec: 1680
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "f459ca172e643d6e22c38067f8ced305"
}
Frame {
msec: 1696
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "f459ca172e643d6e22c38067f8ced305"
}
Frame {
msec: 1712
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "f459ca172e643d6e22c38067f8ced305"
}
Frame {
msec: 1728
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "f459ca172e643d6e22c38067f8ced305"
}
Key {
type: 6
@@ -582,7 +582,7 @@ VisualTest {
}
Frame {
msec: 1744
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Key {
type: 7
@@ -594,15 +594,15 @@ VisualTest {
}
Frame {
msec: 1760
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Frame {
msec: 1776
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Frame {
msec: 1792
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Key {
type: 7
@@ -614,19 +614,19 @@ VisualTest {
}
Frame {
msec: 1808
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Frame {
msec: 1824
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Frame {
msec: 1840
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Frame {
msec: 1856
- hash: "6eabb6d168ecc9ac604dcf2db0075380"
+ hash: "0016ecff508885d3a199b27baa9b7ecf"
}
Key {
type: 6
@@ -638,15 +638,15 @@ VisualTest {
}
Frame {
msec: 1872
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1888
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1904
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1920
@@ -662,27 +662,27 @@ VisualTest {
}
Frame {
msec: 1936
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1952
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1968
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 1984
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 2000
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Frame {
msec: 2016
- hash: "cb2dc1c4fc4e213841b873561f404a4f"
+ hash: "05c631afb9df51c23b1f714a7de92788"
}
Key {
type: 6
@@ -694,11 +694,11 @@ VisualTest {
}
Frame {
msec: 2032
- hash: "c2aff1ebdee69cca7dc67a102fce5e8e"
+ hash: "95ad72a49b991225e2ed5ae9c2a7b4e5"
}
Frame {
msec: 2048
- hash: "c2aff1ebdee69cca7dc67a102fce5e8e"
+ hash: "95ad72a49b991225e2ed5ae9c2a7b4e5"
}
Key {
type: 7
@@ -710,11 +710,11 @@ VisualTest {
}
Frame {
msec: 2064
- hash: "c2aff1ebdee69cca7dc67a102fce5e8e"
+ hash: "95ad72a49b991225e2ed5ae9c2a7b4e5"
}
Frame {
msec: 2080
- hash: "c2aff1ebdee69cca7dc67a102fce5e8e"
+ hash: "95ad72a49b991225e2ed5ae9c2a7b4e5"
}
Key {
type: 6
@@ -726,19 +726,19 @@ VisualTest {
}
Frame {
msec: 2096
- hash: "c82441813af6ff577687f29f6a09da38"
+ hash: "7f2366b163c110a50259936c150d8287"
}
Frame {
msec: 2112
- hash: "c82441813af6ff577687f29f6a09da38"
+ hash: "7f2366b163c110a50259936c150d8287"
}
Frame {
msec: 2128
- hash: "c82441813af6ff577687f29f6a09da38"
+ hash: "7f2366b163c110a50259936c150d8287"
}
Frame {
msec: 2144
- hash: "c82441813af6ff577687f29f6a09da38"
+ hash: "7f2366b163c110a50259936c150d8287"
}
Key {
type: 6
@@ -758,19 +758,19 @@ VisualTest {
}
Frame {
msec: 2160
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "b5110b1a7aa74f7b4ed72f573f10b1fe"
}
Frame {
msec: 2176
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "b5110b1a7aa74f7b4ed72f573f10b1fe"
}
Frame {
msec: 2192
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "b5110b1a7aa74f7b4ed72f573f10b1fe"
}
Frame {
msec: 2208
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "b5110b1a7aa74f7b4ed72f573f10b1fe"
}
Key {
type: 6
@@ -782,7 +782,7 @@ VisualTest {
}
Frame {
msec: 2224
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Key {
type: 7
@@ -794,23 +794,23 @@ VisualTest {
}
Frame {
msec: 2240
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Frame {
msec: 2256
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Frame {
msec: 2272
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Frame {
msec: 2288
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Frame {
msec: 2304
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Key {
type: 7
@@ -822,11 +822,11 @@ VisualTest {
}
Frame {
msec: 2320
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Frame {
msec: 2336
- hash: "d7da9862980b99e97a1fcd1b5c4c976f"
+ hash: "30cdfb276e7a234c72d89a03e6a10dc5"
}
Key {
type: 6
@@ -838,27 +838,27 @@ VisualTest {
}
Frame {
msec: 2352
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2368
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2384
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2400
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2416
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2432
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Key {
type: 7
@@ -870,19 +870,19 @@ VisualTest {
}
Frame {
msec: 2448
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2464
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2480
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Frame {
msec: 2496
- hash: "8f36e26d8685fe55e7a1dd294188f649"
+ hash: "c0f7406f3718ab0120c79ff119d6986c"
}
Key {
type: 6
@@ -894,15 +894,15 @@ VisualTest {
}
Frame {
msec: 2512
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "870d7866b8e289b4843b62c856d769d4"
}
Frame {
msec: 2528
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "870d7866b8e289b4843b62c856d769d4"
}
Frame {
msec: 2544
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Key {
type: 7
@@ -914,83 +914,83 @@ VisualTest {
}
Frame {
msec: 2560
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2576
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2592
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2608
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2624
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2640
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2656
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2672
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2688
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2704
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2720
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2736
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2752
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2768
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2784
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2800
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2816
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2832
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2848
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2864
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2880
@@ -998,46 +998,46 @@ VisualTest {
}
Frame {
msec: 2896
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2912
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2928
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2944
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2960
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2976
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 2992
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 3008
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 3024
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "84e1cbf26e6b571603e0b9e69579af8b"
}
Frame {
msec: 3040
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "870d7866b8e289b4843b62c856d769d4"
}
Frame {
msec: 3056
- hash: "316f2ba46d059755576e6822dc77afb2"
+ hash: "870d7866b8e289b4843b62c856d769d4"
}
}
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png
new file mode 100644
index 0000000..b064e79
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png
new file mode 100644
index 0000000..7dd1bd8
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png
new file mode 100644
index 0000000..d8e55e2
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png
new file mode 100644
index 0000000..f9f1744
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png
new file mode 100644
index 0000000..70ae713
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png
new file mode 100644
index 0000000..9ce28db
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png
new file mode 100644
index 0000000..2ef2ac0
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png
new file mode 100644
index 0000000..2a614f8
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png
new file mode 100644
index 0000000..f916c97
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png
new file mode 100644
index 0000000..56bf00b
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png
new file mode 100644
index 0000000..97847d9
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png
Binary files differ
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml
new file mode 100644
index 0000000..645b447
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml
@@ -0,0 +1,4335 @@
+import Qt.VisualTest 4.6
+
+VisualTest {
+ Frame {
+ msec: 0
+ }
+ Frame {
+ msec: 16
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 32
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 48
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 64
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 80
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 96
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 112
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 128
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 144
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 160
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 176
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 192
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 208
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 224
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 240
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 256
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 272
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 288
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 304
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 320
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 336
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 352
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 368
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 384
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 400
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 416
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 432
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 448
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 464
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 480
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 496
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 512
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 528
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 544
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 560
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 576
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 592
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 608
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 624
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 640
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 656
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 672
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 688
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 704
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 720
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 736
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 752
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 768
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 784
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 800
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 816
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 832
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 848
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 864
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 880
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 896
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 912
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Frame {
+ msec: 928
+ hash: "a6d33b1212bb4d1241734bfff167d1a5"
+ }
+ Mouse {
+ type: 2
+ button: 1
+ buttons: 1
+ x: 85; y: 11
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 944
+ hash: "c83faf1ed7b59715046e1abef04fa546"
+ }
+ Mouse {
+ type: 3
+ button: 1
+ buttons: 0
+ x: 85; y: 11
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 960
+ image: "usingLineEdit.0.png"
+ }
+ Mouse {
+ type: 4
+ button: 1
+ buttons: 1
+ x: 85; y: 11
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 976
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 992
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1008
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1024
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1040
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1056
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Mouse {
+ type: 3
+ button: 1
+ buttons: 0
+ x: 85; y: 11
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 1072
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1088
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1104
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1120
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1136
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1152
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1168
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1184
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1200
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1216
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1232
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1248
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1264
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1280
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1296
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1312
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1328
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1344
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1360
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Key {
+ type: 6
+ key: 16777249
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 1376
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1392
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1408
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1424
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1440
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1456
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1472
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1488
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1504
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1520
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1536
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1552
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1568
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1584
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1600
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1616
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1632
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1648
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1664
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1680
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1696
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1712
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1728
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1744
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1760
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1776
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1792
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1808
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1824
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1840
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1856
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1872
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1888
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1904
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1920
+ image: "usingLineEdit.1.png"
+ }
+ Frame {
+ msec: 1936
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1952
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1968
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 1984
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Key {
+ type: 6
+ key: 67
+ modifiers: 67108864
+ text: "03"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 2000
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2016
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2032
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2048
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2064
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2080
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2096
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2112
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Key {
+ type: 7
+ key: 16777249
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 7
+ key: 67
+ modifiers: 0
+ text: "63"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 2128
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2144
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2160
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2176
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2192
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2208
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2224
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2240
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2256
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2272
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2288
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2304
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2320
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2336
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2352
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2368
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2384
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2400
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2416
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2432
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2448
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2464
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Frame {
+ msec: 2480
+ hash: "3b899cd28b58c3f94946286a0ddcab89"
+ }
+ Key {
+ type: 6
+ key: 16777233
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 2496
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2512
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2528
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2544
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2560
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2576
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Key {
+ type: 7
+ key: 16777233
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 2592
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2608
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2624
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2640
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2656
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2672
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2688
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2704
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2720
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2736
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2752
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2768
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2784
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Key {
+ type: 6
+ key: 16777249
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 2800
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2816
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2832
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2848
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2864
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2880
+ image: "usingLineEdit.2.png"
+ }
+ Frame {
+ msec: 2896
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2912
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2928
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2944
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2960
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2976
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 2992
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3008
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3024
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3040
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3056
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3072
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3088
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3104
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3120
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3136
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3152
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3168
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3184
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3200
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Frame {
+ msec: 3216
+ hash: "f2a573f227a3eb84f60418d0f3e81fb3"
+ }
+ Key {
+ type: 6
+ key: 86
+ modifiers: 67108864
+ text: "16"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 3232
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3248
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3264
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3280
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3296
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3312
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3328
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Key {
+ type: 7
+ key: 86
+ modifiers: 67108864
+ text: "16"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 3344
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3360
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3376
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3392
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3408
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3424
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3440
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3456
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3472
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3488
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3504
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3520
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3536
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Frame {
+ msec: 3552
+ hash: "202ad01bacfb48341efdd85197df6964"
+ }
+ Key {
+ type: 6
+ key: 86
+ modifiers: 67108864
+ text: "16"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 3568
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3584
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3600
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3616
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3632
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3648
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3664
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3680
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Key {
+ type: 7
+ key: 86
+ modifiers: 67108864
+ text: "16"
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 3696
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3712
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3728
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3744
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3760
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3776
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3792
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3808
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3824
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3840
+ image: "usingLineEdit.3.png"
+ }
+ Frame {
+ msec: 3856
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3872
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3888
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3904
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3920
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3936
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3952
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3968
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 3984
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4000
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4016
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4032
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4048
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4064
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4080
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4096
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4112
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4128
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4144
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4160
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4176
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4192
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Key {
+ type: 7
+ key: 16777249
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 4208
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4224
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4240
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4256
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4272
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4288
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4304
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4320
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4336
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4352
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4368
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4384
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4400
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4416
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4432
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4448
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4464
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4480
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4496
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4512
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4528
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4544
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4560
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4576
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4592
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4608
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4624
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4640
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4656
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4672
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4688
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Frame {
+ msec: 4704
+ hash: "eac37a53473ad7f378a2a1bb37fa6b58"
+ }
+ Mouse {
+ type: 2
+ button: 1
+ buttons: 1
+ x: 69; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 4720
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4736
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4752
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4768
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4784
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4800
+ image: "usingLineEdit.4.png"
+ }
+ Mouse {
+ type: 3
+ button: 1
+ buttons: 0
+ x: 69; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 4816
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4832
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4848
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4864
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4880
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4896
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4912
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4928
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4944
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4960
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4976
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 4992
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5008
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5024
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5040
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5056
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5072
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5088
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5104
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5120
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5136
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5152
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5168
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5184
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5200
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5216
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5232
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5248
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5264
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5280
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5296
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5312
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5328
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5344
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Frame {
+ msec: 5360
+ hash: "c65ff28e032b18223c65f8810b39d603"
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5376
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5392
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5408
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5424
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5440
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5456
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5472
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5488
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5504
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5520
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5536
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5552
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5568
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5584
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5600
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Frame {
+ msec: 5616
+ hash: "8c755780c2d281aba23c507bcebfd5db"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5632
+ hash: "baa42bc9d5e16c3e7af81e126d37655a"
+ }
+ Frame {
+ msec: 5648
+ hash: "baa42bc9d5e16c3e7af81e126d37655a"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5664
+ hash: "aa876e6d6ff0f169bcc3cf25be5e7a81"
+ }
+ Frame {
+ msec: 5680
+ hash: "aa876e6d6ff0f169bcc3cf25be5e7a81"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5696
+ hash: "8ec4c1a8ae28af44dcabf338fc056717"
+ }
+ Frame {
+ msec: 5712
+ hash: "8ec4c1a8ae28af44dcabf338fc056717"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5728
+ hash: "ec0da333c0bc090eec0ded5e4d18bd6e"
+ }
+ Frame {
+ msec: 5744
+ hash: "ec0da333c0bc090eec0ded5e4d18bd6e"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5760
+ image: "usingLineEdit.5.png"
+ }
+ Frame {
+ msec: 5776
+ hash: "325ba5789a6150ec0fef81fa5b005c09"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5792
+ hash: "023dd8fe428b1ed0f4c994f7e67ac3cd"
+ }
+ Frame {
+ msec: 5808
+ hash: "023dd8fe428b1ed0f4c994f7e67ac3cd"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5824
+ hash: "f661f599f576ae883f25422b20408138"
+ }
+ Frame {
+ msec: 5840
+ hash: "f661f599f576ae883f25422b20408138"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5856
+ hash: "f661f599f576ae883f25422b20408138"
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5872
+ hash: "8e7ad34802a0ced493e88b779c73cc47"
+ }
+ Frame {
+ msec: 5888
+ hash: "8e7ad34802a0ced493e88b779c73cc47"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5904
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 5920
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 5936
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 5952
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 5968
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 5984
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6000
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6016
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6032
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6048
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Key {
+ type: 6
+ key: 16777249
+ modifiers: 0
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6064
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6080
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6096
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6112
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6128
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Frame {
+ msec: 6144
+ hash: "943c7ec51fbe8db38fcd3086990fa4e0"
+ }
+ Key {
+ type: 6
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6160
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6176
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6192
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6208
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6224
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6240
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6256
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6272
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6288
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6304
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6320
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6336
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6352
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6368
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6384
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Frame {
+ msec: 6400
+ hash: "bd2e37c4ac90a6389f7f4e1e1360b31b"
+ }
+ Key {
+ type: 7
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6416
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6432
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Key {
+ type: 7
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6448
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6464
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Key {
+ type: 7
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 6
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Key {
+ type: 7
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6480
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6496
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6512
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6528
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6544
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6560
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6576
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6592
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6608
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6624
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6640
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6656
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6672
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6688
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6704
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6720
+ image: "usingLineEdit.6.png"
+ }
+ Frame {
+ msec: 6736
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6752
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6768
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6784
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Key {
+ type: 6
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6800
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Key {
+ type: 7
+ key: 16777234
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6816
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6832
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6848
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6864
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6880
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6896
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6912
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6928
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Frame {
+ msec: 6944
+ hash: "608bba00320e20da05aa2a6bbcba6e19"
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 6960
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 6976
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 6992
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 7008
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7024
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 7040
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 7056
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 7072
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Frame {
+ msec: 7088
+ hash: "40456a6d22e09e1817b07f3898676524"
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7104
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7120
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7136
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7152
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7168
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7184
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7200
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7216
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7232
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7248
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Frame {
+ msec: 7264
+ hash: "dada78341b65c1efb2816e16a8cbe8b5"
+ }
+ Key {
+ type: 6
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7280
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7296
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7312
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7328
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7344
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Key {
+ type: 7
+ key: 16777236
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7360
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7376
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7392
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7408
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7424
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7440
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7456
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7472
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7488
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7504
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7520
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Key {
+ type: 7
+ key: 16777249
+ modifiers: 67108864
+ text: ""
+ autorep: false
+ count: 1
+ }
+ Frame {
+ msec: 7536
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7552
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7568
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7584
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7600
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7616
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7632
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7648
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7664
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7680
+ image: "usingLineEdit.7.png"
+ }
+ Frame {
+ msec: 7696
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7712
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7728
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7744
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7760
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7776
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7792
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7808
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7824
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7840
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7856
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7872
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7888
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7904
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7920
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7936
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7952
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7968
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 7984
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8000
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8016
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8032
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8048
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8064
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8080
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8096
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8112
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8128
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8144
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8160
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8176
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8192
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8208
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8224
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8240
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8256
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8272
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8288
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8304
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8320
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8336
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8352
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8368
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8384
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8400
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8416
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8432
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8448
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8464
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8480
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Frame {
+ msec: 8496
+ hash: "f249bfae1934844abfd5fc158a9c89cf"
+ }
+ Mouse {
+ type: 2
+ button: 1
+ buttons: 1
+ x: 61; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8512
+ hash: "e594125fb367adee5b6acdb1268c86cd"
+ }
+ Frame {
+ msec: 8528
+ hash: "e594125fb367adee5b6acdb1268c86cd"
+ }
+ Frame {
+ msec: 8544
+ hash: "e594125fb367adee5b6acdb1268c86cd"
+ }
+ Frame {
+ msec: 8560
+ hash: "e594125fb367adee5b6acdb1268c86cd"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 60; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 58; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8576
+ hash: "e594125fb367adee5b6acdb1268c86cd"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 46; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8592
+ hash: "7d4116a8689b6995702a042d974ef74b"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 41; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 40; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8608
+ hash: "cb9221f27ac24e4b6b103ca53acad3b3"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 32; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8624
+ hash: "074bc6abd9a67db829ae5d6c5f187fb6"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 31; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 30; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8640
+ image: "usingLineEdit.8.png"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 29; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8656
+ hash: "074bc6abd9a67db829ae5d6c5f187fb6"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 28; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 27; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8672
+ hash: "074bc6abd9a67db829ae5d6c5f187fb6"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 26; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8688
+ hash: "7e403c56d5652321a7701529fc6b8098"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 25; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 24; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8704
+ hash: "7e403c56d5652321a7701529fc6b8098"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 23; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 22; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8720
+ hash: "7e403c56d5652321a7701529fc6b8098"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 20; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 19; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8736
+ hash: "7e403c56d5652321a7701529fc6b8098"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 18; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 17; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8752
+ hash: "2435f2526b3ccc12b7b573872b40e5f1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 16; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 15; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8768
+ hash: "2435f2526b3ccc12b7b573872b40e5f1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 14; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 13; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8784
+ hash: "2435f2526b3ccc12b7b573872b40e5f1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 12; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 11; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8800
+ hash: "2435f2526b3ccc12b7b573872b40e5f1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 10; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 8; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8816
+ hash: "f5a185b954e8b181222cc50075d8ebb6"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 6; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 5; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8832
+ hash: "93a00b37c5027650791d1ff589408d0d"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 3; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 2; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8848
+ hash: "0b29f6006be3604ef862db7d31f9a434"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 0; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -1; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8864
+ hash: "8390b63b71e1452cb93c576a3f2395e1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -2; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -3; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8880
+ hash: "72298910946a4e1a9ccc4520d99e9420"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -5; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -6; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8896
+ hash: "17d349b0ed29d6aa57bf8fda9a55abf8"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -7; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -9; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8912
+ hash: "01e8a877d51f5564aaf2f11e7aadbc4a"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -10; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -11; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8928
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -12; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -13; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8944
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -14; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -15; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8960
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 8976
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -16; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -17; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 8992
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -18; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9008
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9024
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9040
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9056
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9072
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9088
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9104
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9120
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9136
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9152
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9168
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9184
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Frame {
+ msec: 9200
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -17; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9216
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -16; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9232
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -14; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -13; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9248
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -11; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -10; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9264
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -8; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -7; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9280
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -6; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -5; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9296
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -3; y: 32
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: -1; y: 32
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9312
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 1; y: 31
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 3; y: 31
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9328
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 4; y: 31
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 6; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9344
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 7; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 8; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9360
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 10; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 11; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9376
+ hash: "bc8f49abd277f5f15d422341de212183"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 12; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 14; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9392
+ hash: "12e705f08ff90fd8ddb1937e5a7e23a0"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 15; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 17; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9408
+ hash: "12e705f08ff90fd8ddb1937e5a7e23a0"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 21; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 24; y: 30
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9424
+ hash: "4daae0f05ff1b7ef68ed1d839b113dc4"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 27; y: 31
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 30; y: 31
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9440
+ hash: "a1186544d7f5576e6ccbbd7938c1c374"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 33; y: 32
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 35; y: 32
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9456
+ hash: "6ce09c9a06135d2280e4f7bc1c81b70e"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 38; y: 32
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 39; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9472
+ hash: "6ce09c9a06135d2280e4f7bc1c81b70e"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 43; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 45; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9488
+ hash: "035b177c3cacd8cdef807d5673de4607"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 48; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 50; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9504
+ hash: "7b7e3c4600f3af7bd0f45799661db993"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 51; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 53; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9520
+ hash: "7b7e3c4600f3af7bd0f45799661db993"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 55; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9536
+ hash: "7b7e3c4600f3af7bd0f45799661db993"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 56; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 58; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9552
+ hash: "859950e1cf496ef830a30b3a0ec801ac"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 61; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 64; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9568
+ hash: "859950e1cf496ef830a30b3a0ec801ac"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 67; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 70; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9584
+ hash: "be7343825b6adcb16f49e20ee2bdf19f"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 73; y: 33
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 74; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9600
+ image: "usingLineEdit.9.png"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 76; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9616
+ hash: "597923ce1046fbf4b728545c54c97fa5"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 77; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 78; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9632
+ hash: "597923ce1046fbf4b728545c54c97fa5"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 79; y: 34
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 80; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9648
+ hash: "597923ce1046fbf4b728545c54c97fa5"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 81; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 84; y: 35
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9664
+ hash: "2fc5c42f94350f28ae0117bc7f6daff1"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 85; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 88; y: 36
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9680
+ hash: "4b4ec69d583151f1a64052d696966f9c"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 89; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 91; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9696
+ hash: "0882a25ac1c2b534367736d825a73630"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 92; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 94; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9712
+ hash: "d5b6acc155f827c05b0c4c289a2e3eec"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 95; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 96; y: 37
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9728
+ hash: "a05b3f2f9f22249ab694ac45e1de7b85"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 98; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 100; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9744
+ hash: "5b0e034813f8543627f370efdcf3591e"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 102; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 104; y: 38
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9760
+ hash: "5b8d80b9d7e2a8c1a24c28e127d0f7e5"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 105; y: 39
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 108; y: 39
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9776
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 109; y: 39
+ modifiers: 0
+ sendToViewport: true
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 110; y: 39
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9792
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 111; y: 39
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9808
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 112; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9824
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 113; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9840
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 114; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9856
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 9872
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 115; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9888
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 116; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9904
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 117; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9920
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 118; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9936
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 9952
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 119; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9968
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 120; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 9984
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 121; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 10000
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10016
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 5
+ button: 0
+ buttons: 1
+ x: 122; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 10032
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10048
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10064
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10080
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10096
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10112
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10128
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10144
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10160
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10176
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10192
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10208
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10224
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10240
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Mouse {
+ type: 3
+ button: 1
+ buttons: 0
+ x: 122; y: 40
+ modifiers: 0
+ sendToViewport: true
+ }
+ Frame {
+ msec: 10256
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10272
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10288
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10304
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10320
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10336
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10352
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10368
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10384
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10400
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10416
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10432
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10448
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10464
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10480
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10496
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10512
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10528
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10544
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10560
+ image: "usingLineEdit.10.png"
+ }
+ Frame {
+ msec: 10576
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10592
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10608
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10624
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10640
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10656
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10672
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10688
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10704
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10720
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10736
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10752
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10768
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10784
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10800
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10816
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10832
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10848
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10864
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10880
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10896
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10912
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10928
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10944
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10960
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10976
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 10992
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11008
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11024
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11040
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11056
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11072
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11088
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11104
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11120
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11136
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11152
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11168
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11184
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11200
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11216
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11232
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11248
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+ Frame {
+ msec: 11264
+ hash: "66715d4a4f83d0e5905adbc4c459b0fb"
+ }
+}
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
index b0b50e4..ed8bc2c 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml
@@ -4,7 +4,7 @@ Item{
height: 50; width: 200
Column{
//Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl)
- TextInput{ id: main; focus: true; echoMode: TextInput.Password }
+ TextInput{ id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' }
Text{ text: main.text }
}
}
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml
new file mode 100644
index 0000000..2465866
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml
@@ -0,0 +1,10 @@
+import Qt 4.7
+
+Rectangle{
+ width: 600
+ height: 200
+ Column{
+ LineEdit{text: 'Hello world'}
+ LineEdit{text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;}
+ }
+}