diff options
author | David Boddie <david.boddie@nokia.com> | 2010-12-07 13:57:38 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-12-07 13:57:38 (GMT) |
commit | d8fb8ca3a378743eebb8464f7910a5e6d1870c01 (patch) | |
tree | 9c31a017163a532946f10107b8d9f4405ed1c9db /tests/auto/declarative/qmlvisual/qdeclarativetextinput | |
parent | b5915ef3a6d0417440ad82e9369d6679505b953e (diff) | |
parent | 076bba6c901e292b61fffb7a91020075dcd84919 (diff) | |
download | Qt-d8fb8ca3a378743eebb8464f7910a5e6d1870c01.zip Qt-d8fb8ca3a378743eebb8464f7910a5e6d1870c01.tar.gz Qt-d8fb8ca3a378743eebb8464f7910a5e6d1870c01.tar.bz2 |
Merge branch 'qdoc-simplified' into mimir-simplified
Conflicts:
doc/src/platforms/compiler-notes.qdoc
tools/qdoc3/ditaxmlgenerator.cpp
tools/qdoc3/ditaxmlgenerator.h
tools/qdoc3/htmlgenerator.cpp
tools/qdoc3/htmlgenerator.h
tools/qdoc3/node.cpp
tools/qdoc3/pagegenerator.h
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetextinput')
76 files changed, 9135 insertions, 5748 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml index 74c16e2..6789eac 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml @@ -1,4 +1,5 @@ import QtQuick 1.0 +import "../shared" 1.0 Item { id:lineedit @@ -7,16 +8,16 @@ Item { width: textInp.width + 11 height: 13 + 11 - Rectangle{ + Rectangle { color: 'lightsteelblue' anchors.fill: parent } clip: true Component.onCompleted: textInp.cursorPosition = 0; - TextInput{ + TestTextInput { id:textInp - cursorDelegate: Item{ - Rectangle{ + cursorDelegate: Item { + Rectangle { visible: parent.parent.focus color: "#009BCE" height: 13 @@ -41,8 +42,9 @@ Item { text:"" horizontalAlignment: TextInput.AlignLeft font.pixelSize:15 + selectionColor: 'steelblue' } - MouseArea{ + MouseArea { //Implements all line edit mouse handling id: mainMouseArea anchors.fill: parent; diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml index 973462a..f2a34b7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml @@ -1,5 +1,7 @@ import QtQuick 1.0 - Rectangle { +import "../shared" 1.0 + +Rectangle { resources: [ Component { id: cursorA Item { id: cPage; @@ -11,8 +13,8 @@ import QtQuick 1.0 Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} opacity: 1 SequentialAnimation on opacity { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"} + NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} + NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} } } width: 1; @@ -22,7 +24,7 @@ import QtQuick 1.0 width: 400 height: 200 color: "white" - TextInput { id: mainText + TestTextInput { id: mainText text: "Hello World" cursorDelegate: cursorA focus: true diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png Binary files differindex 9d0bab2..b65bc37 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png Binary files differindex db66ff7..ebaa011 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png Binary files differindex cbcca68..57ee370 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png Binary files differindex c22196b..4b70b4a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png Binary files differindex a1d051e..18ae753 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png Binary files differindex 9289dc0..2b463f0 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml index 208d05f..6b8ba9b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml @@ -6,134 +6,146 @@ VisualTest { } Frame { msec: 16 - hash: "701d8c0f72330c0b72df071bd17749e6" + image: "cursorDelegate.0.png" } Frame { msec: 32 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 48 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 64 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 80 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 96 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 112 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 128 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 144 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 160 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 176 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 192 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 208 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 224 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 240 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 256 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 272 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 288 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 304 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 320 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 336 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 352 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 368 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 384 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 400 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 416 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 432 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" } Frame { msec: 448 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "a7af287992f894f9cf76e834b922f5b3" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 464 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" } Frame { msec: 480 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" } Frame { msec: 496 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" } Frame { msec: 512 - hash: "701d8c0f72330c0b72df071bd17749e6" + hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" + } + Frame { + msec: 528 + hash: "0f0e9ced5d2f9f20a2b5f1b5bde0be62" } Key { - type: 6 + type: 7 key: 16777234 modifiers: 0 text: "" @@ -141,36 +153,44 @@ VisualTest { count: 1 } Frame { - msec: 528 - hash: "438be260f19d04c9f98ed7dce1c7db40" - } - Frame { msec: 544 - hash: "6032aada2c48092000ecb93e52656414" + hash: "bec7fff73d6d869d2d15b3ea35fa0605" } Frame { msec: 560 - hash: "d23bdd94019477d8378cde580d8765ad" + hash: "e3afffc91ed0a78a0022421e6d1bd0d2" } Frame { msec: 576 - hash: "d74f8e44d47710714d4197809fffb622" + hash: "45f44411121d335ed7a844803313e566" } Frame { msec: 592 - hash: "4fbbb8447d80012bc6b5c24ddbfe498e" + hash: "b951279da53fe76ab62ca9837ecbd7a6" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 608 - hash: "4e875ba8703b690a17e445f2b3810435" + hash: "b5678202f08099b09ce88cef5eeea20a" } Frame { msec: 624 - hash: "e4d7a59716cd704fe1cfa8ba91454e93" + hash: "93f6663d083a2bd3b4079241f3fc0159" } Frame { msec: 640 - hash: "a2ea272b45d8de225826d9381015ff2e" + hash: "8c802943d3030214cb7af7fd1db1c813" + } + Frame { + msec: 656 + hash: "01396c0332523ba2a8971a99c6962516" } Key { type: 7 @@ -181,67 +201,47 @@ VisualTest { count: 1 } Frame { - msec: 656 - hash: "5d112a3675ea4c010e7bc60e036d0262" - } - Frame { msec: 672 - hash: "788d8962f311adf57a3acc876b0e8804" + hash: "fc5dd253219d1a8aca7fcf31be0e7d69" } Frame { msec: 688 - hash: "827fdd6a3d1006f4a9dd2faf208ea436" + hash: "545071a58d8db4f73e1cb6981e9ec62e" + } + Frame { + msec: 704 + hash: "13bc1aa8ce4fc3d9ba9a6c3046e14c92" + } + Frame { + msec: 720 + hash: "ba7d13545fb7384dcb3edd32979c9442" } Key { type: 6 - key: 16777236 + key: 16777234 modifiers: 0 text: "" autorep: false count: 1 } Frame { - msec: 704 - hash: "91b2695e4915238ae8610a64e279b0f4" - } - Frame { - msec: 720 - hash: "a97d90765f87b998eae6e9f603c61bff" - } - Frame { msec: 736 - hash: "48969edab07b942480d93ac2d383ca24" + hash: "8f9e1abd8eb2d072907b910630e93c9a" } Frame { msec: 752 - hash: "ecfd9d6d5873001f0c67806544a14983" + hash: "003d0e4a01909aa51cb1967738383ede" } Frame { msec: 768 - hash: "a3a3bc1e2523d3e7f961893bcd1dd3a8" + hash: "223cce18cef44b3945d0a1d45554c5c1" } Frame { msec: 784 - hash: "e337735ad0b42e60c54f16f3da7af3cf" - } - Frame { - msec: 800 - hash: "c39db081130d269f25dbcb1a19afb8d0" - } - Frame { - msec: 816 - hash: "c464d501e3935ec0f53eb780bd1a8289" + hash: "fcd7f862bdce75d7e6df574ff0146ca6" } Key { type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 key: 16777234 modifiers: 0 text: "" @@ -249,28 +249,44 @@ VisualTest { count: 1 } Frame { + msec: 800 + hash: "21f5e3696987222106b00f0efe3bb165" + } + Frame { + msec: 816 + hash: "6380ce26303da8180dff8fcc88caaf1d" + } + Frame { msec: 832 - hash: "9dc01a69f2a6892d3c4203674c8bef72" + hash: "52bfa995405a3d6523d97b2c36428d89" } Frame { msec: 848 - hash: "d94054222fd37a350bd8abd592a332e3" + hash: "7169d69c2adb50bf80c075e30eb8e965" } Frame { msec: 864 - hash: "46fed264c233490b477e3a7c22183e18" + hash: "f5ad55885a4fc2b47a5420e9e0d7c59c" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 880 - hash: "34bc703c915b49b0450ece1d18306df8" + hash: "831081f829df0a226c75389bc457a768" } Frame { msec: 896 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" + hash: "2306a9c9cb570bc922f120f2f63e26e4" } Frame { msec: 912 - hash: "4f6dbc7b249c37390518cc263832b587" + hash: "23d6728fe34436e53a449e26962c3ad5" } Key { type: 7 @@ -282,219 +298,259 @@ VisualTest { } Frame { msec: 928 - hash: "df09fa2fd138d1b480eec82db3872d6f" + hash: "db2de48337701cbb36a14e32f1846683" } Frame { msec: 944 - hash: "b74cb1bfbb979a5e91853d9145d277d8" + hash: "04bb83a694d293fd4ba956fc79db79e7" } Frame { msec: 960 - image: "cursorDelegate.0.png" + hash: "7a1a71b2d7e42934163990d5c011c464" } Frame { msec: 976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + image: "cursorDelegate.1.png" } Frame { msec: 992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 1024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 1040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Key { - type: 6 - key: 16777248 + type: 7 + key: 16777234 modifiers: 0 text: "" autorep: false count: 1 } - Key { - type: 6 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + Frame { + msec: 1056 + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 1072 - hash: "35425ae3ccf3c8dcc1483479c57a3287" + hash: "20f1db4245d1689e980371d7b1bcb903" } Frame { msec: 1088 - hash: "b74cb1bfbb979a5e91853d9145d277d8" + hash: "6a3629223845d352ba02e3ad8569f698" } Frame { msec: 1104 - hash: "df09fa2fd138d1b480eec82db3872d6f" + hash: "ee3dd4535fcf24249c41ebebb5f4fca6" } Frame { msec: 1120 - hash: "4f6dbc7b249c37390518cc263832b587" + hash: "7bf5df6a807da0c8d316420ced34e267" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1136 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" + hash: "4f5ce98428d5fba11a6322f88cab14c3" } Frame { msec: 1152 - hash: "34bc703c915b49b0450ece1d18306df8" + hash: "14406e8d0e120a0f30864fa8793f2e8d" } Frame { msec: 1168 - hash: "46fed264c233490b477e3a7c22183e18" + hash: "6e891d584ce4f636708cee1111193878" } Frame { msec: 1184 - hash: "d94054222fd37a350bd8abd592a332e3" + hash: "cd6bbc72108cfffd043a31d0d3655851" } Frame { msec: 1200 - hash: "9dc01a69f2a6892d3c4203674c8bef72" + hash: "d4069e606ab2b10c90e6f567be462c10" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1216 - hash: "76fb2e1ad33affe33c0887f04caa7396" + hash: "de8e00d6116b1aa900478a41c7ac78f1" } Frame { msec: 1232 - hash: "0f500339c81ca3621d13910017b84b7b" + hash: "5a0c4e31eb9ecb2ffc9380d474861846" } Frame { msec: 1248 - hash: "702864de569e6a5648ee174d5ef891f8" + hash: "bbacdb359c6206b50a859169b106ec92" } Frame { msec: 1264 - hash: "01e937e1fcc0331b2541fa32c3479a24" + hash: "c4f4ed5a4842f1bbdda67a27d74fd5f4" } Frame { msec: 1280 - hash: "ee661e6cc1f86e755ff399adb6b11fd1" + hash: "4deb6d0a83b14abef80f2bfa0491cbd0" } Frame { msec: 1296 - hash: "ea2d610e9b41e72b2984a51f0d3f7587" + hash: "9caca7068ce5b289d70c39667e87a57f" } - Frame { - msec: 1312 - hash: "4a646d76b706698a02cead560b1f8d57" + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { - msec: 1328 - hash: "48ec87bfc25471f6fa2d43f9db80b693" + msec: 1312 + hash: "e3ca7a8a860efc3811b8befe0a97d7f1" } Key { type: 6 - key: 16777234 - modifiers: 100663296 + key: 16777248 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 1328 + hash: "ddb3dcb40f412c087d0ae21b5a8e47aa" + } + Frame { msec: 1344 - hash: "12b5e016bad990d1f2bf427ee8e3e6d9" + hash: "325d8356c3e14467c54d03d096a3c1a5" } Frame { msec: 1360 - hash: "66a2ba3f9e005cd58aa50cfa0000cd15" + hash: "83f4c541b94180863e538e6c0a0e1ae0" } Frame { msec: 1376 - hash: "a2e9e42e09dadbd0791f52bb96e0e0dc" + hash: "16623dc34067800f3c7d6aabe1076927" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1392 - hash: "ac68396566ea85a157e944e601dd8d18" + hash: "e7319b080b621c5d176d6913cd9a8f7e" } Frame { msec: 1408 - hash: "b9bfdebec8dd1a93de7ef2768b2542ba" + hash: "353a200418b2cc0fbe925329224e658a" } Frame { msec: 1424 - hash: "2e0a4b960803770acb34ef56ccf2be35" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "98fd3f1fc108de1d78f07587f9e94ec4" } Frame { msec: 1440 - hash: "df1643f0f8b7aa2dc080958822aeb3d0" + hash: "f75fbda5a1403f7b1dd8e9d05e30ebeb" } Frame { msec: 1456 - hash: "15bb91195adfaf83e88fd93e41ff3e17" + hash: "c2742ff9a04bbae6c6de13f08d514913" } Frame { msec: 1472 - hash: "dc0476c27bd7eef3a59637df9a3fecd8" + hash: "a73b65c18ba10e6b6d310fc325d7ccb2" } Frame { msec: 1488 - hash: "a271f69e9dc6d1e0362c3e10760895df" + hash: "bbe72b26a6f3f518a3c8b6cd9e8dbfd1" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1504 - hash: "7fe66bcc6bada354b4dd7baf8c977740" + hash: "679205439a359f3ffb05f631a1979596" } Frame { msec: 1520 - hash: "6b502dbd5ac8ff010df326cb9b593dce" + hash: "7ada5f6a58a6a7f9a3b4199a412fccfd" } Frame { msec: 1536 - hash: "a9dd21649a95a6a6e8daea91bc6e2a5f" + hash: "66749c0e5b97cec02f4908a709201604" } Frame { msec: 1552 - hash: "374686590eaa02b7b436caa40cc0b0a0" + hash: "373bfac053f5cfeceabe2979f3e6f444" } Frame { msec: 1568 - hash: "09ac3c5d413b1f650407eaa971aade81" + hash: "c7ab2bcdcd1b7fd25ac775c4dd382635" } Frame { msec: 1584 - hash: "39f84e04f1ae58600591c0de40558d2c" + hash: "3116b1a0cf1724bdae2cb71b9e15c73e" } Frame { msec: 1600 - hash: "0336ea1799835af2185c361e221a9661" + hash: "9bdc4513c30bf2d1eca61317cc22ebaa" } Frame { msec: 1616 - hash: "8c7ab13e499d7f31107cf0f899334259" + hash: "bbecf871ff569ac1020272c1ccc9aa14" } Frame { msec: 1632 - hash: "bad5899324e52c9e6eadb72f3e7c2150" + hash: "beef5a84dcc7794cf0aabfc8b7f811bc" } Frame { msec: 1648 - hash: "4b78f451ecb22cfbed9f5998d61018eb" + hash: "2db7161f3591ef0b3f1e3cb2aa357c8b" + } + Frame { + msec: 1664 + hash: "b8b5ffef5e52a8ae94ddb5ec3328fa0e" + } + Frame { + msec: 1680 + hash: "b65c4657ffb97a59455f2c3e23e3eb51" } Key { type: 6 @@ -505,2875 +561,991 @@ VisualTest { count: 1 } Frame { - msec: 1664 - hash: "6c913bc712eee18947a43dd1c0a6516b" - } - Frame { - msec: 1680 - hash: "4e566abf1e0696e72b2a4beab5a53d6e" - } - Frame { msec: 1696 - hash: "6ad579c289c63a6b90a1517765fc041e" + hash: "9702981b8eb5f035f2f4da6708ad1a92" } Frame { msec: 1712 - hash: "cef43f349cf221a1aa6e6e70f1fa6339" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "a6f46dd869daf69c5a5a3c887ae35a05" } Frame { msec: 1728 - hash: "d89f7e3e2510fcb34786584747633673" + hash: "902c0f174b16b1b0d419c13220937e06" } Frame { msec: 1744 - hash: "eb23a3eac684808f73034f4e4ef8984d" + hash: "97a5ea7449a1f313d0d5e818edc29bf6" } Frame { msec: 1760 - hash: "6f2c1f61e58940d9cc1a70c0db903446" + hash: "d5b69638452ea2260861c17991fc8bef" } Frame { msec: 1776 - hash: "f036a5ecda518be198f3bdf2dbc5baab" + hash: "5fa21c53d65b078d1b30830d99a0fbaf" } Frame { msec: 1792 - hash: "7411784774fdc3b324644395f7beb013" + hash: "668de1d2fa5780f5088637d919db0a0d" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1808 - hash: "abfdd1f8440998af2ff7903f49f1bd7c" + hash: "1989592754c28456aa917562fa3620bd" } Frame { msec: 1824 - hash: "6edd29f2e8d3d81e912c6b279ecc1885" + hash: "89cd0ef7c366bbcee8e4404e9a2285a7" } Frame { msec: 1840 - hash: "8eb5ba22793c7cbfa97a64557f2a023f" + hash: "d062d4b132ee3086a00220d47e8907fc" } Frame { msec: 1856 - hash: "9a39470525e6f508228f7e0014e02d64" + hash: "198bd9fc763c70fb84bdae122f0bdd8b" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1872 - hash: "b3ad10cf28151f5f7f5a4c3540f1660e" + hash: "304f7f6cef5b09c09db1284b8095e9a2" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 1888 - hash: "816203df3cf42fa7a0e8d6730c186444" + hash: "565003fef7b9810ffe95c3bbeeda5bbc" } Frame { msec: 1904 - hash: "a0a7e7ff7960dfe6149e526badf799a6" + hash: "2fa85a19ba2bb7d04264a246c4982eb4" } Frame { msec: 1920 - image: "cursorDelegate.1.png" + hash: "7be44eca358924dc11c5123e406f1c99" } Frame { msec: 1936 - hash: "4d245b2285eadfd206409f74e03c7fc9" + image: "cursorDelegate.2.png" } Frame { msec: 1952 - hash: "e1d5e6c2e4df1454b5a256c3678ffdef" + hash: "a08502b3fbb425c7b1cad93e4bc5701e" } Frame { msec: 1968 - hash: "781d7fb03a37cb3f297cc0d2df338fd7" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "fba3a88b7fe6f7583daf07db78f3598c" } Frame { msec: 1984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "509d75aa56bcdb6718c18b56e138ef3c" } Frame { msec: 2000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "509d75aa56bcdb6718c18b56e138ef3c" } Frame { msec: 2016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "509d75aa56bcdb6718c18b56e138ef3c" } Frame { msec: 2032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "509d75aa56bcdb6718c18b56e138ef3c" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "509d75aa56bcdb6718c18b56e138ef3c" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 2064 - hash: "781d7fb03a37cb3f297cc0d2df338fd7" + hash: "fba3a88b7fe6f7583daf07db78f3598c" } Frame { msec: 2080 - hash: "e1d5e6c2e4df1454b5a256c3678ffdef" + hash: "a08502b3fbb425c7b1cad93e4bc5701e" } Frame { msec: 2096 - hash: "4d245b2285eadfd206409f74e03c7fc9" + hash: "86ad5a9e06d19ea79e0fc9f7f36cdb0f" } Frame { msec: 2112 - hash: "5a647962e016d15daa417d88524d6061" + hash: "7be44eca358924dc11c5123e406f1c99" } Frame { msec: 2128 - hash: "a0a7e7ff7960dfe6149e526badf799a6" + hash: "2fa85a19ba2bb7d04264a246c4982eb4" } Frame { msec: 2144 - hash: "816203df3cf42fa7a0e8d6730c186444" + hash: "565003fef7b9810ffe95c3bbeeda5bbc" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2160 - hash: "b3ad10cf28151f5f7f5a4c3540f1660e" + hash: "39c81c6efdbc32b6e0378810404bef2c" } Frame { msec: 2176 - hash: "9a39470525e6f508228f7e0014e02d64" + hash: "756f36cf41c2bae3a8a8716701e55e37" } Frame { msec: 2192 - hash: "8eb5ba22793c7cbfa97a64557f2a023f" + hash: "fb09d44a5a5b5b795d562512e9547301" } Frame { msec: 2208 - hash: "6edd29f2e8d3d81e912c6b279ecc1885" + hash: "183538d04cf009f100a1e49a3229c143" } Frame { msec: 2224 - hash: "abfdd1f8440998af2ff7903f49f1bd7c" + hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" } Frame { msec: 2240 - hash: "7411784774fdc3b324644395f7beb013" - } - Frame { - msec: 2256 - hash: "f036a5ecda518be198f3bdf2dbc5baab" + hash: "f34175acc261ad79bc9d2083af04ae10" } Key { type: 7 - key: 16777248 - modifiers: 33554432 + key: 16777236 + modifiers: 0 text: "" autorep: false count: 1 } Frame { + msec: 2256 + hash: "39a59b2e9e0bee87d3ba50e1408bea1c" + } + Frame { msec: 2272 - hash: "6f2c1f61e58940d9cc1a70c0db903446" + hash: "db61ba19d56b69d148aeb182de596713" } Frame { msec: 2288 - hash: "eb23a3eac684808f73034f4e4ef8984d" + hash: "e0b07106a5adc1603788444d48b9c3db" } Frame { msec: 2304 - hash: "d89f7e3e2510fcb34786584747633673" + hash: "1dd5625fb6a0ddbaa3919a1702695e9c" } Frame { msec: 2320 - hash: "cef43f349cf221a1aa6e6e70f1fa6339" + hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" } Frame { msec: 2336 - hash: "6ad579c289c63a6b90a1517765fc041e" + hash: "d7a226b40a049dee56755af9206246b4" } Frame { msec: 2352 - hash: "4e566abf1e0696e72b2a4beab5a53d6e" + hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" } Key { type: 6 - key: 16777236 + key: 16777249 modifiers: 0 text: "" autorep: false count: 1 } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } Frame { msec: 2368 - hash: "6c913bc712eee18947a43dd1c0a6516b" + hash: "21008b3a5179e25f9b132a4c05b8b8c4" } Frame { msec: 2384 - hash: "2c518a32ca3b5ca924709cc6990fb039" + hash: "a6f05fb5206a456bea790ba7ba31868c" } Frame { msec: 2400 - hash: "7f40db00bd3e6d0b39454eefa1403f44" + hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" } Frame { msec: 2416 - hash: "98db32e0d1812e9584105dc4dbceff80" + hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" } Frame { msec: 2432 - hash: "c2150a67391bb574141c16cb011847bf" + hash: "c78608cde907bc09760d858795b43bbf" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2448 - hash: "f9ea21d894fa2dace4d43ce99a580b90" + hash: "348438b012690f63956e6a865c4173c5" } Frame { msec: 2464 - hash: "2f580c3244499fc6ecd2121693f463fd" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "b0c970656fdb5af48efc4bf0e1879f36" } Frame { msec: 2480 - hash: "2f7f421d3e6a895a9efa6b0e8feb81c4" + hash: "7291a68c8e790f58e2440dfbe896c36d" } Frame { msec: 2496 - hash: "35a18447f319431ed0a645d05a1d03d1" + hash: "9bcbf9f7b35987c3acbd80031a688279" } Frame { msec: 2512 - hash: "54e36fb4014be554d13709b48b9bdce7" + hash: "48a00bd3f844e863338898bd28d845a4" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2528 - hash: "dbe3456536a729b268850a6ee5d1fb47" + hash: "dc5f63ee9e8d50f744f7b375a52e32c3" } Frame { msec: 2544 - hash: "4c148434cf3868db5dc98f426d9fb913" + hash: "f52d2f475a335a75fad0a0f84e812809" } Frame { msec: 2560 - hash: "2eb6da3ebfd531037523347603a805e2" + hash: "bc54cefc8f0b84fc2432b0fb01203b9c" } Frame { msec: 2576 - hash: "fefbb2f4671f8a36f9d2207ced8c0bfb" + hash: "e6f14d1181a0db90d2c2891fd6e82883" } Frame { msec: 2592 - hash: "1ab596339afc1f96136ee69c4b7688e1" + hash: "1edc2fff7b3d76bbe2615810a5d15d41" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2608 - hash: "e07f59d729cb2790296e8c7cd3d0d3c9" + hash: "5bc156937a29989a3a39761b58958fbd" } Frame { msec: 2624 - hash: "a7dccada1080487cab2d0a916676c5cb" + hash: "071d45235a669e870356efc60ba8016c" } Frame { msec: 2640 - hash: "ac5939eb4379394fab829b307cbfe7ec" + hash: "1d588fb1f8321e4b437f924077fa7d60" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2656 - hash: "9329d353c678d2bc61d08f63029d1b9b" + hash: "ca9aff6590dda45a66cdca601dccaf59" } Frame { msec: 2672 - hash: "41263f56af7875028bb0c1e7eccf6f5d" + hash: "2553146fff0d367cc6fa2d11f0a5c83a" } Frame { msec: 2688 - hash: "e2eb18af82c85ea78ba438163e922df3" + hash: "05bd919cd91ff449027b188d9a24b61f" } Frame { msec: 2704 - hash: "91b2695e4915238ae8610a64e279b0f4" + hash: "35d6ce9ecef79d006d6416c3b0d75e79" } Frame { msec: 2720 - hash: "a97d90765f87b998eae6e9f603c61bff" - } - Frame { - msec: 2736 - hash: "48969edab07b942480d93ac2d383ca24" - } - Frame { - msec: 2752 - hash: "ecfd9d6d5873001f0c67806544a14983" + hash: "1459a2410a971e344d4dacccff1eb7da" } Key { type: 6 key: 16777234 - modifiers: 0 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { + msec: 2736 + hash: "bd04cc87db0138b57bf0feeafa7630f5" + } + Frame { + msec: 2752 + hash: "81521187d5d88b62f4f7578ea4ee5f68" + } + Frame { msec: 2768 - hash: "01e937e1fcc0331b2541fa32c3479a24" + hash: "f2f8d1e8232787da1e36d7e8a27b6d93" } Frame { msec: 2784 - hash: "702864de569e6a5648ee174d5ef891f8" + hash: "a5dbd1f572419ca4a4b91629e522867f" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2800 - hash: "0f500339c81ca3621d13910017b84b7b" + hash: "23ab256301d7190f56c4f0af7f57bcc2" } Frame { msec: 2816 - hash: "76fb2e1ad33affe33c0887f04caa7396" + hash: "3a106a01b1cf6b53b5f8721415538f15" } Frame { msec: 2832 - hash: "9dc01a69f2a6892d3c4203674c8bef72" + hash: "881f4de48cf79636f5cb292f4cacf842" } Frame { msec: 2848 - hash: "d94054222fd37a350bd8abd592a332e3" + hash: "4abe8abf4f29a31220c03af143ef9978" } Frame { msec: 2864 - hash: "46fed264c233490b477e3a7c22183e18" + hash: "50db0e06ceb12795d3e11b2c4a04df9c" } Frame { msec: 2880 - image: "cursorDelegate.2.png" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "39f759d5b58ffdaa79d438f932a72582" } Frame { msec: 2896 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" + image: "cursorDelegate.3.png" } Frame { msec: 2912 - hash: "4f6dbc7b249c37390518cc263832b587" + hash: "0cf83e3a000b8ae6a21ef64e5470430f" } Frame { msec: 2928 - hash: "df09fa2fd138d1b480eec82db3872d6f" + hash: "07116cd7cf46fc692542ac57c3e30aea" } Frame { msec: 2944 - hash: "b74cb1bfbb979a5e91853d9145d277d8" + hash: "bd92a36fad90de909b5a29a6fead2160" } Frame { msec: 2960 - hash: "35425ae3ccf3c8dcc1483479c57a3287" + hash: "95c4d0cc52903dc70c9118e26cd58b7b" } Frame { msec: 2976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 2992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 3008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 3024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 3040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 3056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cb6ca047657a99dbbb037c1c45b40866" } Frame { msec: 3072 - hash: "35425ae3ccf3c8dcc1483479c57a3287" + hash: "95c4d0cc52903dc70c9118e26cd58b7b" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3088 - hash: "b74cb1bfbb979a5e91853d9145d277d8" + hash: "f9e0bd08b722c16493a8886a19920dda" } Frame { msec: 3104 - hash: "df09fa2fd138d1b480eec82db3872d6f" + hash: "0636b7c5cc215882c60b50f62133c715" } Frame { msec: 3120 - hash: "4f6dbc7b249c37390518cc263832b587" + hash: "150b5a2f2e916b7023764c481c768492" } Frame { msec: 3136 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" + hash: "14bc879f562ace9d2d1a3f3980a72e1f" } Frame { msec: 3152 - hash: "34bc703c915b49b0450ece1d18306df8" + hash: "2bdc09121f13e95e15e331ac90fbbe5e" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3168 - hash: "46fed264c233490b477e3a7c22183e18" + hash: "b701aa41aff9df45cc4b35d23789ad46" } Frame { msec: 3184 - hash: "d94054222fd37a350bd8abd592a332e3" + hash: "ad77330d51b1251576905a45fdbdf576" } Frame { msec: 3200 - hash: "9dc01a69f2a6892d3c4203674c8bef72" + hash: "4ab6780997a5a598d2da7fbbc19877b7" } Frame { msec: 3216 - hash: "76fb2e1ad33affe33c0887f04caa7396" + hash: "43b324d0e4882147d316a5dc16eff4a5" } Frame { msec: 3232 - hash: "0f500339c81ca3621d13910017b84b7b" + hash: "4379bfd0da6fedac77e2111d9fdc5ecb" } Frame { msec: 3248 - hash: "702864de569e6a5648ee174d5ef891f8" + hash: "ca35937be71e1f982cedd33bdd09d127" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3264 - hash: "01e937e1fcc0331b2541fa32c3479a24" + hash: "f6bac38774fa8a09084c045e34fd1732" } Frame { msec: 3280 - hash: "ee661e6cc1f86e755ff399adb6b11fd1" + hash: "6d8b58612860febb13800958cab3aecd" } Frame { msec: 3296 - hash: "ea2d610e9b41e72b2984a51f0d3f7587" + hash: "7f921d2293cf547de3b5573dbf98d5bb" } Frame { msec: 3312 - hash: "4a646d76b706698a02cead560b1f8d57" + hash: "18771337bbe826b5a34bd9705c79f56a" } Frame { msec: 3328 - hash: "48ec87bfc25471f6fa2d43f9db80b693" + hash: "3dd49406c4b39980908d8869dc3c060a" } Frame { msec: 3344 - hash: "827fdd6a3d1006f4a9dd2faf208ea436" + hash: "8cae649565b5655d606f216334a0b5b5" } Frame { msec: 3360 - hash: "788d8962f311adf57a3acc876b0e8804" + hash: "27c59b474d706ce79b5d075713c1ea88" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3376 - hash: "5d112a3675ea4c010e7bc60e036d0262" + hash: "6d70d654998bbc0a2431ca7c4a58cd3c" } Frame { msec: 3392 - hash: "a2ea272b45d8de225826d9381015ff2e" + hash: "bf55fffd1727c0d076e05e274dcebb0d" } Frame { msec: 3408 - hash: "e4d7a59716cd704fe1cfa8ba91454e93" + hash: "d5b0696cbe2969723bb2fe740deeb81f" } Frame { msec: 3424 - hash: "4e875ba8703b690a17e445f2b3810435" + hash: "27968050a9cf7d57d016274709086be1" } Frame { msec: 3440 - hash: "4fbbb8447d80012bc6b5c24ddbfe498e" + hash: "3bc037fd17d0d394b82ba19914f31b90" } Frame { msec: 3456 - hash: "d74f8e44d47710714d4197809fffb622" + hash: "117d7ad2d2ae47f3a0c2a68928534b76" } Frame { msec: 3472 - hash: "d23bdd94019477d8378cde580d8765ad" + hash: "a538ce971f34a497c05258da2567a208" } Frame { msec: 3488 - hash: "6032aada2c48092000ecb93e52656414" + hash: "91e2e5cc6efcffc9e58646a008a57c9d" } Frame { msec: 3504 - hash: "438be260f19d04c9f98ed7dce1c7db40" + hash: "13db17cc3c6513014a95210a443e5842" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3520 - hash: "3af60972e7d5d4320a549e5df52a1228" + hash: "03325597bd4e7d7b6f7c84c848018872" } Frame { msec: 3536 - hash: "bf8459b99ca0bf568c58a3bb2a2fcc1f" + hash: "e96dc6d611d23553b363a765195604f9" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 3552 - hash: "c0dc1cf5ba7014e069c4d4bd7ac0f89d" + hash: "942476dd6fb7a4f3d10c398503cb7b90" } Frame { msec: 3568 - hash: "f2ddf9d4fd3a2a2d354172714ce94d99" + hash: "cbe34fd18b6355ae9be469a594b44192" } Frame { msec: 3584 - hash: "bdfb42dc3879099e402784238c2cdddb" + hash: "3dce89f398d2c856bcd32da34867ebd8" } Frame { msec: 3600 - hash: "5e483b0fd4808f2fb31aea90ccf86d3e" + hash: "c78608cde907bc09760d858795b43bbf" } Frame { msec: 3616 - hash: "8159bda651d95a320ac09aa6feb377a1" + hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" } Frame { msec: 3632 - hash: "ceda37af96bd02baae218d3bfaed93f7" + hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" } Frame { msec: 3648 - hash: "4b81757a105aa7c5ac6148455eea66c3" + hash: "a6f05fb5206a456bea790ba7ba31868c" } Frame { msec: 3664 - hash: "ff7e2cdd006f9b76ab8c0416d81f0cb1" + hash: "21008b3a5179e25f9b132a4c05b8b8c4" } Frame { msec: 3680 - hash: "9b174cd9a87ff193ce646408946b310c" + hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" } Frame { msec: 3696 - hash: "89fa590b47ee77021dedf7938439ce69" + hash: "d7a226b40a049dee56755af9206246b4" } Frame { msec: 3712 - hash: "6e5680803184dfc76cbf1c2de804d6cc" + hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" } Frame { msec: 3728 - hash: "c6de6b9203673c77427ab84ce86daaf5" + hash: "1dd5625fb6a0ddbaa3919a1702695e9c" } Frame { msec: 3744 - hash: "198f8e912c19debd51f837627d1171e9" + hash: "e0b07106a5adc1603788444d48b9c3db" } Frame { msec: 3760 - hash: "3b380dcb6815698241f3dcccb52785c2" + hash: "db61ba19d56b69d148aeb182de596713" } Frame { msec: 3776 - hash: "254942e12b8a31420d2243b7e2529ae8" + hash: "39a59b2e9e0bee87d3ba50e1408bea1c" } Frame { msec: 3792 - hash: "ebf121910a5318c284f8e964d63aed40" + hash: "f34175acc261ad79bc9d2083af04ae10" } Frame { msec: 3808 - hash: "0fcf416a80d22f077fcf4d23bddeb6c6" + hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" } Frame { msec: 3824 - hash: "4a6596da390380dbafc1cdaceca1101e" + hash: "183538d04cf009f100a1e49a3229c143" } Frame { msec: 3840 - image: "cursorDelegate.3.png" + hash: "fb09d44a5a5b5b795d562512e9547301" } Frame { msec: 3856 - hash: "c2be53ae5e2d5d3081df9af31426ec84" + image: "cursorDelegate.4.png" } Frame { msec: 3872 - hash: "52350ac5d10f8fe7571d12193b861d3f" + hash: "39c81c6efdbc32b6e0378810404bef2c" } Frame { msec: 3888 - hash: "f286a35d7f4a022315f69a5db72da388" + hash: "23d9a9a6a9d032c7e447407193ca51ef" } Frame { msec: 3904 - hash: "aa329519eba4dad9589bff095528c535" + hash: "bdd00cfe933985fe77626114902ce823" } Frame { msec: 3920 - hash: "0beae60853afaaa0e7f7540fb50bcddf" + hash: "1d25c2753ccabdaaf47a669c28d9e2cb" } Frame { msec: 3936 - hash: "dc098a8b4d2f117a09cf1f2ced201a60" + hash: "20fde9bbe26ebede31fc8c21dec3fcc5" } Frame { msec: 3952 - hash: "3655b992097b433071ec9dd69e086c70" + hash: "c9147c159aebb7aa51d4bac28f96cb57" } Frame { msec: 3968 - hash: "82cb92d7940d13deee97e4ccda9210fb" + hash: "68d331f508b43e756d6e30ba9b60f9aa" } Frame { msec: 3984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af99069cdddfa9d099fbe25ba586e138" } Frame { msec: 4064 - hash: "82cb92d7940d13deee97e4ccda9210fb" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "68d331f508b43e756d6e30ba9b60f9aa" } Frame { msec: 4080 - hash: "3655b992097b433071ec9dd69e086c70" + hash: "c9147c159aebb7aa51d4bac28f96cb57" } Frame { msec: 4096 - hash: "dc098a8b4d2f117a09cf1f2ced201a60" + hash: "20fde9bbe26ebede31fc8c21dec3fcc5" } Frame { msec: 4112 - hash: "0beae60853afaaa0e7f7540fb50bcddf" + hash: "1d25c2753ccabdaaf47a669c28d9e2cb" } Frame { msec: 4128 - hash: "aa329519eba4dad9589bff095528c535" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "bdd00cfe933985fe77626114902ce823" } Frame { msec: 4144 - hash: "f286a35d7f4a022315f69a5db72da388" + hash: "23d9a9a6a9d032c7e447407193ca51ef" } Frame { msec: 4160 - hash: "52350ac5d10f8fe7571d12193b861d3f" + hash: "39c81c6efdbc32b6e0378810404bef2c" } Frame { msec: 4176 - hash: "c2be53ae5e2d5d3081df9af31426ec84" + hash: "756f36cf41c2bae3a8a8716701e55e37" } Frame { msec: 4192 - hash: "367391b2a124e2c818510567d0884d18" + hash: "fb09d44a5a5b5b795d562512e9547301" } Frame { msec: 4208 - hash: "4a6596da390380dbafc1cdaceca1101e" + hash: "183538d04cf009f100a1e49a3229c143" } Frame { msec: 4224 - hash: "0fcf416a80d22f077fcf4d23bddeb6c6" + hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" } Frame { msec: 4240 - hash: "ebf121910a5318c284f8e964d63aed40" + hash: "f34175acc261ad79bc9d2083af04ae10" } Frame { msec: 4256 - hash: "254942e12b8a31420d2243b7e2529ae8" + hash: "39a59b2e9e0bee87d3ba50e1408bea1c" } Frame { msec: 4272 - hash: "3b380dcb6815698241f3dcccb52785c2" + hash: "db61ba19d56b69d148aeb182de596713" } Frame { msec: 4288 - hash: "198f8e912c19debd51f837627d1171e9" + hash: "e0b07106a5adc1603788444d48b9c3db" } Frame { msec: 4304 - hash: "c6de6b9203673c77427ab84ce86daaf5" + hash: "1dd5625fb6a0ddbaa3919a1702695e9c" } Frame { msec: 4320 - hash: "6e5680803184dfc76cbf1c2de804d6cc" + hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" } Frame { msec: 4336 - hash: "89fa590b47ee77021dedf7938439ce69" + hash: "d7a226b40a049dee56755af9206246b4" } Frame { msec: 4352 - hash: "9b174cd9a87ff193ce646408946b310c" + hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" } Frame { msec: 4368 - hash: "ff7e2cdd006f9b76ab8c0416d81f0cb1" + hash: "21008b3a5179e25f9b132a4c05b8b8c4" } Frame { msec: 4384 - hash: "4b81757a105aa7c5ac6148455eea66c3" + hash: "a6f05fb5206a456bea790ba7ba31868c" } Frame { msec: 4400 - hash: "ceda37af96bd02baae218d3bfaed93f7" + hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" } Frame { msec: 4416 - hash: "8159bda651d95a320ac09aa6feb377a1" + hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" } Frame { msec: 4432 - hash: "5e483b0fd4808f2fb31aea90ccf86d3e" + hash: "c78608cde907bc09760d858795b43bbf" } Frame { msec: 4448 - hash: "bdfb42dc3879099e402784238c2cdddb" + hash: "3dce89f398d2c856bcd32da34867ebd8" } Frame { msec: 4464 - hash: "f2ddf9d4fd3a2a2d354172714ce94d99" + hash: "cbe34fd18b6355ae9be469a594b44192" } Frame { msec: 4480 - hash: "c0dc1cf5ba7014e069c4d4bd7ac0f89d" + hash: "942476dd6fb7a4f3d10c398503cb7b90" } Frame { msec: 4496 - hash: "bf8459b99ca0bf568c58a3bb2a2fcc1f" + hash: "e96dc6d611d23553b363a765195604f9" } Frame { msec: 4512 - hash: "3af60972e7d5d4320a549e5df52a1228" + hash: "03325597bd4e7d7b6f7c84c848018872" } Frame { msec: 4528 - hash: "438be260f19d04c9f98ed7dce1c7db40" + hash: "13db17cc3c6513014a95210a443e5842" } Frame { msec: 4544 - hash: "6032aada2c48092000ecb93e52656414" + hash: "91e2e5cc6efcffc9e58646a008a57c9d" } Frame { msec: 4560 - hash: "d23bdd94019477d8378cde580d8765ad" + hash: "a538ce971f34a497c05258da2567a208" } Frame { msec: 4576 - hash: "d74f8e44d47710714d4197809fffb622" - } - Key { - type: 6 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "117d7ad2d2ae47f3a0c2a68928534b76" } Frame { msec: 4592 - hash: "4fbbb8447d80012bc6b5c24ddbfe498e" + hash: "3bc037fd17d0d394b82ba19914f31b90" } Frame { msec: 4608 - hash: "4e875ba8703b690a17e445f2b3810435" + hash: "27968050a9cf7d57d016274709086be1" } Frame { msec: 4624 - hash: "e4d7a59716cd704fe1cfa8ba91454e93" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "d5b0696cbe2969723bb2fe740deeb81f" } Frame { msec: 4640 - hash: "a2ea272b45d8de225826d9381015ff2e" + hash: "bf55fffd1727c0d076e05e274dcebb0d" } Frame { msec: 4656 - hash: "5d112a3675ea4c010e7bc60e036d0262" + hash: "6d70d654998bbc0a2431ca7c4a58cd3c" } Frame { msec: 4672 - hash: "788d8962f311adf57a3acc876b0e8804" + hash: "27c59b474d706ce79b5d075713c1ea88" } Frame { msec: 4688 - hash: "827fdd6a3d1006f4a9dd2faf208ea436" + hash: "8cae649565b5655d606f216334a0b5b5" } Frame { msec: 4704 - hash: "48ec87bfc25471f6fa2d43f9db80b693" + hash: "3dd49406c4b39980908d8869dc3c060a" } Frame { msec: 4720 - hash: "4a646d76b706698a02cead560b1f8d57" + hash: "18771337bbe826b5a34bd9705c79f56a" } Frame { msec: 4736 - hash: "ea2d610e9b41e72b2984a51f0d3f7587" + hash: "7f921d2293cf547de3b5573dbf98d5bb" } Frame { msec: 4752 - hash: "ee661e6cc1f86e755ff399adb6b11fd1" + hash: "6d8b58612860febb13800958cab3aecd" } Frame { msec: 4768 - hash: "01e937e1fcc0331b2541fa32c3479a24" + hash: "f6bac38774fa8a09084c045e34fd1732" } Frame { msec: 4784 - hash: "702864de569e6a5648ee174d5ef891f8" + hash: "ca35937be71e1f982cedd33bdd09d127" } Frame { msec: 4800 - image: "cursorDelegate.4.png" + hash: "4379bfd0da6fedac77e2111d9fdc5ecb" } Frame { msec: 4816 - hash: "76fb2e1ad33affe33c0887f04caa7396" + image: "cursorDelegate.5.png" } Frame { msec: 4832 - hash: "9dc01a69f2a6892d3c4203674c8bef72" + hash: "4ab6780997a5a598d2da7fbbc19877b7" } Frame { msec: 4848 - hash: "d94054222fd37a350bd8abd592a332e3" + hash: "ad77330d51b1251576905a45fdbdf576" } Frame { msec: 4864 - hash: "46fed264c233490b477e3a7c22183e18" + hash: "b701aa41aff9df45cc4b35d23789ad46" } Frame { msec: 4880 - hash: "34bc703c915b49b0450ece1d18306df8" + hash: "2bdc09121f13e95e15e331ac90fbbe5e" } Frame { msec: 4896 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" + hash: "14bc879f562ace9d2d1a3f3980a72e1f" } Frame { msec: 4912 - hash: "4f6dbc7b249c37390518cc263832b587" + hash: "150b5a2f2e916b7023764c481c768492" } Frame { msec: 4928 - hash: "df09fa2fd138d1b480eec82db3872d6f" + hash: "0636b7c5cc215882c60b50f62133c715" } Frame { msec: 4944 - hash: "b74cb1bfbb979a5e91853d9145d277d8" + hash: "f9e0bd08b722c16493a8886a19920dda" } Frame { msec: 4960 - hash: "35425ae3ccf3c8dcc1483479c57a3287" - } - Frame { - msec: 4976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5072 - hash: "35425ae3ccf3c8dcc1483479c57a3287" - } - Frame { - msec: 5088 - hash: "b74cb1bfbb979a5e91853d9145d277d8" - } - Frame { - msec: 5104 - hash: "df09fa2fd138d1b480eec82db3872d6f" - } - Frame { - msec: 5120 - hash: "4f6dbc7b249c37390518cc263832b587" - } - Frame { - msec: 5136 - hash: "e87f18da2fa5c91c9b2b5dea50f9c1e2" - } - Frame { - msec: 5152 - hash: "34bc703c915b49b0450ece1d18306df8" - } - Frame { - msec: 5168 - hash: "46fed264c233490b477e3a7c22183e18" - } - Frame { - msec: 5184 - hash: "d94054222fd37a350bd8abd592a332e3" - } - Frame { - msec: 5200 - hash: "9dc01a69f2a6892d3c4203674c8bef72" - } - Frame { - msec: 5216 - hash: "76fb2e1ad33affe33c0887f04caa7396" - } - Frame { - msec: 5232 - hash: "0f500339c81ca3621d13910017b84b7b" - } - Frame { - msec: 5248 - hash: "702864de569e6a5648ee174d5ef891f8" - } - Frame { - msec: 5264 - hash: "01e937e1fcc0331b2541fa32c3479a24" - } - Frame { - msec: 5280 - hash: "ee661e6cc1f86e755ff399adb6b11fd1" - } - Frame { - msec: 5296 - hash: "ea2d610e9b41e72b2984a51f0d3f7587" - } - Frame { - msec: 5312 - hash: "4a646d76b706698a02cead560b1f8d57" - } - Frame { - msec: 5328 - hash: "48ec87bfc25471f6fa2d43f9db80b693" - } - Frame { - msec: 5344 - hash: "827fdd6a3d1006f4a9dd2faf208ea436" - } - Frame { - msec: 5360 - hash: "788d8962f311adf57a3acc876b0e8804" - } - Frame { - msec: 5376 - hash: "5d112a3675ea4c010e7bc60e036d0262" - } - Frame { - msec: 5392 - hash: "a2ea272b45d8de225826d9381015ff2e" - } - Frame { - msec: 5408 - hash: "e4d7a59716cd704fe1cfa8ba91454e93" - } - Frame { - msec: 5424 - hash: "4e875ba8703b690a17e445f2b3810435" - } - Frame { - msec: 5440 - hash: "4fbbb8447d80012bc6b5c24ddbfe498e" - } - Frame { - msec: 5456 - hash: "d74f8e44d47710714d4197809fffb622" - } - Frame { - msec: 5472 - hash: "d23bdd94019477d8378cde580d8765ad" - } - Frame { - msec: 5488 - hash: "6032aada2c48092000ecb93e52656414" - } - Frame { - msec: 5504 - hash: "438be260f19d04c9f98ed7dce1c7db40" - } - Frame { - msec: 5520 - hash: "3af60972e7d5d4320a549e5df52a1228" - } - Frame { - msec: 5536 - hash: "bf8459b99ca0bf568c58a3bb2a2fcc1f" - } - Frame { - msec: 5552 - hash: "c0dc1cf5ba7014e069c4d4bd7ac0f89d" - } - Frame { - msec: 5568 - hash: "f2ddf9d4fd3a2a2d354172714ce94d99" - } - Frame { - msec: 5584 - hash: "bdfb42dc3879099e402784238c2cdddb" - } - Frame { - msec: 5600 - hash: "5e483b0fd4808f2fb31aea90ccf86d3e" - } - Frame { - msec: 5616 - hash: "8159bda651d95a320ac09aa6feb377a1" - } - Frame { - msec: 5632 - hash: "ceda37af96bd02baae218d3bfaed93f7" - } - Frame { - msec: 5648 - hash: "4b81757a105aa7c5ac6148455eea66c3" - } - Frame { - msec: 5664 - hash: "ff7e2cdd006f9b76ab8c0416d81f0cb1" - } - Frame { - msec: 5680 - hash: "9b174cd9a87ff193ce646408946b310c" - } - Frame { - msec: 5696 - hash: "89fa590b47ee77021dedf7938439ce69" - } - Frame { - msec: 5712 - hash: "6e5680803184dfc76cbf1c2de804d6cc" - } - Frame { - msec: 5728 - hash: "c6de6b9203673c77427ab84ce86daaf5" - } - Frame { - msec: 5744 - hash: "198f8e912c19debd51f837627d1171e9" - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Frame { - msec: 5776 - hash: "254942e12b8a31420d2243b7e2529ae8" - } - Frame { - msec: 5792 - hash: "ebf121910a5318c284f8e964d63aed40" - } - Frame { - msec: 5808 - hash: "0fcf416a80d22f077fcf4d23bddeb6c6" - } - Frame { - msec: 5824 - hash: "4a6596da390380dbafc1cdaceca1101e" - } - Frame { - msec: 5840 - hash: "367391b2a124e2c818510567d0884d18" - } - Frame { - msec: 5856 - hash: "c2be53ae5e2d5d3081df9af31426ec84" - } - Frame { - msec: 5872 - hash: "52350ac5d10f8fe7571d12193b861d3f" - } - Frame { - msec: 5888 - hash: "f286a35d7f4a022315f69a5db72da388" - } - Frame { - msec: 5904 - hash: "aa329519eba4dad9589bff095528c535" - } - Frame { - msec: 5920 - hash: "0beae60853afaaa0e7f7540fb50bcddf" - } - Frame { - msec: 5936 - hash: "dc098a8b4d2f117a09cf1f2ced201a60" - } - Frame { - msec: 5952 - hash: "3655b992097b433071ec9dd69e086c70" - } - Frame { - msec: 5968 - hash: "82cb92d7940d13deee97e4ccda9210fb" - } - Frame { - msec: 5984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6064 - hash: "82cb92d7940d13deee97e4ccda9210fb" - } - Frame { - msec: 6080 - hash: "3655b992097b433071ec9dd69e086c70" - } - Frame { - msec: 6096 - hash: "dc098a8b4d2f117a09cf1f2ced201a60" - } - Frame { - msec: 6112 - hash: "0beae60853afaaa0e7f7540fb50bcddf" - } - Frame { - msec: 6128 - hash: "aa329519eba4dad9589bff095528c535" - } - Frame { - msec: 6144 - hash: "f286a35d7f4a022315f69a5db72da388" - } - Frame { - msec: 6160 - hash: "52350ac5d10f8fe7571d12193b861d3f" - } - Frame { - msec: 6176 - hash: "c2be53ae5e2d5d3081df9af31426ec84" - } - Frame { - msec: 6192 - hash: "367391b2a124e2c818510567d0884d18" - } - Frame { - msec: 6208 - hash: "4a6596da390380dbafc1cdaceca1101e" - } - Frame { - msec: 6224 - hash: "0fcf416a80d22f077fcf4d23bddeb6c6" - } - Frame { - msec: 6240 - hash: "ebf121910a5318c284f8e964d63aed40" - } - Frame { - msec: 6256 - hash: "254942e12b8a31420d2243b7e2529ae8" - } - Frame { - msec: 6272 - hash: "3b380dcb6815698241f3dcccb52785c2" - } - Frame { - msec: 6288 - hash: "198f8e912c19debd51f837627d1171e9" - } - Frame { - msec: 6304 - hash: "c6de6b9203673c77427ab84ce86daaf5" - } - Frame { - msec: 6320 - hash: "6e5680803184dfc76cbf1c2de804d6cc" - } - Frame { - msec: 6336 - hash: "89fa590b47ee77021dedf7938439ce69" - } - Frame { - msec: 6352 - hash: "9b174cd9a87ff193ce646408946b310c" - } - Frame { - msec: 6368 - hash: "ff7e2cdd006f9b76ab8c0416d81f0cb1" - } - Frame { - msec: 6384 - hash: "4b81757a105aa7c5ac6148455eea66c3" - } - Frame { - msec: 6400 - hash: "ceda37af96bd02baae218d3bfaed93f7" - } - Frame { - msec: 6416 - hash: "8159bda651d95a320ac09aa6feb377a1" - } - Frame { - msec: 6432 - hash: "5e483b0fd4808f2fb31aea90ccf86d3e" - } - Frame { - msec: 6448 - hash: "bdfb42dc3879099e402784238c2cdddb" - } - Frame { - msec: 6464 - hash: "f2ddf9d4fd3a2a2d354172714ce94d99" - } - Frame { - msec: 6480 - hash: "c0dc1cf5ba7014e069c4d4bd7ac0f89d" - } - Frame { - msec: 6496 - hash: "bf8459b99ca0bf568c58a3bb2a2fcc1f" - } - Frame { - msec: 6512 - hash: "3af60972e7d5d4320a549e5df52a1228" - } - Frame { - msec: 6528 - hash: "438be260f19d04c9f98ed7dce1c7db40" - } - Frame { - msec: 6544 - hash: "6032aada2c48092000ecb93e52656414" - } - Frame { - msec: 6560 - hash: "d23bdd94019477d8378cde580d8765ad" - } - Frame { - msec: 6576 - hash: "d74f8e44d47710714d4197809fffb622" - } - Frame { - msec: 6592 - hash: "4fbbb8447d80012bc6b5c24ddbfe498e" - } - Frame { - msec: 6608 - hash: "4e875ba8703b690a17e445f2b3810435" - } - Frame { - msec: 6624 - hash: "e4d7a59716cd704fe1cfa8ba91454e93" - } - Frame { - msec: 6640 - hash: "a2ea272b45d8de225826d9381015ff2e" - } - Frame { - msec: 6656 - hash: "5d112a3675ea4c010e7bc60e036d0262" - } - Frame { - msec: 6672 - hash: "788d8962f311adf57a3acc876b0e8804" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 271; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "e2eb18af82c85ea78ba438163e922df3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "91b2695e4915238ae8610a64e279b0f4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "ea2d610e9b41e72b2984a51f0d3f7587" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "ee661e6cc1f86e755ff399adb6b11fd1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "01e937e1fcc0331b2541fa32c3479a24" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "702864de569e6a5648ee174d5ef891f8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "0f500339c81ca3621d13910017b84b7b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 263; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 261; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "76fb2e1ad33affe33c0887f04caa7396" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 259; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "9dc01a69f2a6892d3c4203674c8bef72" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "58693aa1a3616310b7ae1e529c4c461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 250; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 243; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "96afccd7ec697c9c10840f0effaa448d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "a00d49e2a9069b1be41f95f6ff4c0312" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "a0ff4b93291fc12054d3989a20335a87" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6912 - hash: "a86e1347bb25489547514955762d92d3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6928 - hash: "e5cba3c1e41e38117508c84e894beb11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6944 - hash: "2560f53b8ac0a84fef895dbb8f0e393e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 172; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6960 - hash: "c1b8bfc008319b793b6bd9345d34ccf5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7072 - hash: "a9f2804ac7918971f237c4cfa6339c24" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "bc9c96855f048cb6c86d480e501322ab" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "706730602364bfb4d0193d1728a6d350" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7120 - hash: "df80fe3e3ba35ab3fafca929b9101e13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "aa8fa1baf61919004a4f14948826882e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "1829dfa3615d6ae430ba81a2df9a9e15" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "c4ea5c767192bbd3bfac58d07594016a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "319aede65b3473f28a4ca62a524e4a76" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7200 - hash: "e1de653161e3348e083267c9082bc0f0" - } - Frame { - msec: 7216 - hash: "de5f2d5147c600d2cb44072801c2338e" - } - Frame { - msec: 7232 - hash: "6db41d704d2e28f36b206bdb317ee361" - } - Frame { - msec: 7248 - hash: "a500b87efea241cdf8adf97ae86e10c3" - } - Frame { - msec: 7264 - hash: "86c4eb0164a5b57eb22de4c9d58345f5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7280 - hash: "2dbb1e3a1374b7c4aecd5a891be4573d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "07bcafdf5ca28a1416a20ed375ec3ea6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "e79def41bbf7e544d64cf19d74524d3a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "20aff98618d16c00dc9b76035e9523f5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "12b5e016bad990d1f2bf427ee8e3e6d9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "66a2ba3f9e005cd58aa50cfa0000cd15" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "a2e9e42e09dadbd0791f52bb96e0e0dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "ac68396566ea85a157e944e601dd8d18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "b9bfdebec8dd1a93de7ef2768b2542ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "2e0a4b960803770acb34ef56ccf2be35" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "df1643f0f8b7aa2dc080958822aeb3d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "af8ce877d953727d37fd6f7e4962f45a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "b9de04c0d7532d67404a5a773d9fab99" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "7904312a7efe0b545070c5a5615011df" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "0069a8f088c83c6716bac15567a5b38d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "8c17c78d663097e275ed2f80d6479caf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "9e8781569e07fca7def229b76189082d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "8dba2f259740d869bfa20205d2e14433" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "4e7ad066aadbad3f71a08962ba1379c0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "a5d1554a6fb311239acc077f01adc597" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7600 - hash: "e91b45c430f7e10c2205af620350ddb6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "6c731f4dbdec441cd36b1e9727758d73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7632 - hash: "31634e757bdec45feb1f021e35746d65" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "846dcb42fa85719223eb19f7af3d0630" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7664 - hash: "a5826c5d7d1b9161cc7fb76f59021fdd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7696 - hash: "bdfb9b949489744bc77905249eb647f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7712 - hash: "307d4fb47604c00e213f8d9616e0da13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7728 - hash: "74201a80a9032cb18b0c9e26bb67363f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "38ca918199552a525fb7f3a3773761d9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7760 - hash: "d64c06c25229b3b64b779ca1bef7d2cb" - } - Frame { - msec: 7776 - hash: "4ba0117db1ff431de20c06c79866d509" - } - Frame { - msec: 7792 - hash: "ca56899ded0e5ea361aac24493793f58" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7808 - hash: "ebce1d3b4d088278b6f36dac444c7ca6" - } - Frame { - msec: 7824 - hash: "16c52065169bffc4648eda0226dba13a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "7a5a6a02f57545d9f2336ff18dd118d6" - } - Frame { - msec: 7856 - hash: "328c8133c68fc2e86dc2193d1bee3259" - } - Frame { - msec: 7872 - hash: "fcad1d2819e3cede6081b4dfbb5a4a65" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "85ff2968ba06443f300c9c0ef36c7054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "871025c33fa769a790fc460a95b183ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "5b96f2673e0ccd2b198b9f99c65b4b12" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7936 - hash: "5fc6f30a2dd019c4f2af056b51cfaa27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7952 - hash: "fc6bf3bcde1f89f0bff40e3e019aed33" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7968 - hash: "703beec7b035080146131936da8c0fb3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8064 - hash: "703beec7b035080146131936da8c0fb3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "fc6bf3bcde1f89f0bff40e3e019aed33" - } - Frame { - msec: 8096 - hash: "5fc6f30a2dd019c4f2af056b51cfaa27" - } - Frame { - msec: 8112 - hash: "5b96f2673e0ccd2b198b9f99c65b4b12" - } - Frame { - msec: 8128 - hash: "871025c33fa769a790fc460a95b183ec" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8144 - hash: "85ff2968ba06443f300c9c0ef36c7054" - } - Frame { - msec: 8160 - hash: "fcad1d2819e3cede6081b4dfbb5a4a65" - } - Frame { - msec: 8176 - hash: "328c8133c68fc2e86dc2193d1bee3259" - } - Frame { - msec: 8192 - hash: "7a5a6a02f57545d9f2336ff18dd118d6" - } - Frame { - msec: 8208 - hash: "16c52065169bffc4648eda0226dba13a" - } - Frame { - msec: 8224 - hash: "ebce1d3b4d088278b6f36dac444c7ca6" - } - Frame { - msec: 8240 - hash: "ca56899ded0e5ea361aac24493793f58" - } - Frame { - msec: 8256 - hash: "4ba0117db1ff431de20c06c79866d509" - } - Frame { - msec: 8272 - hash: "d64c06c25229b3b64b779ca1bef7d2cb" - } - Frame { - msec: 8288 - hash: "38ca918199552a525fb7f3a3773761d9" - } - Frame { - msec: 8304 - hash: "74201a80a9032cb18b0c9e26bb67363f" - } - Frame { - msec: 8320 - hash: "307d4fb47604c00e213f8d9616e0da13" - } - Frame { - msec: 8336 - hash: "9ad660f83ed62b964b676106f8aa7114" - } - Frame { - msec: 8352 - hash: "457fc0df515f9813e98a6a86f4ab5231" - } - Frame { - msec: 8368 - hash: "372cbc6ad4edc85319743627ced05671" - } - Frame { - msec: 8384 - hash: "4e08beac6ee40acaa4de6963522d63d0" - } - Frame { - msec: 8400 - hash: "5e790c2199a5e95fc17f8c0b49809cc9" - } - Frame { - msec: 8416 - hash: "e36310e1866d4a95bac60084fa4aa2c1" - } - Frame { - msec: 8432 - hash: "b7182b171316cc2db4de2b23de93dc41" - } - Frame { - msec: 8448 - hash: "6aaf7f8e6e238973dfd4030eb146198b" - } - Frame { - msec: 8464 - hash: "901ead3167e602dfe043c56c6c805d54" - } - Frame { - msec: 8480 - hash: "5a97542680475b1382ad5b7c3f6fa96a" - } - Frame { - msec: 8496 - hash: "fb34d93127f3c3ad0c7bacce0200753b" - } - Frame { - msec: 8512 - hash: "993c97dc85e83e241538356e317b7767" - } - Frame { - msec: 8528 - hash: "fb11a9edb3a613be5cb6949c76c5c715" - } - Frame { - msec: 8544 - hash: "e68b7461f94adeaf330f67d36d0d3b3e" - } - Frame { - msec: 8560 - hash: "7ed043cc027fdb467bd16847187cd48d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 277; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "fefbb2f4671f8a36f9d2207ced8c0bfb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 277; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "1ab596339afc1f96136ee69c4b7688e1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "e07f59d729cb2790296e8c7cd3d0d3c9" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "a7dccada1080487cab2d0a916676c5cb" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "9329d353c678d2bc61d08f63029d1b9b" - } - Frame { - msec: 8672 - hash: "41263f56af7875028bb0c1e7eccf6f5d" - } - Frame { - msec: 8688 - hash: "e2eb18af82c85ea78ba438163e922df3" - } - Frame { - msec: 8704 - hash: "91b2695e4915238ae8610a64e279b0f4" - } - Frame { - msec: 8720 - hash: "a97d90765f87b998eae6e9f603c61bff" - } - Frame { - msec: 8736 - hash: "48969edab07b942480d93ac2d383ca24" - } - Frame { - msec: 8752 - hash: "ecfd9d6d5873001f0c67806544a14983" - } - Frame { - msec: 8768 - hash: "a3a3bc1e2523d3e7f961893bcd1dd3a8" - } - Frame { - msec: 8784 - hash: "e337735ad0b42e60c54f16f3da7af3cf" - } - Frame { - msec: 8800 - hash: "c39db081130d269f25dbcb1a19afb8d0" - } - Frame { - msec: 8816 - hash: "c464d501e3935ec0f53eb780bd1a8289" - } - Frame { - msec: 8832 - hash: "2be4fd986de19f6f76dfddec75b26804" - } - Frame { - msec: 8848 - hash: "a1280e9fb86ca96b2340bb70aa774806" - } - Frame { - msec: 8864 - hash: "cce4c17a387893478bcfa547f7561aba" - } - Frame { - msec: 8880 - hash: "7094db3e04895d8d7f5f58caf0658592" - } - Frame { - msec: 8896 - hash: "edb1f644757f9ba0a39549d77141c280" - } - Frame { - msec: 8912 - hash: "cd381e847ecfce2db111bdf94a437cbc" - } - Frame { - msec: 8928 - hash: "6a089603b641b683a744b88f2ebe82d1" - } - Frame { - msec: 8944 - hash: "8c0e47f7c87a1a11cd733a453b31c780" - } - Frame { - msec: 8960 - hash: "b53c892d62e787eb2565820d79739de6" - } - Frame { - msec: 8976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 8992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 9072 - hash: "b53c892d62e787eb2565820d79739de6" - } - Frame { - msec: 9088 - hash: "8c0e47f7c87a1a11cd733a453b31c780" - } - Frame { - msec: 9104 - hash: "6a089603b641b683a744b88f2ebe82d1" - } - Frame { - msec: 9120 - hash: "cd381e847ecfce2db111bdf94a437cbc" - } - Frame { - msec: 9136 - hash: "edb1f644757f9ba0a39549d77141c280" - } - Frame { - msec: 9152 - hash: "7094db3e04895d8d7f5f58caf0658592" - } - Frame { - msec: 9168 - hash: "cce4c17a387893478bcfa547f7561aba" - } - Frame { - msec: 9184 - hash: "a1280e9fb86ca96b2340bb70aa774806" - } - Frame { - msec: 9200 - hash: "2be4fd986de19f6f76dfddec75b26804" - } - Frame { - msec: 9216 - hash: "c464d501e3935ec0f53eb780bd1a8289" - } - Frame { - msec: 9232 - hash: "c39db081130d269f25dbcb1a19afb8d0" - } - Frame { - msec: 9248 - hash: "e337735ad0b42e60c54f16f3da7af3cf" - } - Frame { - msec: 9264 - hash: "a3a3bc1e2523d3e7f961893bcd1dd3a8" - } - Frame { - msec: 9280 - hash: "ecfd9d6d5873001f0c67806544a14983" - } - Frame { - msec: 9296 - hash: "48969edab07b942480d93ac2d383ca24" - } - Frame { - msec: 9312 - hash: "a97d90765f87b998eae6e9f603c61bff" - } - Frame { - msec: 9328 - hash: "91b2695e4915238ae8610a64e279b0f4" - } - Frame { - msec: 9344 - hash: "e2eb18af82c85ea78ba438163e922df3" - } - Frame { - msec: 9360 - hash: "41263f56af7875028bb0c1e7eccf6f5d" - } - Frame { - msec: 9376 - hash: "9329d353c678d2bc61d08f63029d1b9b" - } - Frame { - msec: 9392 - hash: "ac5939eb4379394fab829b307cbfe7ec" - } - Frame { - msec: 9408 - hash: "a7dccada1080487cab2d0a916676c5cb" - } - Frame { - msec: 9424 - hash: "e07f59d729cb2790296e8c7cd3d0d3c9" + hash: "f499f4b3017c88c63f0a2035ad527a0e" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png Binary files differnew file mode 100644 index 0000000..5f632d0 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png Binary files differnew file mode 100644 index 0000000..060be22 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png Binary files differnew file mode 100644 index 0000000..d373aef --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png Binary files differnew file mode 100644 index 0000000..5dad108 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml new file mode 100644 index 0000000..6081aaf --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml @@ -0,0 +1,1043 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "echoMode.0.png" + } + Frame { + msec: 32 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 48 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 64 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 80 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 96 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 112 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 128 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 144 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 160 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 176 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 192 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 208 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 224 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 240 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 256 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 272 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 288 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 304 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 320 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 336 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Frame { + msec: 352 + hash: "0e7c7dc19aab217751411568b58830ef" + } + Key { + type: 6 + key: 74 + modifiers: 33554432 + text: "4a" + autorep: false + count: 1 + } + Frame { + msec: 368 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 384 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 400 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 416 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 432 + hash: "593867b082681c362d7dffda12615284" + } + Key { + type: 7 + key: 74 + modifiers: 33554432 + text: "4a" + autorep: false + count: 1 + } + Frame { + msec: 448 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 464 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 480 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 496 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 512 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 528 + hash: "593867b082681c362d7dffda12615284" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 560 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 576 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 592 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 608 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 624 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 640 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 656 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 672 + hash: "593867b082681c362d7dffda12615284" + } + Frame { + msec: 688 + hash: "593867b082681c362d7dffda12615284" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 704 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 720 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 736 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 752 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 768 + hash: "8d4a4baca932c318fba437b05962a635" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 784 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 800 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 816 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 832 + hash: "8d4a4baca932c318fba437b05962a635" + } + Frame { + msec: 848 + hash: "8d4a4baca932c318fba437b05962a635" + } + Key { + type: 6 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 864 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 880 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 896 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Key { + type: 7 + key: 67 + modifiers: 0 + text: "63" + autorep: false + count: 1 + } + Frame { + msec: 912 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 928 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 944 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 960 + hash: "b2698dba3a5ebe80e26f273b32857506" + } + Frame { + msec: 976 + image: "echoMode.1.png" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 992 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1008 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1024 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1040 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 1056 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1072 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1088 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1104 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1120 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1136 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1152 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1168 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1184 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1200 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1216 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Frame { + msec: 1232 + hash: "3ea06a90d633d5e9fe5a11cc4ed67764" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1248 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Frame { + msec: 1264 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Frame { + msec: 1280 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1296 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Frame { + msec: 1312 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Frame { + msec: 1328 + hash: "a190bbf59ec807391077b9d1183f72b5" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 1344 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1360 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1376 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1392 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1408 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1424 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1440 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1456 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Frame { + msec: 1472 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 1488 + hash: "f171a98a3a726b517ad4b401a0720ba2" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 1504 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1520 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1536 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1552 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1584 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1600 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1616 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1632 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Frame { + msec: 1648 + hash: "e7199e4284be9dea34caff7bde0f6303" + } + Key { + type: 6 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 1664 + hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" + } + Frame { + msec: 1680 + hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" + } + Frame { + msec: 1696 + hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" + } + Frame { + msec: 1712 + hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" + } + Frame { + msec: 1728 + hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Key { + type: 7 + key: 83 + modifiers: 0 + text: "73" + autorep: false + count: 1 + } + Frame { + msec: 1760 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Frame { + msec: 1776 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Frame { + msec: 1792 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1808 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Frame { + msec: 1824 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Frame { + msec: 1840 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Frame { + msec: 1856 + hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 1872 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 1888 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 1904 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 1920 + hash: "2af75935ad1d3be02c6481c094737575" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 1936 + image: "echoMode.2.png" + } + Frame { + msec: 1952 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 1968 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 1984 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 2000 + hash: "2af75935ad1d3be02c6481c094737575" + } + Frame { + msec: 2016 + hash: "2af75935ad1d3be02c6481c094737575" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" + } + Frame { + msec: 2048 + hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" + } + Frame { + msec: 2080 + hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" + } + Key { + type: 6 + key: 86 + modifiers: 0 + text: "76" + autorep: false + count: 1 + } + Frame { + msec: 2096 + hash: "064e1fc885ab7f07dad1770361087bef" + } + Frame { + msec: 2112 + hash: "064e1fc885ab7f07dad1770361087bef" + } + Frame { + msec: 2128 + hash: "064e1fc885ab7f07dad1770361087bef" + } + Frame { + msec: 2144 + hash: "064e1fc885ab7f07dad1770361087bef" + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Key { + type: 7 + key: 86 + modifiers: 0 + text: "76" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "9b764f6e9cc3d30446e1b32f7ab94f66" + } + Frame { + msec: 2176 + hash: "9b764f6e9cc3d30446e1b32f7ab94f66" + } + Frame { + msec: 2192 + hash: "9b764f6e9cc3d30446e1b32f7ab94f66" + } + Frame { + msec: 2208 + hash: "9b764f6e9cc3d30446e1b32f7ab94f66" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2224 + hash: "18eff632e106f632aad481ab40f985d7" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "18eff632e106f632aad481ab40f985d7" + } + Frame { + msec: 2256 + hash: "18eff632e106f632aad481ab40f985d7" + } + Frame { + msec: 2272 + hash: "18eff632e106f632aad481ab40f985d7" + } + Frame { + msec: 2288 + hash: "18eff632e106f632aad481ab40f985d7" + } + Frame { + msec: 2304 + hash: "18eff632e106f632aad481ab40f985d7" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2320 + hash: "18eff632e106f632aad481ab40f985d7" + } + Frame { + msec: 2336 + hash: "18eff632e106f632aad481ab40f985d7" + } + Key { + type: 6 + key: 77 + modifiers: 0 + text: "6d" + autorep: false + count: 1 + } + Frame { + msec: 2352 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2368 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2384 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2400 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2416 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2432 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Key { + type: 7 + key: 77 + modifiers: 0 + text: "6d" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2464 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2480 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Frame { + msec: 2496 + hash: "eaabd4617081e3bc68a5b9099c63272a" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 2512 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2528 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2544 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2576 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2592 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2608 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2624 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2640 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2656 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2672 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2688 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2704 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2720 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2736 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2752 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2768 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2784 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2800 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2816 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2832 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2848 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2864 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2880 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2896 + image: "echoMode.3.png" + } + Frame { + msec: 2912 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2928 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2944 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2960 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2976 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 2992 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 3008 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 3024 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 3040 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } + Frame { + msec: 3056 + hash: "fec019ea87914d30b5bf4754ce8ba916" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png Binary files differnew file mode 100644 index 0000000..6a32f0d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml new file mode 100644 index 0000000..fd64d64 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml @@ -0,0 +1,107 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "hAlign.0.png" + } + Frame { + msec: 32 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 48 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 64 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 80 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 96 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 112 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 128 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 144 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 160 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 176 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 192 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 208 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 224 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 240 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 256 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 272 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 288 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 304 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 320 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 336 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 352 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 368 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 384 + hash: "043c40378d2707bd231a448cd242aa3c" + } + Frame { + msec: 400 + hash: "043c40378d2707bd231a448cd242aa3c" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png Binary files differnew file mode 100644 index 0000000..6ca52b6 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png Binary files differnew file mode 100644 index 0000000..31d6b2c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png Binary files differnew file mode 100644 index 0000000..d89e2d8 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png Binary files differnew file mode 100644 index 0000000..834516a --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png Binary files differnew file mode 100644 index 0000000..31d6b2c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png Binary files differnew file mode 100644 index 0000000..31d6b2c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png Binary files differnew file mode 100644 index 0000000..8147bda --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png Binary files differnew file mode 100644 index 0000000..c67e619 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png Binary files differnew file mode 100644 index 0000000..646855f --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png Binary files differnew file mode 100644 index 0000000..c1a9d5c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png Binary files differnew file mode 100644 index 0000000..d6c92b7 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png Binary files differnew file mode 100644 index 0000000..e798d3b --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml new file mode 100644 index 0000000..fc8a115 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml @@ -0,0 +1,4335 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "usingLineEdit.0.png" + } + Frame { + msec: 32 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 48 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 64 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 80 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 96 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 112 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 128 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 144 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 160 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 176 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 192 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 208 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 224 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 240 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 256 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 272 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 288 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 304 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 320 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 336 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 352 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 368 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 384 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 400 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 416 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 432 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 448 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 464 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 480 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 496 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 512 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 528 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 544 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 560 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 576 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 592 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 608 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 624 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 640 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 656 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 672 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 688 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 704 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 720 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 736 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 752 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 768 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 784 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 800 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 816 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 832 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 848 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 864 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 880 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 896 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 912 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Frame { + msec: 928 + hash: "b2bcfe5c299742bf7da166e9ae1e1126" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 85; y: 11 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 944 + hash: "1e95a74868a748e11efdc6fbb500f6e8" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 85; y: 11 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 960 + hash: "1e95a74868a748e11efdc6fbb500f6e8" + } + Mouse { + type: 4 + button: 1 + buttons: 1 + x: 85; y: 11 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 976 + image: "usingLineEdit.1.png" + } + Frame { + msec: 992 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1008 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1024 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1040 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1056 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 85; y: 11 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1072 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1088 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1104 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1120 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1136 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1152 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1168 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1184 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1200 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1216 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1232 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1248 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1264 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1280 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1296 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1312 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1328 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1344 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1360 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1376 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1392 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1408 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1424 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1440 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1456 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1472 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1488 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1504 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1520 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1536 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1552 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1568 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1584 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1600 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1616 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1632 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1648 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1664 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1680 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1696 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1712 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1728 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1744 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1760 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1776 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1792 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1808 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1824 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1840 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1856 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1872 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1888 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1904 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1920 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1936 + image: "usingLineEdit.2.png" + } + Frame { + msec: 1952 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1968 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 1984 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 6 + key: 67 + modifiers: 67108864 + text: "03" + autorep: false + count: 1 + } + Frame { + msec: 2000 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2016 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2032 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2048 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2064 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2080 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2096 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2112 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + 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: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2144 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2160 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2176 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2192 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2208 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2224 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2240 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2256 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2272 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2288 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2304 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2320 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2336 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2352 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2368 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2384 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2400 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2416 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2432 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2448 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2464 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2480 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 6 + key: 16777233 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2496 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2512 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2528 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2544 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2560 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2576 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 7 + key: 16777233 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2592 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2608 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2624 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2640 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2656 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2672 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2688 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2704 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2720 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2736 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2752 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2768 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2784 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2816 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2832 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2848 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2864 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2880 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2896 + image: "usingLineEdit.3.png" + } + Frame { + msec: 2912 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2928 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2944 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2960 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2976 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 2992 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3008 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3024 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3040 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3056 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3072 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3088 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3104 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3120 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3136 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3152 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3168 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3184 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3200 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Frame { + msec: 3216 + hash: "c346bd1c6a8c04dff75bc14882a4d964" + } + Key { + type: 6 + key: 86 + modifiers: 67108864 + text: "16" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3248 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3264 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3280 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3296 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3312 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3328 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Key { + type: 7 + key: 86 + modifiers: 67108864 + text: "16" + autorep: false + count: 1 + } + Frame { + msec: 3344 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3360 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3376 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3392 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3408 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3424 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3440 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3456 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3472 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3488 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3504 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3520 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3536 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Frame { + msec: 3552 + hash: "4e24e7e6a205160479b0d23057a50b37" + } + Key { + type: 6 + key: 86 + modifiers: 67108864 + text: "16" + autorep: false + count: 1 + } + Frame { + msec: 3568 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3584 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3600 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3616 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3632 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3648 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3664 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3680 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Key { + type: 7 + key: 86 + modifiers: 67108864 + text: "16" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3712 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3728 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3744 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3760 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3776 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3792 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3808 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3824 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3840 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3856 + image: "usingLineEdit.4.png" + } + Frame { + msec: 3872 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3888 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3904 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3920 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3936 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3952 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3968 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 3984 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4000 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4016 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4032 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4048 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4064 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4080 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4096 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4112 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4128 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4144 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4160 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4176 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4192 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Key { + type: 7 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4208 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4224 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4240 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4256 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4272 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4288 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4304 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4320 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4336 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4352 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4368 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4384 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4400 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4416 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4432 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4448 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4464 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4480 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4496 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4512 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4528 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4544 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4560 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4576 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4592 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4608 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4624 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4640 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4656 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4672 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4688 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Frame { + msec: 4704 + hash: "c6354c09a2bdf6ff23cae30640abdd65" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 69; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4720 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4736 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4752 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4768 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4784 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4800 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 69; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4816 + image: "usingLineEdit.5.png" + } + Frame { + msec: 4832 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4848 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4864 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4880 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4896 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4912 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4928 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4944 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4960 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4976 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 4992 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5008 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5024 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5040 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5056 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5072 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5088 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5104 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5120 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5136 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5152 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5168 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5184 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5200 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5216 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5232 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5248 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5264 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5280 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5296 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5312 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5328 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5344 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Frame { + msec: 5360 + hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5376 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5392 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5408 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5424 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5440 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5456 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5472 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5488 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5504 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5520 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5536 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5552 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5568 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5584 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5600 + hash: "5435254889b22b00b043f0d748021369" + } + Frame { + msec: 5616 + hash: "5435254889b22b00b043f0d748021369" + } + 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: "94fa3848acc33accfb607ce31029f06d" + } + Frame { + msec: 5648 + hash: "94fa3848acc33accfb607ce31029f06d" + } + 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: "1ea423dd8084001f2357f1613a77daa4" + } + Frame { + msec: 5680 + hash: "1ea423dd8084001f2357f1613a77daa4" + } + 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: "b0f808e85cc5721473da7cd84b1987dc" + } + Frame { + msec: 5712 + hash: "b0f808e85cc5721473da7cd84b1987dc" + } + 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: "0667aaf2eb49c2375b831301fefb0035" + } + Frame { + msec: 5744 + hash: "0667aaf2eb49c2375b831301fefb0035" + } + 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 + hash: "7680aca6b9feccc7e73efa79c1473ce8" + } + Frame { + msec: 5776 + image: "usingLineEdit.6.png" + } + 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: "fbbc99bf6a697d60ef348148c0a48bc2" + } + Frame { + msec: 5808 + hash: "fbbc99bf6a697d60ef348148c0a48bc2" + } + 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: "9550d8fab2512470dd9dde62f3494450" + } + Frame { + msec: 5840 + hash: "9550d8fab2512470dd9dde62f3494450" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5856 + hash: "9550d8fab2512470dd9dde62f3494450" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5872 + hash: "ab79f5095d60f5cef526a074ef6d4e96" + } + Frame { + msec: 5888 + hash: "ab79f5095d60f5cef526a074ef6d4e96" + } + 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: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5920 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 5936 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 5952 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 5968 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 5984 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6000 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6016 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6032 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6048 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6064 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6080 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6096 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6112 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6128 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Frame { + msec: 6144 + hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6160 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6176 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6192 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6208 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6224 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6240 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6256 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6272 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6288 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6304 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6320 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6336 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6352 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6368 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6384 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6400 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + 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: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6432 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + 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: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6464 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + 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: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6496 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6512 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6528 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6544 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6560 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6576 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6592 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6608 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6624 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6640 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6656 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6672 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6688 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6704 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6720 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6736 + image: "usingLineEdit.7.png" + } + Frame { + msec: 6752 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6768 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6784 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6800 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6816 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6832 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6848 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6864 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6880 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6896 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6912 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6928 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Frame { + msec: 6944 + hash: "ed2a8fae3e94e2f90232d172246d3783" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6960 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 6976 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 6992 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7008 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7024 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7040 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7056 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7072 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7088 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7104 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7120 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7136 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7152 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7168 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7184 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7200 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7216 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7232 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7248 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7264 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7280 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7296 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7312 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7328 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7344 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7360 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7376 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7392 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7408 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7424 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7440 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7456 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7472 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7488 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7504 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7520 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Key { + type: 7 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7536 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7552 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7568 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7584 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7600 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7616 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7632 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7648 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7664 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7680 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7696 + image: "usingLineEdit.8.png" + } + Frame { + msec: 7712 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7728 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7744 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7760 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7776 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7792 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7808 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7824 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7840 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7856 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7872 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7888 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7904 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7920 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7936 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7952 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7968 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 7984 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8000 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8016 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8032 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8048 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8064 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8080 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8096 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8112 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8128 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8144 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8160 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8176 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8192 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8208 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8224 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8240 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8256 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8272 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8288 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8304 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8320 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8336 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8352 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8368 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8384 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8400 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8416 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8432 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8448 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8464 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8480 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Frame { + msec: 8496 + hash: "f1c4f46ee86ce1eb24fcd72106da0248" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 61; y: 38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 8512 + hash: "e779fc73a3ca131452f62e889d5c96ea" + } + Frame { + msec: 8528 + hash: "e779fc73a3ca131452f62e889d5c96ea" + } + Frame { + msec: 8544 + hash: "e779fc73a3ca131452f62e889d5c96ea" + } + Frame { + msec: 8560 + hash: "e779fc73a3ca131452f62e889d5c96ea" + } + 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: "e779fc73a3ca131452f62e889d5c96ea" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: 38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 8592 + hash: "400b446983d944bac62889fb47e8d405" + } + 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: "400b446983d944bac62889fb47e8d405" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 32; y: 38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 8624 + hash: "769278730ba7e2a31333496a0c99499f" + } + 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 + hash: "769278730ba7e2a31333496a0c99499f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 29; y: 38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 8656 + image: "usingLineEdit.9.png" + } + 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: "c193a6f52a967c97961df08ebffe50c1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 26; y: 38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 8688 + hash: "c193a6f52a967c97961df08ebffe50c1" + } + 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: "c193a6f52a967c97961df08ebffe50c1" + } + 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: "c193a6f52a967c97961df08ebffe50c1" + } + 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: "ce0d865bf18c5c3ff93bda82f95e97c2" + } + 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: "ce0d865bf18c5c3ff93bda82f95e97c2" + } + 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: "ce0d865bf18c5c3ff93bda82f95e97c2" + } + 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: "ce0d865bf18c5c3ff93bda82f95e97c2" + } + 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: "ce0d865bf18c5c3ff93bda82f95e97c2" + } + 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: "af2a9c17451a89153e04418e056d9ea5" + } + 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: "749a1ccf2050c809be5e3820d3b2fba9" + } + 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: "74f183256682200a804baa620a6ce978" + } + 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: "9d837fb68c47ac3659b93e9f77cea0af" + } + 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: "2dc20ba694548e05c80383d0fcc429fc" + } + 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: "0f5b95fbbdd932c8dbfaffd0cdd44dec" + } + 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: "dd9e9d86eacd44b19c6c9c64c2abf007" + } + 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: "7c67140abcbe7b8a36a7324016377272" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 8976 + hash: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: -18; y: 36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9008 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9024 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9040 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9056 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9072 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9088 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9104 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9120 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9136 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9152 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9168 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9184 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Frame { + msec: 9200 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: -17; y: 36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "a085e2633649f0328f109bc4143eaccc" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: -16; y: 36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9232 + hash: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "a085e2633649f0328f109bc4143eaccc" + } + 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: "fe89231a1ac7f48eee7cea14167b6616" + } + 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: "fe89231a1ac7f48eee7cea14167b6616" + } + 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: "fe89231a1ac7f48eee7cea14167b6616" + } + 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: "e816757e030c8927d6721295f8685162" + } + 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: "48f3a7d217ff85ad6088e18c1b88d6d7" + } + 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: "48f3a7d217ff85ad6088e18c1b88d6d7" + } + 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: "6cb50f458ba606cc4204727a02e9191b" + } + 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: "6cb50f458ba606cc4204727a02e9191b" + } + 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: "936d1a2ceed861a48fb3dd0c54cb0982" + } + 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: "936d1a2ceed861a48fb3dd0c54cb0982" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9536 + hash: "936d1a2ceed861a48fb3dd0c54cb0982" + } + 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: "9fb9dbff35b91d65e1e7ce569baede55" + } + 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: "9fb9dbff35b91d65e1e7ce569baede55" + } + 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: "78038f8df4ef17a164172c5bce16527d" + } + 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 + hash: "b390e534fe43678ff031ec9de32b50d0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 76; y: 34 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9616 + image: "usingLineEdit.10.png" + } + 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: "b390e534fe43678ff031ec9de32b50d0" + } + 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: "b390e534fe43678ff031ec9de32b50d0" + } + 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: "94fa3848acc33accfb607ce31029f06d" + } + 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: "b0f808e85cc5721473da7cd84b1987dc" + } + 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: "7680aca6b9feccc7e73efa79c1473ce8" + } + 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: "ab79f5095d60f5cef526a074ef6d4e96" + } + 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: "35c718664fc8e817e26054c307f908f9" + } + 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: "23267fdc8202daba400140e51f5e3bdc" + } + 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: "0b2765ae503f0194e6e526ea6f9ed8f9" + } + 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: "6f6154528c95da216e1f3830de000195" + } + 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: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 111; y: 39 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9808 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 112; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9824 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 113; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9840 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 114; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9856 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 9872 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 115; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9888 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 116; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9904 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 117; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9920 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 118; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9936 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 9952 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 119; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9968 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 120; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9984 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 121; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 10000 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10016 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 122; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 10032 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10048 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10064 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10080 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10096 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10112 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10128 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10144 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10160 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10176 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10192 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10208 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10224 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10240 + hash: "6f6154528c95da216e1f3830de000195" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 122; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 10256 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10272 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10288 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10304 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10320 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10336 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10352 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10368 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10384 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10400 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10416 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10432 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10448 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10464 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10480 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10496 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10512 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10528 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10544 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10560 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10576 + image: "usingLineEdit.11.png" + } + Frame { + msec: 10592 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10608 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10624 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10640 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10656 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10672 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10688 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10704 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10720 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10736 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10752 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10768 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10784 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10800 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10816 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10832 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10848 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10864 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10880 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10896 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10912 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10928 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10944 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10960 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10976 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 10992 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11008 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11024 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11040 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11056 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11072 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11088 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11104 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11120 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11136 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11152 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11168 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11184 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11200 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11216 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11232 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11248 + hash: "6f6154528c95da216e1f3830de000195" + } + Frame { + msec: 11264 + hash: "6f6154528c95da216e1f3830de000195" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png Binary files differnew file mode 100644 index 0000000..18dd55e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png Binary files differnew file mode 100644 index 0000000..9cc8b85 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png Binary files differnew file mode 100644 index 0000000..f7c23e2 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png Binary files differnew file mode 100644 index 0000000..a5bd6cc --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png Binary files differnew file mode 100644 index 0000000..fdcdf88 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png Binary files differnew file mode 100644 index 0000000..89fd161 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml new file mode 100644 index 0000000..e14fb82 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml @@ -0,0 +1,1551 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "cursorDelegate.0.png" + } + Frame { + msec: 32 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 48 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 64 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 80 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 96 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 112 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 128 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 144 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 160 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 176 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 192 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 208 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 224 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 240 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 256 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 272 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 288 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 304 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 320 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 336 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 352 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 368 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 384 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 400 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 416 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 432 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Frame { + msec: 448 + hash: "ea218f136c6c7a70f2a4da569fae92b0" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 464 + hash: "e0cce7628c07ad989161e77d87f7f511" + } + Frame { + msec: 480 + hash: "e0cce7628c07ad989161e77d87f7f511" + } + Frame { + msec: 496 + hash: "e0cce7628c07ad989161e77d87f7f511" + } + Frame { + msec: 512 + hash: "e0cce7628c07ad989161e77d87f7f511" + } + Frame { + msec: 528 + hash: "b86c442f4a561503d34238465fd20aec" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "36f5f4397549f151ebfc0295ca33f55f" + } + Frame { + msec: 560 + hash: "1cc9682b652e65b547bbeb2b37f9d1e7" + } + Frame { + msec: 576 + hash: "b3874acb58643e1bb70a0b579e517526" + } + Frame { + msec: 592 + hash: "152b962f8a00b68459df073962a1a947" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 608 + hash: "891f86211cdc5050881421613b199939" + } + Frame { + msec: 624 + hash: "5862b5e1ed2d1905357adbc5a7f2ade9" + } + Frame { + msec: 640 + hash: "2fd895e688fa1c8b2f0bbf6e7defdb2a" + } + Frame { + msec: 656 + hash: "66c31658d38604b3e2d424aea15b715d" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 672 + hash: "df5331bc225d5e6f443812d489b19324" + } + Frame { + msec: 688 + hash: "6ca6367bb314804598b6257fd8b49d28" + } + Frame { + msec: 704 + hash: "877f64d93ba9d0d31181c3600bc02f80" + } + Frame { + msec: 720 + hash: "6b3210a6e4f8c448e5d90c6dada7a114" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 736 + hash: "4e64391a8142f94cb1ae38082218af01" + } + Frame { + msec: 752 + hash: "7bc3285fc6a0275622a76e605e2f7609" + } + Frame { + msec: 768 + hash: "895b45ca668e4fe112913d818f28631e" + } + Frame { + msec: 784 + hash: "98e49c0ade7408c3229489ba6681088b" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 800 + hash: "98c7370ca0f570dbe23c2724cb4ddead" + } + Frame { + msec: 816 + hash: "a71a7684552b072754469f6ae16d18b6" + } + Frame { + msec: 832 + hash: "9cf40ec30d20e2cf95de2bfede4e46c6" + } + Frame { + msec: 848 + hash: "ed1efc0873a05be9f0c001c9cab94414" + } + Frame { + msec: 864 + hash: "4909c38a27da00d9c6f0dafc52c45035" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 880 + hash: "81d4e7ca4265332555434fdd5f19c621" + } + Frame { + msec: 896 + hash: "c336bac65473a8b76cecca1854c94752" + } + Frame { + msec: 912 + hash: "8bf0b0c6bd2c0fbf7c9f3529a5b92ebc" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 928 + hash: "8b7f6b8eebd1d7648becb91d256ac475" + } + Frame { + msec: 944 + hash: "6fcc3b9dee14bcdd2b60a32f696eec05" + } + Frame { + msec: 960 + hash: "939ac75fa99f482509ee1bb6b93f2ed0" + } + Frame { + msec: 976 + image: "cursorDelegate.1.png" + } + Frame { + msec: 992 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1008 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 1024 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 1040 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1056 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 1072 + hash: "3d6db6e3ee77ee75341ce16dc4a56c59" + } + Frame { + msec: 1088 + hash: "ff43ccdb14ae4d12ffead2eb261a5056" + } + Frame { + msec: 1104 + hash: "cd14458426f94efbbc729112e6a481c5" + } + Frame { + msec: 1120 + hash: "6bd66d118ff27b0cea7944ea22c727c9" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1136 + hash: "c294f1f7b7dd842d797ec5346f8794b3" + } + Frame { + msec: 1152 + hash: "185228bb06e052a279bc0481760a1920" + } + Frame { + msec: 1168 + hash: "81b01e755b7fcbda18634b88052326e4" + } + Frame { + msec: 1184 + hash: "ff16045d2ae8a5e48440fe5094780987" + } + Frame { + msec: 1200 + hash: "01b2a227010cba52952763cd9fbc8c94" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1216 + hash: "3c6ffa5250e90c994e334745efa15b19" + } + Frame { + msec: 1232 + hash: "9656663feae42fced5646d8c21ad05ec" + } + Frame { + msec: 1248 + hash: "95ecea8c39c38c2319a8a0de1c3c97b1" + } + Frame { + msec: 1264 + hash: "7bc610d4efadf5ef603d0c62e81021b2" + } + Frame { + msec: 1280 + hash: "b5343907926d112165a1e8914fa12383" + } + Frame { + msec: 1296 + hash: "7b1be2c0e963b92accd35606cd9521f5" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "2004b105d197f736f68eef070574767d" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1328 + hash: "dbafec45c35739835180f7644f4bf66c" + } + Frame { + msec: 1344 + hash: "ed86b86cc0eb1c8c05b0ddb063937270" + } + Frame { + msec: 1360 + hash: "bdc640c90728a4f39c22e0a415c595b4" + } + Frame { + msec: 1376 + hash: "2af0c828b767942ba1745dd9838a54b5" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "547f4cbf1637d997f50f755965dd4704" + } + Frame { + msec: 1408 + hash: "ede46a74a6e5297454da63227684d6cf" + } + Frame { + msec: 1424 + hash: "3a8747e0b26763c7bbc5ecd433c41d5a" + } + Frame { + msec: 1440 + hash: "0ae75d3cf890fe95e53f4c2c2eb0c660" + } + Frame { + msec: 1456 + hash: "1014ed3a45803f4ca8dfd669137d3502" + } + Frame { + msec: 1472 + hash: "0abf6b3183b4b85eabbcb3f2d4173473" + } + Frame { + msec: 1488 + hash: "39dbf6788ad997531894fd5138953f21" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1504 + hash: "0fd0841b32106155e25c274b47724d60" + } + Frame { + msec: 1520 + hash: "9fa396cab1425ca03e394c681ccb798d" + } + Frame { + msec: 1536 + hash: "3c62d2a016bba6cd3f83982dcb7c1582" + } + Frame { + msec: 1552 + hash: "ee6f16b9165eb663ae78716f723e5b16" + } + Frame { + msec: 1568 + hash: "dd2c49caa8b8f690fd8a29aac7f85dc8" + } + Frame { + msec: 1584 + hash: "79343bd1b7472d75daad9ae9848b89ba" + } + Frame { + msec: 1600 + hash: "4c087ae0614e4736130235eea0af5267" + } + Frame { + msec: 1616 + hash: "87d75b0e3bd197084f8d8c0601ba195d" + } + Frame { + msec: 1632 + hash: "ccd66bab965c78aa3b39728aef0648c6" + } + Frame { + msec: 1648 + hash: "d311116fafc9693e6c55eb2c1273a487" + } + Frame { + msec: 1664 + hash: "a4c1bc9c9f987bacfd19ea64f9a3ec2c" + } + Frame { + msec: 1680 + hash: "a6b86821b0563c06b478b62037edffe5" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1696 + hash: "30b8fd8f9d3e63c9101cf3558fc7f0d6" + } + Frame { + msec: 1712 + hash: "8224ae61cfce9bbf9f69677071285ddc" + } + Frame { + msec: 1728 + hash: "1b7408ad665e5e316893397c9362e069" + } + Frame { + msec: 1744 + hash: "7ace1472840c3184263fe23cec5ba929" + } + Frame { + msec: 1760 + hash: "ea3f542c80564ad841675197b51272c9" + } + Frame { + msec: 1776 + hash: "0c4989dbd8d4008c1834140e28b98405" + } + Frame { + msec: 1792 + hash: "337452c36385bebadb35498172eb82ef" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1808 + hash: "030ff7472ad4d566166e99aeb1daf1ad" + } + Frame { + msec: 1824 + hash: "59f7bb68de85445bad114caca87ae859" + } + Frame { + msec: 1840 + hash: "5c0e8905d830357ca7bc26c6383a2dcc" + } + Frame { + msec: 1856 + hash: "b00e889ee28556eaca18a6d52b8b4c0c" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1872 + hash: "07d4cc37e71ff6fb34c1370db27bd0f9" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1888 + hash: "86d74cd53c541fde95b36a3899859272" + } + Frame { + msec: 1904 + hash: "82457df6a73b8aa32b567cac53d19679" + } + Frame { + msec: 1920 + hash: "63be8d924bace20717f87f7d260060e5" + } + Frame { + msec: 1936 + image: "cursorDelegate.2.png" + } + Frame { + msec: 1952 + hash: "d274989f514174cda3316fa6650aed05" + } + Frame { + msec: 1968 + hash: "f1cae5982318ec621423513f7a090adf" + } + Frame { + msec: 1984 + hash: "1b30dd4a817370d8b6f5908cef69eeb9" + } + Frame { + msec: 2000 + hash: "1b30dd4a817370d8b6f5908cef69eeb9" + } + Frame { + msec: 2016 + hash: "1b30dd4a817370d8b6f5908cef69eeb9" + } + Frame { + msec: 2032 + hash: "1b30dd4a817370d8b6f5908cef69eeb9" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2048 + hash: "1b30dd4a817370d8b6f5908cef69eeb9" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "f1cae5982318ec621423513f7a090adf" + } + Frame { + msec: 2080 + hash: "d274989f514174cda3316fa6650aed05" + } + Frame { + msec: 2096 + hash: "4c51c2e71ee1fef13b9ac5213b057cef" + } + Frame { + msec: 2112 + hash: "63be8d924bace20717f87f7d260060e5" + } + Frame { + msec: 2128 + hash: "82457df6a73b8aa32b567cac53d19679" + } + Frame { + msec: 2144 + hash: "86d74cd53c541fde95b36a3899859272" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "9bfb6b9a2604b4c534539bc731abda10" + } + Frame { + msec: 2176 + hash: "dfa52bb483388dfee56577968d013c8f" + } + Frame { + msec: 2192 + hash: "ea77a49e7e246649248e19b72d6433c9" + } + Frame { + msec: 2208 + hash: "348e6a82b1491739e72c5c361158a967" + } + Frame { + msec: 2224 + hash: "bb52aa533659d770d01deb8bef5a8b4d" + } + Frame { + msec: 2240 + hash: "082441b5fea02f2676ad4d53aefb6927" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "9194cd1399ceeda421944cd87182039b" + } + Frame { + msec: 2272 + hash: "edff1333eb3a0047c527503ab3dbe71c" + } + Frame { + msec: 2288 + hash: "e5c9931c8baf260d77f9cfcc1bb41101" + } + Frame { + msec: 2304 + hash: "75c37de92c5af3305733a92d405a4ec8" + } + Frame { + msec: 2320 + hash: "f27082799d0860c660d16c3f9fe6e538" + } + Frame { + msec: 2336 + hash: "5d79ff6cac5bd6943b656964c1d78b00" + } + Frame { + msec: 2352 + hash: "d58a1176858e49c89fc77bed260c6269" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "70deb136fd364646e73390f0aa751baa" + } + Frame { + msec: 2384 + hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" + } + Frame { + msec: 2400 + hash: "9007b93c9b9ae3612a0f97fe2e2ae825" + } + Frame { + msec: 2416 + hash: "c39f05a5471fb3a26f57feab2b99c8fa" + } + Frame { + msec: 2432 + hash: "49cd710decb32599d7a9c8e0239bf9a5" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "df3e2a44ed4e7cf6adb49f84b1d4fc53" + } + Frame { + msec: 2464 + hash: "5b7984204405b31a0262da011ff3903e" + } + Frame { + msec: 2480 + hash: "0dd2dc00c42eb7bb731d64e9a7188c83" + } + Frame { + msec: 2496 + hash: "1b811aa744375668672fb8b4e0d75621" + } + Frame { + msec: 2512 + hash: "f34c084f977a20fcf96eaf1e7b5423f7" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2528 + hash: "145b1c6526e04f02adf94eb5d0369ae0" + } + Frame { + msec: 2544 + hash: "1b047f1cb4738188c10d8b05e636694a" + } + Frame { + msec: 2560 + hash: "3f5921d19c63c7d434f0428cb155426e" + } + Frame { + msec: 2576 + hash: "940a9ca625a813af3c9f74600b9dd668" + } + Frame { + msec: 2592 + hash: "3df53c013eae20a71e4337be5499ff65" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2608 + hash: "34e4524d132bbb2a9e4aaffa0982ad33" + } + Frame { + msec: 2624 + hash: "87942e371bd51726dbfa5a09fdd31631" + } + Frame { + msec: 2640 + hash: "a2baf811e2b51215c4e5f88f0854f5a5" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2656 + hash: "cc12390ac2a3296c04f2538fb3b4cc00" + } + Frame { + msec: 2672 + hash: "f209d32ec1742194c8436c36230a8239" + } + Frame { + msec: 2688 + hash: "444d87a6fc19b8f0e8dcda0615a484aa" + } + Frame { + msec: 2704 + hash: "2e492b973fffd68245c24d603d2a8221" + } + Frame { + msec: 2720 + hash: "742ab9c9d4d8e37337f237f792aba160" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2736 + hash: "74db3d75c0b30946b18edf5fc115dfce" + } + Frame { + msec: 2752 + hash: "86685be3dbb2236676f767894c694a5a" + } + Frame { + msec: 2768 + hash: "327351a6164fd566dd0f7ead05c7ea36" + } + Frame { + msec: 2784 + hash: "ba9262ab3d8824e3a9cdcfe29059bbda" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "8c8aba2c44a7ea5b4d1e2206a3dbd6a2" + } + Frame { + msec: 2816 + hash: "560067cbba922e2958bc7bae5ab93572" + } + Frame { + msec: 2832 + hash: "566c84584e49c633fdada833ea386565" + } + Frame { + msec: 2848 + hash: "615819749d92cb0b927e370c05321f5b" + } + Frame { + msec: 2864 + hash: "9f11ee25f10750cc2302e6b528ab68b9" + } + Frame { + msec: 2880 + hash: "5140d2ac5f1b361776fb335d43fcda1a" + } + Frame { + msec: 2896 + image: "cursorDelegate.3.png" + } + Frame { + msec: 2912 + hash: "5fb75369681ac189b4de918dfa639f55" + } + Frame { + msec: 2928 + hash: "9da1688d1084f1588b6d203698c8a2b6" + } + Frame { + msec: 2944 + hash: "91bbae5a8fd04da71b1353f687c15d9f" + } + Frame { + msec: 2960 + hash: "d3c0a6ed0510abb6135fb2e61f8721d8" + } + Frame { + msec: 2976 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 2992 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 3008 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 3024 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 3040 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 3056 + hash: "23e728398c03c805066766081e434d41" + } + Frame { + msec: 3072 + hash: "d3c0a6ed0510abb6135fb2e61f8721d8" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3088 + hash: "d5519a015a697dcb1763748bd2789441" + } + Frame { + msec: 3104 + hash: "d8ca000081bf565a4f3de5a5e94d894b" + } + Frame { + msec: 3120 + hash: "03984ab7a25d80e24dd0650f881b8203" + } + Frame { + msec: 3136 + hash: "edfea780ea62d48ac69afa5e6cad00af" + } + Frame { + msec: 3152 + hash: "b00a5d2424568d823eb7be0438dafa1f" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "76fda33dcea27a034ddfab61031d8de6" + } + Frame { + msec: 3184 + hash: "11b9e3a58fd2c6d86e61a5e3b7db04b4" + } + Frame { + msec: 3200 + hash: "f7c583d00d7154d9e8af88bec706f97f" + } + Frame { + msec: 3216 + hash: "8680b8c69c544213fb8d55233bde4ce5" + } + Frame { + msec: 3232 + hash: "74fc148e3c466023e2449c6b1367bceb" + } + Frame { + msec: 3248 + hash: "9495a0ffe7589351cfced8b26f6d64e4" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3264 + hash: "519c58c8c0f62d96005b49f68648565b" + } + Frame { + msec: 3280 + hash: "609a2d8f02c8b42e0921a2a900edccbd" + } + Frame { + msec: 3296 + hash: "c54617fb7b21ef8dc2bc0d8492ec476e" + } + Frame { + msec: 3312 + hash: "096dc0d8b3ed47894ab0289bcfe3aa8f" + } + Frame { + msec: 3328 + hash: "5b725bb5951caa968d221fe7c5dd6370" + } + Frame { + msec: 3344 + hash: "6733673178a1b85b22d22610a6f6c3d7" + } + Frame { + msec: 3360 + hash: "5efbed8f4de4387572c5a98ba14f3c27" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3376 + hash: "650a0792ee0025e12f7f0ce6df72df6c" + } + Frame { + msec: 3392 + hash: "0064815fa6e2bcbbe5f2ea8222ddd2b0" + } + Frame { + msec: 3408 + hash: "13ca683ddd0071771e853a09fc6e5842" + } + Frame { + msec: 3424 + hash: "1625325eee9b4eaab2df135e0d2f0f14" + } + Frame { + msec: 3440 + hash: "9e3f1df1b243167b5470778e8c44f7d1" + } + Frame { + msec: 3456 + hash: "493634fa37f10eb02d255253171d190d" + } + Frame { + msec: 3472 + hash: "86ddfc357d158deae39a7565c512d0c0" + } + Frame { + msec: 3488 + hash: "74486ca31cf165f0e55aacfae7af9e4c" + } + Frame { + msec: 3504 + hash: "3479f78faf16d4d07b6b44d7682ac016" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3520 + hash: "cb35c6a887f191b2eb5de961912c94b8" + } + Frame { + msec: 3536 + hash: "53f5028e96fc65cc6171e78c31c16026" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3552 + hash: "c77e078983f12d8007c5509cd8b356f9" + } + Frame { + msec: 3568 + hash: "ec2da5c6869161936e2598961c605674" + } + Frame { + msec: 3584 + hash: "bb9adcb5730aeafb2956e01d9aacaee1" + } + Frame { + msec: 3600 + hash: "49cd710decb32599d7a9c8e0239bf9a5" + } + Frame { + msec: 3616 + hash: "c39f05a5471fb3a26f57feab2b99c8fa" + } + Frame { + msec: 3632 + hash: "9007b93c9b9ae3612a0f97fe2e2ae825" + } + Frame { + msec: 3648 + hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" + } + Frame { + msec: 3664 + hash: "70deb136fd364646e73390f0aa751baa" + } + Frame { + msec: 3680 + hash: "d58a1176858e49c89fc77bed260c6269" + } + Frame { + msec: 3696 + hash: "5d79ff6cac5bd6943b656964c1d78b00" + } + Frame { + msec: 3712 + hash: "f27082799d0860c660d16c3f9fe6e538" + } + Frame { + msec: 3728 + hash: "75c37de92c5af3305733a92d405a4ec8" + } + Frame { + msec: 3744 + hash: "e5c9931c8baf260d77f9cfcc1bb41101" + } + Frame { + msec: 3760 + hash: "edff1333eb3a0047c527503ab3dbe71c" + } + Frame { + msec: 3776 + hash: "9194cd1399ceeda421944cd87182039b" + } + Frame { + msec: 3792 + hash: "082441b5fea02f2676ad4d53aefb6927" + } + Frame { + msec: 3808 + hash: "bb52aa533659d770d01deb8bef5a8b4d" + } + Frame { + msec: 3824 + hash: "348e6a82b1491739e72c5c361158a967" + } + Frame { + msec: 3840 + hash: "ea77a49e7e246649248e19b72d6433c9" + } + Frame { + msec: 3856 + image: "cursorDelegate.4.png" + } + Frame { + msec: 3872 + hash: "9bfb6b9a2604b4c534539bc731abda10" + } + Frame { + msec: 3888 + hash: "02b01092c1f0e279872490306163647d" + } + Frame { + msec: 3904 + hash: "acf688ab0ceba1d5d1e0225b90fd706f" + } + Frame { + msec: 3920 + hash: "5866ceee0fd72361dd490a2163b4fc55" + } + Frame { + msec: 3936 + hash: "218083c830ad133e2aeb4692d2d1517d" + } + Frame { + msec: 3952 + hash: "3542537f0b0e1375d81c7f0365bbdf1d" + } + Frame { + msec: 3968 + hash: "ca17401d638025fde8aad18b9a358029" + } + Frame { + msec: 3984 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4000 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4016 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4032 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4048 + hash: "87d666ee3bcf7a606e2aecb4954cfb28" + } + Frame { + msec: 4064 + hash: "ca17401d638025fde8aad18b9a358029" + } + Frame { + msec: 4080 + hash: "3542537f0b0e1375d81c7f0365bbdf1d" + } + Frame { + msec: 4096 + hash: "218083c830ad133e2aeb4692d2d1517d" + } + Frame { + msec: 4112 + hash: "5866ceee0fd72361dd490a2163b4fc55" + } + Frame { + msec: 4128 + hash: "acf688ab0ceba1d5d1e0225b90fd706f" + } + Frame { + msec: 4144 + hash: "02b01092c1f0e279872490306163647d" + } + Frame { + msec: 4160 + hash: "9bfb6b9a2604b4c534539bc731abda10" + } + Frame { + msec: 4176 + hash: "dfa52bb483388dfee56577968d013c8f" + } + Frame { + msec: 4192 + hash: "ea77a49e7e246649248e19b72d6433c9" + } + Frame { + msec: 4208 + hash: "348e6a82b1491739e72c5c361158a967" + } + Frame { + msec: 4224 + hash: "bb52aa533659d770d01deb8bef5a8b4d" + } + Frame { + msec: 4240 + hash: "082441b5fea02f2676ad4d53aefb6927" + } + Frame { + msec: 4256 + hash: "9194cd1399ceeda421944cd87182039b" + } + Frame { + msec: 4272 + hash: "edff1333eb3a0047c527503ab3dbe71c" + } + Frame { + msec: 4288 + hash: "e5c9931c8baf260d77f9cfcc1bb41101" + } + Frame { + msec: 4304 + hash: "75c37de92c5af3305733a92d405a4ec8" + } + Frame { + msec: 4320 + hash: "f27082799d0860c660d16c3f9fe6e538" + } + Frame { + msec: 4336 + hash: "5d79ff6cac5bd6943b656964c1d78b00" + } + Frame { + msec: 4352 + hash: "d58a1176858e49c89fc77bed260c6269" + } + Frame { + msec: 4368 + hash: "70deb136fd364646e73390f0aa751baa" + } + Frame { + msec: 4384 + hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" + } + Frame { + msec: 4400 + hash: "9007b93c9b9ae3612a0f97fe2e2ae825" + } + Frame { + msec: 4416 + hash: "c39f05a5471fb3a26f57feab2b99c8fa" + } + Frame { + msec: 4432 + hash: "49cd710decb32599d7a9c8e0239bf9a5" + } + Frame { + msec: 4448 + hash: "bb9adcb5730aeafb2956e01d9aacaee1" + } + Frame { + msec: 4464 + hash: "ec2da5c6869161936e2598961c605674" + } + Frame { + msec: 4480 + hash: "c77e078983f12d8007c5509cd8b356f9" + } + Frame { + msec: 4496 + hash: "53f5028e96fc65cc6171e78c31c16026" + } + Frame { + msec: 4512 + hash: "cb35c6a887f191b2eb5de961912c94b8" + } + Frame { + msec: 4528 + hash: "3479f78faf16d4d07b6b44d7682ac016" + } + Frame { + msec: 4544 + hash: "74486ca31cf165f0e55aacfae7af9e4c" + } + Frame { + msec: 4560 + hash: "86ddfc357d158deae39a7565c512d0c0" + } + Frame { + msec: 4576 + hash: "493634fa37f10eb02d255253171d190d" + } + Frame { + msec: 4592 + hash: "9e3f1df1b243167b5470778e8c44f7d1" + } + Frame { + msec: 4608 + hash: "1625325eee9b4eaab2df135e0d2f0f14" + } + Frame { + msec: 4624 + hash: "13ca683ddd0071771e853a09fc6e5842" + } + Frame { + msec: 4640 + hash: "0064815fa6e2bcbbe5f2ea8222ddd2b0" + } + Frame { + msec: 4656 + hash: "650a0792ee0025e12f7f0ce6df72df6c" + } + Frame { + msec: 4672 + hash: "5efbed8f4de4387572c5a98ba14f3c27" + } + Frame { + msec: 4688 + hash: "6733673178a1b85b22d22610a6f6c3d7" + } + Frame { + msec: 4704 + hash: "5b725bb5951caa968d221fe7c5dd6370" + } + Frame { + msec: 4720 + hash: "096dc0d8b3ed47894ab0289bcfe3aa8f" + } + Frame { + msec: 4736 + hash: "c54617fb7b21ef8dc2bc0d8492ec476e" + } + Frame { + msec: 4752 + hash: "609a2d8f02c8b42e0921a2a900edccbd" + } + Frame { + msec: 4768 + hash: "519c58c8c0f62d96005b49f68648565b" + } + Frame { + msec: 4784 + hash: "5d1dd05aade754c204d13f5de03413dd" + } + Frame { + msec: 4800 + hash: "ceca317086930994c35b0ed08db71d64" + } + Frame { + msec: 4816 + image: "cursorDelegate.5.png" + } + Frame { + msec: 4832 + hash: "64fcbd6ba961634b0ba33ec5b6693945" + } + Frame { + msec: 4848 + hash: "48a6ced88807a05aea34b47d36261347" + } + Frame { + msec: 4864 + hash: "aafa7081d0f1a46478c0956ad5c56d1d" + } + Frame { + msec: 4880 + hash: "6a9f14ec3fcd119afe68cbf372b13076" + } + Frame { + msec: 4896 + hash: "927556bdf4e883c409ba8797001152ce" + } + Frame { + msec: 4912 + hash: "b93878281f21c85c211908086f2899e7" + } + Frame { + msec: 4928 + hash: "235b68812a3cb48fc09bd8319aef40f1" + } + Frame { + msec: 4944 + hash: "8943d47912a4206e61836d99cca835da" + } + Frame { + msec: 4960 + hash: "4d06d264f71d75421c9a6d5a87d6a9ba" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png Binary files differindex f30ee4f..a6593c9 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png Binary files differindex 7ae3b94..914f1b1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png Binary files differindex 636afe8..dd2b946 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png Binary files differindex aa24805..629b84b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png Binary files differdeleted file mode 100644 index aa24805..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml index b5a4837..211ca68 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: "48400809c3862dae64b0cd00d51057a4" + image: "echoMode.0.png" } Frame { msec: 32 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Key { type: 6 @@ -22,83 +22,83 @@ VisualTest { } Frame { msec: 48 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 64 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 80 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 96 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 112 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 128 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 144 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 160 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 176 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 192 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 208 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 224 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 240 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 256 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 272 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 288 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 304 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 320 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 336 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 352 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Key { type: 6 @@ -110,23 +110,23 @@ VisualTest { } Frame { msec: 368 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 384 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 400 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 416 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 432 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Key { type: 7 @@ -138,27 +138,27 @@ VisualTest { } Frame { msec: 448 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 464 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 480 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 496 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 512 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 528 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Key { type: 7 @@ -170,43 +170,43 @@ VisualTest { } Frame { msec: 544 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 560 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 576 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 592 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 608 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 624 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 640 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 656 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 672 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Frame { msec: 688 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "00097f2bb5cf4ea412db48acb93ffd76" } Key { type: 6 @@ -218,23 +218,23 @@ VisualTest { } Frame { msec: 704 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 720 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 736 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 752 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 768 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Key { type: 7 @@ -246,23 +246,23 @@ VisualTest { } Frame { msec: 784 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 800 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 816 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 832 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Frame { msec: 848 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "94e683223900efc840296b86ce934ec3" } Key { type: 6 @@ -274,15 +274,15 @@ VisualTest { } Frame { msec: 864 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 880 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 896 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Key { type: 7 @@ -294,23 +294,23 @@ VisualTest { } Frame { msec: 912 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 928 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 944 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 960 - image: "echoMode.0.png" + hash: "a1c7aeece2891f3ca0103761ffa7f424" } Frame { msec: 976 - hash: "25ade09747f07a9bdd07f5885a72dc55" + image: "echoMode.1.png" } Key { type: 6 @@ -322,19 +322,19 @@ VisualTest { } Frame { msec: 992 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1008 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1024 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1040 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Key { type: 7 @@ -346,51 +346,51 @@ VisualTest { } Frame { msec: 1056 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1072 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1088 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1104 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1120 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1136 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1152 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1168 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1184 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1200 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1216 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Frame { msec: 1232 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "7a4ebe5f0875ded07b44c9ff2d6a4d75" } Key { type: 6 @@ -402,15 +402,15 @@ VisualTest { } Frame { msec: 1248 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Frame { msec: 1264 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Frame { msec: 1280 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Key { type: 7 @@ -422,15 +422,15 @@ VisualTest { } Frame { msec: 1296 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Frame { msec: 1312 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Frame { msec: 1328 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "b7cdd294253e065c06fabc60895a29c2" } Key { type: 6 @@ -442,39 +442,39 @@ VisualTest { } Frame { msec: 1344 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1360 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1376 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1392 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1408 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1424 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1440 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1456 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Frame { msec: 1472 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Key { type: 7 @@ -486,7 +486,7 @@ VisualTest { } Frame { msec: 1488 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "d8669a3194f485aaef3a1421f7fd50f6" } Key { type: 6 @@ -498,19 +498,19 @@ VisualTest { } Frame { msec: 1504 - hash: "fe0e4e097f655e0b330ed6fcfce669c2" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1520 - hash: "fe0e4e097f655e0b330ed6fcfce669c2" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1536 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1552 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Key { type: 7 @@ -522,27 +522,27 @@ VisualTest { } Frame { msec: 1568 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1584 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1600 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1616 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1632 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Frame { msec: 1648 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "b53fd36f58dc692856e6a789371aaf33" } Key { type: 6 @@ -554,23 +554,23 @@ VisualTest { } Frame { msec: 1664 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "98de66666f6ea1a87bd493db3f67a7c6" } Frame { msec: 1680 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "98de66666f6ea1a87bd493db3f67a7c6" } Frame { msec: 1696 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "98de66666f6ea1a87bd493db3f67a7c6" } Frame { msec: 1712 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "98de66666f6ea1a87bd493db3f67a7c6" } Frame { msec: 1728 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "98de66666f6ea1a87bd493db3f67a7c6" } Key { type: 6 @@ -582,7 +582,7 @@ VisualTest { } Frame { msec: 1744 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Key { type: 7 @@ -594,15 +594,15 @@ VisualTest { } Frame { msec: 1760 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Frame { msec: 1776 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Frame { msec: 1792 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Key { type: 7 @@ -614,19 +614,19 @@ VisualTest { } Frame { msec: 1808 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Frame { msec: 1824 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Frame { msec: 1840 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Frame { msec: 1856 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "696807419ef2b228dfb9d85dd79dd293" } Key { type: 6 @@ -638,19 +638,19 @@ VisualTest { } Frame { msec: 1872 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 1888 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 1904 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 1920 - image: "echoMode.1.png" + hash: "4c0a528609872cf65180d336bbca4231" } Key { type: 7 @@ -662,27 +662,27 @@ VisualTest { } Frame { msec: 1936 - hash: "05c631afb9df51c23b1f714a7de92788" + image: "echoMode.2.png" } Frame { msec: 1952 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 1968 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 1984 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 2000 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Frame { msec: 2016 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "4c0a528609872cf65180d336bbca4231" } Key { type: 6 @@ -694,11 +694,11 @@ VisualTest { } Frame { msec: 2032 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "03b670f413abfa1811d4020de969b2ea" } Frame { msec: 2048 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "03b670f413abfa1811d4020de969b2ea" } Key { type: 7 @@ -710,11 +710,11 @@ VisualTest { } Frame { msec: 2064 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "03b670f413abfa1811d4020de969b2ea" } Frame { msec: 2080 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "03b670f413abfa1811d4020de969b2ea" } Key { type: 6 @@ -726,19 +726,19 @@ VisualTest { } Frame { msec: 2096 - hash: "7f2366b163c110a50259936c150d8287" + hash: "6d478c62fa5bb37f0178e94914473174" } Frame { msec: 2112 - hash: "7f2366b163c110a50259936c150d8287" + hash: "6d478c62fa5bb37f0178e94914473174" } Frame { msec: 2128 - hash: "7f2366b163c110a50259936c150d8287" + hash: "6d478c62fa5bb37f0178e94914473174" } Frame { msec: 2144 - hash: "7f2366b163c110a50259936c150d8287" + hash: "6d478c62fa5bb37f0178e94914473174" } Key { type: 6 @@ -758,19 +758,19 @@ VisualTest { } Frame { msec: 2160 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "2f9803e906ce38a6ade3874bbeb27216" } Frame { msec: 2176 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "2f9803e906ce38a6ade3874bbeb27216" } Frame { msec: 2192 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "2f9803e906ce38a6ade3874bbeb27216" } Frame { msec: 2208 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "2f9803e906ce38a6ade3874bbeb27216" } Key { type: 6 @@ -782,7 +782,7 @@ VisualTest { } Frame { msec: 2224 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Key { type: 7 @@ -794,23 +794,23 @@ VisualTest { } Frame { msec: 2240 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Frame { msec: 2256 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Frame { msec: 2272 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Frame { msec: 2288 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Frame { msec: 2304 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Key { type: 7 @@ -822,11 +822,11 @@ VisualTest { } Frame { msec: 2320 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Frame { msec: 2336 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "d93582b0c7de46d5ff1c9959c158bfe7" } Key { type: 6 @@ -838,27 +838,27 @@ VisualTest { } Frame { msec: 2352 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2368 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2384 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2400 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2416 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2432 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Key { type: 7 @@ -870,19 +870,19 @@ VisualTest { } Frame { msec: 2448 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2464 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2480 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Frame { msec: 2496 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "8accfa30ddc59803d8f9d2f60dd6a891" } Key { type: 6 @@ -894,15 +894,15 @@ VisualTest { } Frame { msec: 2512 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2528 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2544 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Key { type: 7 @@ -914,130 +914,130 @@ VisualTest { } Frame { msec: 2560 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2576 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2592 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2608 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2624 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2640 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2656 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2672 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2688 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2704 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2720 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2736 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2752 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2768 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2784 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2800 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2816 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2832 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2848 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2864 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2880 - image: "echoMode.2.png" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2896 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + image: "echoMode.3.png" } Frame { msec: 2912 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2928 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2944 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2960 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2976 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 2992 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 3008 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 3024 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 3040 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "a444ce402f5dc0d892f66a88b8252301" } Frame { msec: 3056 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "a444ce402f5dc0d892f66a88b8252301" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png Binary files differindex 87c2e07..a12db0a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml index a0351e8..acc646c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml @@ -6,102 +6,102 @@ VisualTest { } Frame { msec: 16 - hash: "7619ed68aca3544f373777e11a4bfefa" + image: "hAlign.0.png" } Frame { msec: 32 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 48 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 64 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 80 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 96 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 112 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 128 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 144 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 160 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 176 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 192 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 208 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 224 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 240 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 256 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 272 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 288 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 304 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 320 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 336 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 352 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 368 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 384 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } Frame { msec: 400 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "fe5a0e7ac7ea0796d8cf3e49b513669d" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png Binary files differindex b064e79..fb0eb85 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png Binary files differindex 7dd1bd8..444ee34 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png Binary files differindex d8e55e2..5f3668c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png Binary files differnew file mode 100644 index 0000000..0ea21f3 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png Binary files differindex f9f1744..444ee34 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png Binary files differindex 70ae713..9bcd6a7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png Binary files differindex 9ce28db..04a1e66 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png Binary files differindex 2ef2ac0..716f59b 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png Binary files differindex 2a614f8..f6b9fce 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png Binary files differindex f916c97..61430e8 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png Binary files differindex 56bf00b..be9691f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png Binary files differindex 97847d9..4f285b1 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml index cdc5153..8957e39 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml @@ -6,235 +6,235 @@ VisualTest { } Frame { msec: 16 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + image: "usingLineEdit.0.png" } Frame { msec: 32 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 48 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 64 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 80 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 96 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 112 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 128 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 144 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 160 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 176 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 192 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 208 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 224 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 240 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 256 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 272 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 288 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 304 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 320 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 336 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 352 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 368 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 384 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 400 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 416 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 432 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 448 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 464 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 480 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 496 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 512 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 528 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 544 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 560 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 576 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 592 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 608 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 624 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 640 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 656 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 672 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 688 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 704 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 720 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 736 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 752 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 768 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 784 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 800 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 816 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 832 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 848 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 864 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 880 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 896 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 912 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Frame { msec: 928 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "2e747d3e26cc85e4c36c42097ab3f379" } Mouse { type: 2 @@ -246,7 +246,7 @@ VisualTest { } Frame { msec: 944 - hash: "c83faf1ed7b59715046e1abef04fa546" + hash: "227431895322480615fb61a635305230" } Mouse { type: 3 @@ -258,7 +258,7 @@ VisualTest { } Frame { msec: 960 - image: "usingLineEdit.0.png" + hash: "227431895322480615fb61a635305230" } Mouse { type: 4 @@ -270,27 +270,27 @@ VisualTest { } Frame { msec: 976 - hash: "3b899cd28b58c3f94946286a0ddcab89" + image: "usingLineEdit.1.png" } Frame { msec: 992 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1008 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1024 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1040 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1056 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Mouse { type: 3 @@ -302,79 +302,79 @@ VisualTest { } Frame { msec: 1072 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1088 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1104 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1120 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1136 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1152 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1168 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1184 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1200 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1216 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1232 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1248 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1264 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1280 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1296 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1312 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1328 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1344 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1360 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Key { type: 6 @@ -386,159 +386,159 @@ VisualTest { } Frame { msec: 1376 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1392 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1408 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1424 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1440 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1456 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1472 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1488 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1504 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1520 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1536 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1552 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1568 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1584 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1600 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1616 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1632 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1648 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1664 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1680 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1696 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1712 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1728 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1744 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1760 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1776 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1792 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1808 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1824 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1840 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1856 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1872 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1888 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1904 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1920 - image: "usingLineEdit.1.png" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1936 - hash: "3b899cd28b58c3f94946286a0ddcab89" + image: "usingLineEdit.2.png" } Frame { msec: 1952 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1968 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 1984 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Key { type: 6 @@ -550,35 +550,35 @@ VisualTest { } Frame { msec: 2000 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2016 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2032 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2048 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2064 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2080 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2096 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2112 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Key { type: 7 @@ -598,95 +598,95 @@ VisualTest { } Frame { msec: 2128 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2144 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2160 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2176 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2192 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2208 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2224 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2240 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2256 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2272 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2288 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2304 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2320 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2336 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2352 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2368 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2384 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2400 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2416 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2432 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2448 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2464 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Frame { msec: 2480 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "b888cf6d6e002e28690cff49726eea70" } Key { type: 6 @@ -698,27 +698,27 @@ VisualTest { } Frame { msec: 2496 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2512 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2528 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2544 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2560 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2576 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Key { type: 7 @@ -730,55 +730,55 @@ VisualTest { } Frame { msec: 2592 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2608 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2624 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2640 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2656 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2672 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2688 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2704 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2720 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2736 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2752 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2768 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2784 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Key { type: 6 @@ -790,111 +790,111 @@ VisualTest { } Frame { msec: 2800 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2816 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2832 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2848 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2864 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2880 - image: "usingLineEdit.2.png" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2896 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + image: "usingLineEdit.3.png" } Frame { msec: 2912 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2928 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2944 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2960 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2976 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 2992 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3008 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3024 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3040 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3056 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3072 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3088 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3104 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3120 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3136 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3152 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3168 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3184 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3200 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Frame { msec: 3216 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "62afc4e3874da1bcd7e86860bbf6db20" } Key { type: 6 @@ -906,31 +906,31 @@ VisualTest { } Frame { msec: 3232 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3248 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3264 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3280 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3296 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3312 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3328 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Key { type: 7 @@ -942,59 +942,59 @@ VisualTest { } Frame { msec: 3344 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3360 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3376 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3392 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3408 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3424 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3440 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3456 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3472 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3488 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3504 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3520 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3536 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Frame { msec: 3552 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" } Key { type: 6 @@ -1006,35 +1006,35 @@ VisualTest { } Frame { msec: 3568 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3584 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3600 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3616 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3632 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3648 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3664 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3680 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Key { type: 7 @@ -1046,131 +1046,131 @@ VisualTest { } Frame { msec: 3696 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3712 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3728 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3744 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3760 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3776 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3792 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3808 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3824 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3840 - image: "usingLineEdit.3.png" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3856 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + image: "usingLineEdit.4.png" } Frame { msec: 3872 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3888 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3904 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3920 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3936 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3952 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3968 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 3984 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4000 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4016 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4032 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4048 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4064 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4080 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4096 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4112 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4128 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4144 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4160 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4176 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4192 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Key { type: 7 @@ -1182,131 +1182,131 @@ VisualTest { } Frame { msec: 4208 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4224 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4240 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4256 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4272 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4288 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4304 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4320 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4336 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4352 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4368 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4384 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4400 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4416 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4432 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4448 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4464 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4480 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4496 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4512 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4528 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4544 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4560 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4576 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4592 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4608 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4624 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4640 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4656 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4672 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4688 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Frame { msec: 4704 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "942d2dde9d40eb0864831831b9056525" } Mouse { type: 2 @@ -1318,27 +1318,27 @@ VisualTest { } Frame { msec: 4720 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4736 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4752 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4768 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4784 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4800 - image: "usingLineEdit.4.png" + hash: "9103b19d12565b6d28380f48acfce3c3" } Mouse { type: 3 @@ -1350,143 +1350,143 @@ VisualTest { } Frame { msec: 4816 - hash: "c65ff28e032b18223c65f8810b39d603" + image: "usingLineEdit.5.png" } Frame { msec: 4832 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4848 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4864 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4880 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4896 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4912 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4928 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4944 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4960 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4976 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 4992 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5008 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5024 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5040 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5056 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5072 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5088 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5104 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5120 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5136 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5152 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5168 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5184 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5200 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5216 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5232 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5248 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5264 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5280 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5296 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5312 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5328 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5344 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Frame { msec: 5360 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "9103b19d12565b6d28380f48acfce3c3" } Key { type: 6 @@ -1498,67 +1498,67 @@ VisualTest { } Frame { msec: 5376 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5392 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5408 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5424 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5440 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5456 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5472 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5488 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5504 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5520 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5536 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5552 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5568 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5584 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5600 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Frame { msec: 5616 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "3c6258003fba9b4a61bde3a5eb2394d5" } Key { type: 7 @@ -1578,11 +1578,11 @@ VisualTest { } Frame { msec: 5632 - hash: "baa42bc9d5e16c3e7af81e126d37655a" + hash: "f2c1bfd1a4ffb5bc0a5a354707a8ecf8" } Frame { msec: 5648 - hash: "baa42bc9d5e16c3e7af81e126d37655a" + hash: "f2c1bfd1a4ffb5bc0a5a354707a8ecf8" } Key { type: 7 @@ -1602,11 +1602,11 @@ VisualTest { } Frame { msec: 5664 - hash: "aa876e6d6ff0f169bcc3cf25be5e7a81" + hash: "9f4fc35d1b6f5984972da9f819a4031e" } Frame { msec: 5680 - hash: "aa876e6d6ff0f169bcc3cf25be5e7a81" + hash: "9f4fc35d1b6f5984972da9f819a4031e" } Key { type: 7 @@ -1626,11 +1626,11 @@ VisualTest { } Frame { msec: 5696 - hash: "8ec4c1a8ae28af44dcabf338fc056717" + hash: "68e84d0e6c0febe00cbc8ff13e7efae1" } Frame { msec: 5712 - hash: "8ec4c1a8ae28af44dcabf338fc056717" + hash: "68e84d0e6c0febe00cbc8ff13e7efae1" } Key { type: 7 @@ -1650,11 +1650,11 @@ VisualTest { } Frame { msec: 5728 - hash: "ec0da333c0bc090eec0ded5e4d18bd6e" + hash: "f0c61e706be86d31f124d6405c14c5b4" } Frame { msec: 5744 - hash: "ec0da333c0bc090eec0ded5e4d18bd6e" + hash: "f0c61e706be86d31f124d6405c14c5b4" } Key { type: 7 @@ -1674,11 +1674,11 @@ VisualTest { } Frame { msec: 5760 - image: "usingLineEdit.5.png" + hash: "dbca3c9292e2a6efac887a33b735607f" } Frame { msec: 5776 - hash: "325ba5789a6150ec0fef81fa5b005c09" + image: "usingLineEdit.6.png" } Key { type: 7 @@ -1698,11 +1698,11 @@ VisualTest { } Frame { msec: 5792 - hash: "023dd8fe428b1ed0f4c994f7e67ac3cd" + hash: "6cb5d4a9c79ac3dc6522c5a1022b2e6e" } Frame { msec: 5808 - hash: "023dd8fe428b1ed0f4c994f7e67ac3cd" + hash: "6cb5d4a9c79ac3dc6522c5a1022b2e6e" } Key { type: 7 @@ -1722,11 +1722,11 @@ VisualTest { } Frame { msec: 5824 - hash: "f661f599f576ae883f25422b20408138" + hash: "71d67363467f3053393382b887f43401" } Frame { msec: 5840 - hash: "f661f599f576ae883f25422b20408138" + hash: "71d67363467f3053393382b887f43401" } Key { type: 7 @@ -1738,7 +1738,7 @@ VisualTest { } Frame { msec: 5856 - hash: "f661f599f576ae883f25422b20408138" + hash: "71d67363467f3053393382b887f43401" } Key { type: 6 @@ -1750,11 +1750,11 @@ VisualTest { } Frame { msec: 5872 - hash: "8e7ad34802a0ced493e88b779c73cc47" + hash: "db9175c9b81cb4b43f6d4d80549a5ae1" } Frame { msec: 5888 - hash: "8e7ad34802a0ced493e88b779c73cc47" + hash: "db9175c9b81cb4b43f6d4d80549a5ae1" } Key { type: 7 @@ -1774,7 +1774,7 @@ VisualTest { } Frame { msec: 5904 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Key { type: 7 @@ -1786,39 +1786,39 @@ VisualTest { } Frame { msec: 5920 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 5936 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 5952 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 5968 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 5984 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6000 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6016 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6032 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6048 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Key { type: 6 @@ -1830,27 +1830,27 @@ VisualTest { } Frame { msec: 6064 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6080 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6096 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6112 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6128 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Frame { msec: 6144 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "535d1bbe1d2147d70bec0b7d932eff41" } Key { type: 6 @@ -1862,67 +1862,67 @@ VisualTest { } Frame { msec: 6160 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6176 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6192 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6208 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6224 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6240 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6256 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6272 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6288 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6304 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6320 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6336 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6352 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6368 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6384 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Frame { msec: 6400 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "63132fa980a9fdcce415af1503f34ca6" } Key { type: 7 @@ -1942,11 +1942,11 @@ VisualTest { } Frame { msec: 6416 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6432 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Key { type: 7 @@ -1966,11 +1966,11 @@ VisualTest { } Frame { msec: 6448 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6464 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Key { type: 7 @@ -1998,83 +1998,83 @@ VisualTest { } Frame { msec: 6480 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6496 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6512 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6528 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6544 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6560 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6576 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6592 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6608 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6624 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6640 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6656 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6672 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6688 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6704 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6720 - image: "usingLineEdit.6.png" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6736 - hash: "608bba00320e20da05aa2a6bbcba6e19" + image: "usingLineEdit.7.png" } Frame { msec: 6752 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6768 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6784 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Key { type: 6 @@ -2086,7 +2086,7 @@ VisualTest { } Frame { msec: 6800 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Key { type: 7 @@ -2098,39 +2098,39 @@ VisualTest { } Frame { msec: 6816 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6832 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6848 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6864 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6880 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6896 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6912 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6928 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Frame { msec: 6944 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "cf2ccad24e42d8764c1395e076f3a0df" } Key { type: 6 @@ -2142,19 +2142,19 @@ VisualTest { } Frame { msec: 6960 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 6976 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 6992 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 7008 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Key { type: 7 @@ -2166,23 +2166,23 @@ VisualTest { } Frame { msec: 7024 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 7040 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 7056 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 7072 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Frame { msec: 7088 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "43217b3192aea23b17e2a2e7d820def8" } Key { type: 6 @@ -2194,19 +2194,19 @@ VisualTest { } Frame { msec: 7104 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7120 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7136 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7152 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Key { type: 7 @@ -2218,31 +2218,31 @@ VisualTest { } Frame { msec: 7168 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7184 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7200 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7216 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7232 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7248 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Frame { msec: 7264 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "02dceb1b71d82bfbea5fcfb630fef22d" } Key { type: 6 @@ -2254,23 +2254,23 @@ VisualTest { } Frame { msec: 7280 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7296 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7312 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7328 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7344 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Key { type: 7 @@ -2282,47 +2282,47 @@ VisualTest { } Frame { msec: 7360 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7376 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7392 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7408 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7424 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7440 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7456 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7472 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7488 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7504 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7520 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Key { type: 7 @@ -2334,247 +2334,247 @@ VisualTest { } Frame { msec: 7536 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7552 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7568 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7584 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7600 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7616 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7632 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7648 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7664 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7680 - image: "usingLineEdit.7.png" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7696 - hash: "f249bfae1934844abfd5fc158a9c89cf" + image: "usingLineEdit.8.png" } Frame { msec: 7712 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7728 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7744 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7760 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7776 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7792 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7808 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7824 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7840 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7856 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7872 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7888 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7904 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7920 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7936 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7952 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7968 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 7984 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8000 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8016 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8032 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8048 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8064 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8080 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8096 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8112 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8128 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8144 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8160 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8176 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8192 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8208 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8224 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8240 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8256 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8272 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8288 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8304 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8320 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8336 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8352 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8368 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8384 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8400 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8416 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8432 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8448 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8464 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8480 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Frame { msec: 8496 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "cff8ff96fe5f67faac7a04805d2a945b" } Mouse { type: 2 @@ -2586,19 +2586,19 @@ VisualTest { } Frame { msec: 8512 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "b901d339089fccecd217f562e3b0253a" } Frame { msec: 8528 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "b901d339089fccecd217f562e3b0253a" } Frame { msec: 8544 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "b901d339089fccecd217f562e3b0253a" } Frame { msec: 8560 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "b901d339089fccecd217f562e3b0253a" } Mouse { type: 5 @@ -2618,7 +2618,7 @@ VisualTest { } Frame { msec: 8576 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "b901d339089fccecd217f562e3b0253a" } Mouse { type: 5 @@ -2630,7 +2630,7 @@ VisualTest { } Frame { msec: 8592 - hash: "7d4116a8689b6995702a042d974ef74b" + hash: "8173ad74ad73a8061af3edb8322b3e28" } Mouse { type: 5 @@ -2650,7 +2650,7 @@ VisualTest { } Frame { msec: 8608 - hash: "cb9221f27ac24e4b6b103ca53acad3b3" + hash: "8173ad74ad73a8061af3edb8322b3e28" } Mouse { type: 5 @@ -2662,7 +2662,7 @@ VisualTest { } Frame { msec: 8624 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + hash: "a470057b75a1aade3945dbb61526ae50" } Mouse { type: 5 @@ -2682,7 +2682,7 @@ VisualTest { } Frame { msec: 8640 - image: "usingLineEdit.8.png" + hash: "a470057b75a1aade3945dbb61526ae50" } Mouse { type: 5 @@ -2694,7 +2694,7 @@ VisualTest { } Frame { msec: 8656 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + image: "usingLineEdit.9.png" } Mouse { type: 5 @@ -2714,7 +2714,7 @@ VisualTest { } Frame { msec: 8672 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + hash: "74c1edc228a7c4ba1c0adab9ed7dd086" } Mouse { type: 5 @@ -2726,7 +2726,7 @@ VisualTest { } Frame { msec: 8688 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "74c1edc228a7c4ba1c0adab9ed7dd086" } Mouse { type: 5 @@ -2746,7 +2746,7 @@ VisualTest { } Frame { msec: 8704 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "74c1edc228a7c4ba1c0adab9ed7dd086" } Mouse { type: 5 @@ -2766,7 +2766,7 @@ VisualTest { } Frame { msec: 8720 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "74c1edc228a7c4ba1c0adab9ed7dd086" } Mouse { type: 5 @@ -2786,7 +2786,7 @@ VisualTest { } Frame { msec: 8736 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "11e31d23d38f163c2c28ca042af7f9f6" } Mouse { type: 5 @@ -2806,7 +2806,7 @@ VisualTest { } Frame { msec: 8752 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "11e31d23d38f163c2c28ca042af7f9f6" } Mouse { type: 5 @@ -2826,7 +2826,7 @@ VisualTest { } Frame { msec: 8768 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "11e31d23d38f163c2c28ca042af7f9f6" } Mouse { type: 5 @@ -2846,7 +2846,7 @@ VisualTest { } Frame { msec: 8784 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "11e31d23d38f163c2c28ca042af7f9f6" } Mouse { type: 5 @@ -2866,7 +2866,7 @@ VisualTest { } Frame { msec: 8800 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "045f891731548aae37090e0cefb62170" } Mouse { type: 5 @@ -2886,7 +2886,7 @@ VisualTest { } Frame { msec: 8816 - hash: "f5a185b954e8b181222cc50075d8ebb6" + hash: "045f891731548aae37090e0cefb62170" } Mouse { type: 5 @@ -2906,7 +2906,7 @@ VisualTest { } Frame { msec: 8832 - hash: "93a00b37c5027650791d1ff589408d0d" + hash: "3b6f55bc49e7e326e40b0f3faae71a8b" } Mouse { type: 5 @@ -2926,7 +2926,7 @@ VisualTest { } Frame { msec: 8848 - hash: "0b29f6006be3604ef862db7d31f9a434" + hash: "abc04cd8ca8759f981f8e2c3b30a33ac" } Mouse { type: 5 @@ -2946,7 +2946,7 @@ VisualTest { } Frame { msec: 8864 - hash: "8390b63b71e1452cb93c576a3f2395e1" + hash: "f96cc6aa0a38639146d8d691d699946b" } Mouse { type: 5 @@ -2966,7 +2966,7 @@ VisualTest { } Frame { msec: 8880 - hash: "72298910946a4e1a9ccc4520d99e9420" + hash: "483743419cee348e8f6e24fd1e900ae6" } Mouse { type: 5 @@ -2986,7 +2986,7 @@ VisualTest { } Frame { msec: 8896 - hash: "17d349b0ed29d6aa57bf8fda9a55abf8" + hash: "50292f48ceeaee5f55795aea736631d0" } Mouse { type: 5 @@ -3006,7 +3006,7 @@ VisualTest { } Frame { msec: 8912 - hash: "01e8a877d51f5564aaf2f11e7aadbc4a" + hash: "9739b19d1496baabad1a01cf35c90374" } Mouse { type: 5 @@ -3026,7 +3026,7 @@ VisualTest { } Frame { msec: 8928 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "bcf1719dc1ec19d3cca83e41ffd4ba0d" } Mouse { type: 5 @@ -3046,7 +3046,7 @@ VisualTest { } Frame { msec: 8944 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3066,11 +3066,11 @@ VisualTest { } Frame { msec: 8960 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 8976 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3090,7 +3090,7 @@ VisualTest { } Frame { msec: 8992 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3102,55 +3102,55 @@ VisualTest { } Frame { msec: 9008 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9024 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9040 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9056 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9072 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9088 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9104 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9120 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9136 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9152 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9168 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9184 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Frame { msec: 9200 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3162,7 +3162,7 @@ VisualTest { } Frame { msec: 9216 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3174,7 +3174,7 @@ VisualTest { } Frame { msec: 9232 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3194,7 +3194,7 @@ VisualTest { } Frame { msec: 9248 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3214,7 +3214,7 @@ VisualTest { } Frame { msec: 9264 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3234,7 +3234,7 @@ VisualTest { } Frame { msec: 9280 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3254,7 +3254,7 @@ VisualTest { } Frame { msec: 9296 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3274,7 +3274,7 @@ VisualTest { } Frame { msec: 9312 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3294,7 +3294,7 @@ VisualTest { } Frame { msec: 9328 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3314,7 +3314,7 @@ VisualTest { } Frame { msec: 9344 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3334,7 +3334,7 @@ VisualTest { } Frame { msec: 9360 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "192a6cf285d42c7a2996bf0342e69c97" } Mouse { type: 5 @@ -3354,7 +3354,7 @@ VisualTest { } Frame { msec: 9376 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "b79a6b6b2a670212a0f4310323352862" } Mouse { type: 5 @@ -3374,7 +3374,7 @@ VisualTest { } Frame { msec: 9392 - hash: "12e705f08ff90fd8ddb1937e5a7e23a0" + hash: "b79a6b6b2a670212a0f4310323352862" } Mouse { type: 5 @@ -3394,7 +3394,7 @@ VisualTest { } Frame { msec: 9408 - hash: "12e705f08ff90fd8ddb1937e5a7e23a0" + hash: "b79a6b6b2a670212a0f4310323352862" } Mouse { type: 5 @@ -3414,7 +3414,7 @@ VisualTest { } Frame { msec: 9424 - hash: "4daae0f05ff1b7ef68ed1d839b113dc4" + hash: "82ad8cef2dc81cf061785c211f1b2233" } Mouse { type: 5 @@ -3434,7 +3434,7 @@ VisualTest { } Frame { msec: 9440 - hash: "a1186544d7f5576e6ccbbd7938c1c374" + hash: "dc5c2e4ac2c51ac7b84a527a77313ff5" } Mouse { type: 5 @@ -3454,7 +3454,7 @@ VisualTest { } Frame { msec: 9456 - hash: "6ce09c9a06135d2280e4f7bc1c81b70e" + hash: "dc5c2e4ac2c51ac7b84a527a77313ff5" } Mouse { type: 5 @@ -3474,7 +3474,7 @@ VisualTest { } Frame { msec: 9472 - hash: "6ce09c9a06135d2280e4f7bc1c81b70e" + hash: "dceeee37f46351f54a6dbf9e1d304017" } Mouse { type: 5 @@ -3494,7 +3494,7 @@ VisualTest { } Frame { msec: 9488 - hash: "035b177c3cacd8cdef807d5673de4607" + hash: "dceeee37f46351f54a6dbf9e1d304017" } Mouse { type: 5 @@ -3514,7 +3514,7 @@ VisualTest { } Frame { msec: 9504 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "b5b370f86804d875363c8aa9fa53c0fe" } Mouse { type: 5 @@ -3534,7 +3534,7 @@ VisualTest { } Frame { msec: 9520 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "b5b370f86804d875363c8aa9fa53c0fe" } Mouse { type: 5 @@ -3546,7 +3546,7 @@ VisualTest { } Frame { msec: 9536 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "b5b370f86804d875363c8aa9fa53c0fe" } Mouse { type: 5 @@ -3566,7 +3566,7 @@ VisualTest { } Frame { msec: 9552 - hash: "859950e1cf496ef830a30b3a0ec801ac" + hash: "8ae0e57709d94c27ecf34f9e76623ba8" } Mouse { type: 5 @@ -3586,7 +3586,7 @@ VisualTest { } Frame { msec: 9568 - hash: "859950e1cf496ef830a30b3a0ec801ac" + hash: "8ae0e57709d94c27ecf34f9e76623ba8" } Mouse { type: 5 @@ -3606,7 +3606,7 @@ VisualTest { } Frame { msec: 9584 - hash: "be7343825b6adcb16f49e20ee2bdf19f" + hash: "a29b5440525c9fbed90096f287396c91" } Mouse { type: 5 @@ -3626,7 +3626,7 @@ VisualTest { } Frame { msec: 9600 - image: "usingLineEdit.9.png" + hash: "d1091d48e0875fec9372c382c6961562" } Mouse { type: 5 @@ -3638,7 +3638,7 @@ VisualTest { } Frame { msec: 9616 - hash: "597923ce1046fbf4b728545c54c97fa5" + image: "usingLineEdit.10.png" } Mouse { type: 5 @@ -3658,7 +3658,7 @@ VisualTest { } Frame { msec: 9632 - hash: "597923ce1046fbf4b728545c54c97fa5" + hash: "d1091d48e0875fec9372c382c6961562" } Mouse { type: 5 @@ -3678,7 +3678,7 @@ VisualTest { } Frame { msec: 9648 - hash: "597923ce1046fbf4b728545c54c97fa5" + hash: "d1091d48e0875fec9372c382c6961562" } Mouse { type: 5 @@ -3698,7 +3698,7 @@ VisualTest { } Frame { msec: 9664 - hash: "2fc5c42f94350f28ae0117bc7f6daff1" + hash: "e1ac646b512dec95946fb52811c269da" } Mouse { type: 5 @@ -3718,7 +3718,7 @@ VisualTest { } Frame { msec: 9680 - hash: "4b4ec69d583151f1a64052d696966f9c" + hash: "29dfbe2f8ecee4ff5ecdf358a94f35f8" } Mouse { type: 5 @@ -3738,7 +3738,7 @@ VisualTest { } Frame { msec: 9696 - hash: "0882a25ac1c2b534367736d825a73630" + hash: "2ce02f81e21d4f9a3fd8d78fc8182898" } Mouse { type: 5 @@ -3758,7 +3758,7 @@ VisualTest { } Frame { msec: 9712 - hash: "d5b6acc155f827c05b0c4c289a2e3eec" + hash: "09e41ca9d2286e99cdecb446a33cbf99" } Mouse { type: 5 @@ -3778,7 +3778,7 @@ VisualTest { } Frame { msec: 9728 - hash: "a05b3f2f9f22249ab694ac45e1de7b85" + hash: "6d780f15bc7597420fc10b1a2f1c7f7f" } Mouse { type: 5 @@ -3798,7 +3798,7 @@ VisualTest { } Frame { msec: 9744 - hash: "5b0e034813f8543627f370efdcf3591e" + hash: "afb956a94411eba22a0257faa5cbc57f" } Mouse { type: 5 @@ -3818,7 +3818,7 @@ VisualTest { } Frame { msec: 9760 - hash: "5b8d80b9d7e2a8c1a24c28e127d0f7e5" + hash: "8739d2d2f9d96f0bce61ce95bf1e6062" } Mouse { type: 5 @@ -3838,7 +3838,7 @@ VisualTest { } Frame { msec: 9776 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3858,7 +3858,7 @@ VisualTest { } Frame { msec: 9792 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3870,7 +3870,7 @@ VisualTest { } Frame { msec: 9808 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3882,7 +3882,7 @@ VisualTest { } Frame { msec: 9824 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3894,7 +3894,7 @@ VisualTest { } Frame { msec: 9840 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3906,11 +3906,11 @@ VisualTest { } Frame { msec: 9856 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 9872 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3922,7 +3922,7 @@ VisualTest { } Frame { msec: 9888 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3934,7 +3934,7 @@ VisualTest { } Frame { msec: 9904 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3946,7 +3946,7 @@ VisualTest { } Frame { msec: 9920 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3958,11 +3958,11 @@ VisualTest { } Frame { msec: 9936 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 9952 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3974,7 +3974,7 @@ VisualTest { } Frame { msec: 9968 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3986,7 +3986,7 @@ VisualTest { } Frame { msec: 9984 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -3998,11 +3998,11 @@ VisualTest { } Frame { msec: 10000 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10016 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 5 @@ -4014,59 +4014,59 @@ VisualTest { } Frame { msec: 10032 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10048 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10064 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10080 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10096 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10112 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10128 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10144 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10160 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10176 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10192 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10208 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10224 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10240 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Mouse { type: 3 @@ -4078,258 +4078,258 @@ VisualTest { } Frame { msec: 10256 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10272 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10288 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10304 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10320 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10336 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10352 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10368 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10384 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10400 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10416 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10432 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10448 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10464 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10480 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10496 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10512 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10528 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10544 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10560 - image: "usingLineEdit.10.png" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10576 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + image: "usingLineEdit.11.png" } Frame { msec: 10592 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10608 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10624 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10640 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10656 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10672 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10688 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10704 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10720 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10736 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10752 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10768 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10784 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10800 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10816 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10832 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10848 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10864 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10880 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10896 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10912 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10928 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10944 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10960 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10976 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 10992 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11008 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11024 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11040 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11056 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11072 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11088 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11104 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11120 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11136 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11152 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11168 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11184 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11200 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11216 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11232 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11248 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } Frame { msec: 11264 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "4e2cb8e4cedab8df2ff823e18b17e575" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png Binary files differdeleted file mode 100644 index f04f65e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png Binary files differdeleted file mode 100644 index 46a703a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png Binary files differdeleted file mode 100644 index e4a3877..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png Binary files differdeleted file mode 100644 index 9ef842a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png Binary files differdeleted file mode 100644 index 706e2b3..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png Binary files differdeleted file mode 100644 index bcc86cc..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png Binary files differdeleted file mode 100644 index 51ddd44..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png Binary files differdeleted file mode 100644 index 0a2fdda..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png Binary files differdeleted file mode 100644 index 9c88bff..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml index a1d998f..81f1bcc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml @@ -6,134 +6,146 @@ VisualTest { } Frame { msec: 16 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 32 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 48 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 64 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 80 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 96 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 112 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 128 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 144 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 160 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 176 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 192 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 208 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 224 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 240 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 256 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 272 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 288 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 304 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 320 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 336 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 352 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 368 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 384 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 400 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 416 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 432 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 448 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 464 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 480 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 496 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 512 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 528 + hash: "87902d32dba1439e71ce5f57f514748e" } Key { - type: 6 + type: 7 key: 16777234 modifiers: 0 text: "" @@ -141,36 +153,44 @@ VisualTest { count: 1 } Frame { - msec: 528 - hash: "56db24ad686d34e75a2d184e5b1da2a9" - } - Frame { msec: 544 - hash: "c3487c7c7dcd392e7eacb74045dd4143" + hash: "cad95931a38718eb481a9175fdfec305" } Frame { msec: 560 - hash: "70aedcda6c93875d18ee111d8a19549e" + hash: "1dc99e5c7e4d2fa6b624b6df250b78fc" } Frame { msec: 576 - hash: "47ad557d366536ad457f6866241dba93" + hash: "5d5739beb039a83bebb2c41489166edf" } Frame { msec: 592 - hash: "e715c2a82745829665226df78598b819" + hash: "6320c9a1c0013f5aa6180992b934ca59" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 608 - hash: "2ff4bd5602c34c020162f0503d625049" + hash: "9d9837c1f3779e5dab0dfeb1d11fdea1" } Frame { msec: 624 - hash: "a494b3b25a23daa858034ebccce0d1c7" + hash: "9d868112eaf70ce02ce93603278a565d" } Frame { msec: 640 - hash: "59d2fb8e21802d256b11730b31919fb3" + hash: "d2bccb3184d3bb42b91017410a8655b6" + } + Frame { + msec: 656 + hash: "68f8be3e16637fd39a35f0cebb62b74a" } Key { type: 7 @@ -181,67 +201,47 @@ VisualTest { count: 1 } Frame { - msec: 656 - hash: "5e09b95292d6d0afe76a5015b0ccebf1" - } - Frame { msec: 672 - hash: "de3c911aec7e42557ece4bdcf02ce562" + hash: "04f5781b57ed9fee32d5ef80dc33f4ff" } Frame { msec: 688 - hash: "680f51f63c4b11a247a668eb7bbd2b62" + hash: "06cc2e24a848d441074de5ddff1c739a" + } + Frame { + msec: 704 + hash: "94526186deb7248ac9c747ede15b106d" + } + Frame { + msec: 720 + hash: "1ac130517df314f4f44b9bde2d3dcc53" } Key { type: 6 - key: 16777236 + key: 16777234 modifiers: 0 text: "" autorep: false count: 1 } Frame { - msec: 704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { msec: 736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" + hash: "270ecf4900e94d60599ded230633aa02" } Frame { msec: 752 - hash: "b4e273b6415e3951eab2f831100b0bb2" + hash: "ef2093584cbce9182b99f297fcd2465d" } Frame { msec: 768 - hash: "fd3fd655785c4e3c470f742451e3470f" + hash: "c445cf5f56213a712585934681d8af55" } Frame { msec: 784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 800 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" + hash: "9f0edb3871e015a549622e1b70d1b748" } Key { type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 key: 16777234 modifiers: 0 text: "" @@ -249,28 +249,44 @@ VisualTest { count: 1 } Frame { + msec: 800 + hash: "144c51d7aa47ea8cc8d79a97efa4b430" + } + Frame { + msec: 816 + hash: "34f768a7c99dfb3c8f0e1fb1a08a37ac" + } + Frame { msec: 832 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "4f3970c4ad02b69f96c11610494e8a50" } Frame { msec: 848 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "815a1cf66f0c9eb47e244753eebb83ba" } Frame { msec: 864 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "5db11f795c000b382fdc30726a711c65" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 880 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "67976ee172d0d55992c0e4734fbb7ccf" } Frame { msec: 896 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "c764e4d5317acbbf5118a08565e5d5fd" } Frame { msec: 912 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "a83f566d01b990e91f43bb63a58fb5b8" } Key { type: 7 @@ -282,11 +298,11 @@ VisualTest { } Frame { msec: 928 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "031282f352e01f23bc5f73bf8ce82c9a" } Frame { msec: 944 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "1f3dc1d3ad0304376eac5d60d3c226ee" } Frame { msec: 960 @@ -294,207 +310,247 @@ VisualTest { } Frame { msec: 976 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 992 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1008 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1024 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 1056 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Key { - type: 6 - key: 16777248 - modifiers: 33554432 + type: 7 + key: 16777234 + modifiers: 0 text: "" autorep: false count: 1 } - Key { - type: 6 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + Frame { + msec: 1056 + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1072 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "a2ad07326fafcb3012cdb869f39af466" } Frame { msec: 1088 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "8622eb25a6da44926b5161bce213a483" } Frame { msec: 1104 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" } Frame { msec: 1120 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "775cd79b012f79b773449a0ad8457149" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1136 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "2a4ed061e512c5afd11072c4b707f707" } Frame { msec: 1152 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "c855df7b17811f25fd17e4fb108c02e1" } Frame { msec: 1168 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "46c37d8e67ece5cae4f766acf50f3ca3" } Frame { msec: 1184 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "95a70f14ce01aae61190080ed3d55c77" } Frame { msec: 1200 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "87da182d1285f3613bb2e4673e701757" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1216 - hash: "e7346d8f223684143a0940def878b874" + hash: "5b97f13f43e713a6fbe96bdca8969191" } Frame { msec: 1232 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "4d003182e7b7b0a05413b80f82a0fc41" } Frame { msec: 1248 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "dba09e038291a8dfdc61911d6b4b9bdf" } Frame { msec: 1264 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "a2ae1e5cc6cd72fae70804e07df5a8a1" } Frame { msec: 1280 - hash: "de09380dd57c58ae99fbdba169a19975" + hash: "f1c2a24b6f0ebcf98122e8db1cdcb66f" } Frame { msec: 1296 - hash: "bfc1b03df244839a012e8302dc07764f" + hash: "142dade1639655132435ae260b7935a0" } - Frame { - msec: 1312 - hash: "d5f220e5337837ec0d07eb118e2f948e" + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { - msec: 1328 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" + msec: 1312 + hash: "e80c0175d947bceef4bf53b60bf7eac0" } Key { type: 6 - key: 16777234 + key: 16777248 modifiers: 100663296 text: "" autorep: false count: 1 } Frame { + msec: 1328 + hash: "de912cd8bd2fe762ec6b1ec819732507" + } + Frame { msec: 1344 - hash: "c659fd76d632aac26d396809b57826dd" + hash: "d3fa9dfab37ee26572d25bcbe8c66b72" } Frame { msec: 1360 - hash: "b5ba335eca37416970dcab53157d7ae6" + hash: "33bdb2817a2858ce430813d0774f0172" } Frame { msec: 1376 - hash: "df498dac81260d8867221612ff3b7619" + hash: "4f10f0ffb6b1c87155eedd53af36c74f" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1392 - hash: "578c3a682278f4ead0ca894f029dbfb7" + hash: "1b94be0de8412bd9380689895f290af7" } Frame { msec: 1408 - hash: "5fe9b2365b091047df1b18bcaa5b1bb4" + hash: "48b3a5e2b04c86a75f4b6595eb2c1f55" } Frame { msec: 1424 - hash: "c513b8df83f1d1cc3c05769c41741653" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "d092fabd3dd51c718486e1e7dadaa0dc" } Frame { msec: 1440 - hash: "ee70a2002f52a3f4a9fa32db668db3d0" + hash: "243359437235563f1a60b8eaf63365b6" } Frame { msec: 1456 - hash: "3f299da38c2f3f9057df987d5d339e1f" + hash: "a986c8ed8ad2d8b6aab2a001906ba2ad" } Frame { msec: 1472 - hash: "55f6adbd00910e5f39977162cfe8dcc5" + hash: "da5e06dc481e9cb7d9159a84d0cc150a" } Frame { msec: 1488 - hash: "151fb386855954ae5143046cab314ddf" + hash: "1d70a05fce3a05477e21d22b127ae96a" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1504 - hash: "d9ec76b2c07077b5b6d6c3777d116164" + hash: "913448213a07f6c8427c8e310d2026de" } Frame { msec: 1520 - hash: "ef3ba6c27d9b28de829360985505c185" + hash: "51bef5ae52977a935b66af4baf1da4e6" } Frame { msec: 1536 - hash: "8eafd8f9aea08c172f40de3c4f2b3b59" + hash: "367bc25f868c23005d7fe903a9ea681b" } Frame { msec: 1552 - hash: "2329d5b8182794bb8375f0de204c9b16" + hash: "3c25181652e788d128ed571ca4fea0b1" } Frame { msec: 1568 - hash: "e6b25cf1a8c6858f6937e649b1315955" + hash: "0218f939ff2b8c0bc22a537ed0f053f0" } Frame { msec: 1584 - hash: "3aeedff600509a138b0de31e10bbdd7b" + hash: "a3b765a823b2b3811273a1be90850533" } Frame { msec: 1600 - hash: "0636dee0ddc551ce8ecf3a6c6300b020" + hash: "2a42a29774eb4f962d299f8c2c213d55" } Frame { msec: 1616 - hash: "77f5b0dfdf0c631cf863be60bd09db9c" + hash: "1f0ad54d0fe8fc27cadbaaeaa37364e0" } Frame { msec: 1632 - hash: "2e86762371ae933546e8b2154c78f74b" + hash: "04d6028d1b1a1178e5bf774db8eef2c6" } Frame { msec: 1648 - hash: "1051ec29f94c31b257a5b1c922f8e93f" + hash: "c325e46e89e8df04e2c3d8bf111c5f09" + } + Frame { + msec: 1664 + hash: "70e6223ce16a797e2c56e21ad74b188b" + } + Frame { + msec: 1680 + hash: "0fb8762fd28564b84b83c17d749a3645" } Key { type: 6 @@ -505,76 +561,84 @@ VisualTest { count: 1 } Frame { - msec: 1664 - hash: "5c60da876c8cc9fa334905b5fc7c2a3d" - } - Frame { - msec: 1680 - hash: "c0b0cddd62853ac3499b7ada200d206a" - } - Frame { msec: 1696 - hash: "5bd588d64917f942e0f5ea1553acbf63" + hash: "ef5d19b59792ea8822e2391fe0d91dbd" } Frame { msec: 1712 - hash: "bc5744ef5c81b7d5b365bf977f909be5" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "70ad15030164be8afbb4ab22d1ae5f5f" } Frame { msec: 1728 - hash: "892a1a8a5a9c198e5ae04cc19f0e1d0c" + hash: "a5dfb8bd4b681e0d8d2c082821a2a976" } Frame { msec: 1744 - hash: "708799d2d834302c659958701e217b37" + hash: "864781fbb8673b1e603df015f2d88601" } Frame { msec: 1760 - hash: "360d75bcc178bcfd4f93741d653fd821" + hash: "0bdb6a155cdd14f4dce9fde3c5116dde" } Frame { msec: 1776 - hash: "1cfe03528b1cd84e69efc02b9677c748" + hash: "5421f521a9bdccc8478fcee97e0dbc99" } Frame { msec: 1792 - hash: "6f45d7c37f1fb90138011b2af24aaf1e" + hash: "c5f29693dd017932767f37e2fb2f22f2" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1808 - hash: "ba164375e7ac18cf2e1e613498158fbf" + hash: "b5e8abeaec33407e673f8021212528b1" } Frame { msec: 1824 - hash: "14052b9da9e17a6f06fed05d4ed82b9c" + hash: "917c968e5ee8f0b25fdb175719d7dbfa" } Frame { msec: 1840 - hash: "aac15ce22bfe38f44a46e4644913f144" + hash: "56495c63676b9f73004e76e38d60567e" } Frame { msec: 1856 - hash: "c63aa02ba29ea18334b188185690948d" + hash: "86f1ccdd7ff408c5b141d79797eea1fa" + } + Key { + type: 7 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 1872 - hash: "11ed187ccd4c2221f166851c08b6b467" + hash: "9e9b32a9f71ab1aa4e87ddc323ccda03" + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1888 - hash: "3543bd4e538981d4bb2c2313c9663a53" + hash: "360aef37452ce8f045659c227285cb82" } Frame { msec: 1904 - hash: "a05fa618b094bde2b54b730f513bcabe" + hash: "805949377c620fa4310aa4328eba1f23" } Frame { msec: 1920 @@ -582,527 +646,623 @@ VisualTest { } Frame { msec: 1936 - hash: "52fc4a32526a74f9a04d8795c7a47c6e" + hash: "00df8110a2008ba77b7e0bf2130e5319" } Frame { msec: 1952 - hash: "17623e1b0ffca3b7736ce930f078dbe0" + hash: "835f6f723577071461e41da1fd2e990a" } Frame { msec: 1968 - hash: "75226dac5691627851d83c7370d7603c" - } - Key { - type: 7 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "6876cafa4d6d3a7d387602eba4d26db1" } Frame { msec: 1984 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2000 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2016 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2032 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 2048 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2064 - hash: "75226dac5691627851d83c7370d7603c" + hash: "6876cafa4d6d3a7d387602eba4d26db1" } Frame { msec: 2080 - hash: "17623e1b0ffca3b7736ce930f078dbe0" + hash: "835f6f723577071461e41da1fd2e990a" } Frame { msec: 2096 - hash: "52fc4a32526a74f9a04d8795c7a47c6e" + hash: "00df8110a2008ba77b7e0bf2130e5319" } Frame { msec: 2112 - hash: "89f2d3b4441faee557b8d5f44e1e1e18" + hash: "627206a252bd6fcbf57d9f1cde0506bb" } Frame { msec: 2128 - hash: "a05fa618b094bde2b54b730f513bcabe" + hash: "805949377c620fa4310aa4328eba1f23" } Frame { msec: 2144 - hash: "3543bd4e538981d4bb2c2313c9663a53" + hash: "360aef37452ce8f045659c227285cb82" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2160 - hash: "11ed187ccd4c2221f166851c08b6b467" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 2176 - hash: "c63aa02ba29ea18334b188185690948d" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 2192 - hash: "aac15ce22bfe38f44a46e4644913f144" + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" } Frame { msec: 2208 - hash: "14052b9da9e17a6f06fed05d4ed82b9c" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 2224 - hash: "ba164375e7ac18cf2e1e613498158fbf" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 2240 - hash: "6f45d7c37f1fb90138011b2af24aaf1e" - } - Frame { - msec: 2256 - hash: "1cfe03528b1cd84e69efc02b9677c748" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Key { type: 7 - key: 16777248 + key: 16777236 modifiers: 0 text: "" autorep: false count: 1 } Frame { + msec: 2256 + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" + } + Frame { msec: 2272 - hash: "360d75bcc178bcfd4f93741d653fd821" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 2288 - hash: "708799d2d834302c659958701e217b37" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 2304 - hash: "892a1a8a5a9c198e5ae04cc19f0e1d0c" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 2320 - hash: "bc5744ef5c81b7d5b365bf977f909be5" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 2336 - hash: "5bd588d64917f942e0f5ea1553acbf63" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 2352 - hash: "c0b0cddd62853ac3499b7ada200d206a" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Key { type: 6 - key: 16777236 - modifiers: 0 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { msec: 2368 - hash: "5c60da876c8cc9fa334905b5fc7c2a3d" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 2384 - hash: "136a103a893991b97ec09f373c68c5b9" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 2400 - hash: "b2181ce0165ee060e1a8b713027011a9" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 2416 - hash: "e4836bbaf1834658e3ec4bf54a619b53" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 2432 - hash: "3072492f5f72427c8d45cf3c5d3ff919" + hash: "f14ec1544a380fc9993b39754c23c2f4" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2448 - hash: "d897cba896239c77df4f7adb93ad5def" + hash: "2d549b5fea734e47682415df1717e6a6" } Frame { msec: 2464 - hash: "ec9867a95de6d6f4c0f92af567d73771" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "824c5960260dd3ed7527709ebfb06d27" } Frame { msec: 2480 - hash: "06b72e3180eb946622e4592de0fa6f91" + hash: "258f034fe1e71f25a92e667e05f53e82" } Frame { msec: 2496 - hash: "33f109c026eaefed113cc12db5912a19" + hash: "c432e758e19c44d788cb38df6e4c6d69" } Frame { msec: 2512 - hash: "ce72c4b4470394dc1c4efd4d9de9907f" + hash: "a1856592208f9a00385b13c44e1c4503" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2528 - hash: "64ac1105ea10ae1f6401e8421731c606" + hash: "2b4d40a0555df0b86f52d13790185459" } Frame { msec: 2544 - hash: "ef977bd74941d3506b8f3ee4b1f587ad" + hash: "b153143e6b16c47fa06663dc6b1034d6" } Frame { msec: 2560 - hash: "9278de91e10788ae5a80399ff5372460" + hash: "ac52236c5d73aeae7c0834df1e6bd84e" } Frame { msec: 2576 - hash: "ddaaf945a5f714b856ed5155f4e502b2" + hash: "136eeb348b0b96edc9aaf9fbea741973" } Frame { msec: 2592 - hash: "f6bb6ba15d996345df04825da71c2cf3" + hash: "4f8a1dfa8906de2bcdfbf5c3b29fbf9b" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2608 - hash: "466c78a5a5052b39b113adeda761da6c" + hash: "7dc9726df2d112b46f4d9dbe66d534c7" } Frame { msec: 2624 - hash: "db650537d773e0d8a737a7bf5f408a5e" + hash: "f64086ca0e83fa8bb0fae28065260fdc" } Frame { msec: 2640 - hash: "64be9f85869f19defada296343895a2b" + hash: "5237dd2b79d71bbfa0a0d3963a7f42b7" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2656 - hash: "5ac6d9751bfadbc7aa064ca0b4d78b2b" + hash: "8dd435b577bb258979d33034885a8cd8" } Frame { msec: 2672 - hash: "a088b351dcc6fc3a8d29256f3a2410c3" + hash: "2609c066b8f102b4189991bf7d01eaad" } Frame { msec: 2688 - hash: "a16a77170a6c969042024fa0868da12d" + hash: "986fab22391264d04df9a55b18aee645" } Frame { msec: 2704 - hash: "3a2509d0d3a314d2ed72f811f4af741e" + hash: "0256423680aa0843fe8ec84f5e68fc9b" } Frame { msec: 2720 - hash: "484db4e1954048cad7eea48bfea08267" - } - Frame { - msec: 2736 - hash: "ad0f84634c5f99ab62ab6d12ad8d8c6a" - } - Frame { - msec: 2752 - hash: "d99b590307f6910963257a1c41c50120" + hash: "b822bdcad69aa868f48b2bbf2d62e297" } Key { type: 6 key: 16777234 - modifiers: 0 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { + msec: 2736 + hash: "14effed70ca60233be9b2f6d0a1b5e6c" + } + Frame { + msec: 2752 + hash: "1abaf2c36a0fb9f04606c0e191d113cf" + } + Frame { msec: 2768 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "cffb8ca29b0369d183d6461bf9e63fdf" } Frame { msec: 2784 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "9378bebddb09036bec98ff7018dcf7c1" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2800 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "0c3823994ee8f838c26040118ba62622" } Frame { msec: 2816 - hash: "e7346d8f223684143a0940def878b874" + hash: "d374547f47adc81a18428c7a79cb9cf2" } Frame { msec: 2832 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "449c2996a2d0e74f2300adad619700bc" } Frame { msec: 2848 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "14379a320b6fc36de5d2a6776f1dc963" } Frame { msec: 2864 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "cb010a99ffa3b6df26c6cd263a21cfcd" } Frame { msec: 2880 image: "cursorDelegate.2.png" } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } Frame { msec: 2896 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "a445d23288d462009916e31f370a2068" } Frame { msec: 2912 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "8b3f2811300830e837797056f262bec2" } Frame { msec: 2928 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "2303a27e72334cae84b4fe51a62974ba" } Frame { msec: 2944 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "f3a9f3e74d2d83e38aee78cab7209bd6" } Frame { msec: 2960 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "ca4777127a535655f057af57cf3e8c7b" } Frame { msec: 2976 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 2992 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3008 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3024 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3040 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3056 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3072 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "ca4777127a535655f057af57cf3e8c7b" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3088 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "83cfb141f6b77fa062443a442a5b2e9e" } Frame { msec: 3104 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "b3e262864238d03f988c9750cc74e48f" } Frame { msec: 3120 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "6ed2086ae01be46f0684bbecc05484c4" } Frame { msec: 3136 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "91f6dad8f05577af6e4f5f0aceb06b4b" } Frame { msec: 3152 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "1bfb0c299c3c0db0518eaa54137c22b0" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3168 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "37cc96ef4b760faadf76cc471f6ba49a" } Frame { msec: 3184 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "67c848bf93e845eaf5eebc9b8e57482c" } Frame { msec: 3200 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "e3906ad9b1dfbd1170364c11ff4b286f" } Frame { msec: 3216 - hash: "e7346d8f223684143a0940def878b874" + hash: "24dd59673c5659e3bf6f52723e1bcd07" } Frame { msec: 3232 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "4b694f05f147bcf901a16807d4e3ec7c" } Frame { msec: 3248 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "9d9dbf34f6a67a49210caa249b8a1abb" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3264 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "5381cde4763aa45c97793124e42db6f5" } Frame { msec: 3280 - hash: "de09380dd57c58ae99fbdba169a19975" + hash: "0f113c0263faa47428c4d16891ac4d4f" } Frame { msec: 3296 - hash: "bfc1b03df244839a012e8302dc07764f" + hash: "cc1767ec13803959333cd35bfb2d9119" } Frame { msec: 3312 - hash: "d5f220e5337837ec0d07eb118e2f948e" + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" } Frame { msec: 3328 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" + hash: "114ad78597ede2afc4dd8bafa1d4df21" } Frame { msec: 3344 - hash: "680f51f63c4b11a247a668eb7bbd2b62" + hash: "d08dc22ddc707316483f09b796ea0380" } Frame { msec: 3360 - hash: "de3c911aec7e42557ece4bdcf02ce562" + hash: "135b2b0f4e469b207e673d1e7086cd4f" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3376 - hash: "5e09b95292d6d0afe76a5015b0ccebf1" + hash: "4267354fe0d24597bdb5ee1a6e9affbb" } Frame { msec: 3392 - hash: "59d2fb8e21802d256b11730b31919fb3" + hash: "700bd56ecea646bbec2017007bbb5b84" } Frame { msec: 3408 - hash: "a494b3b25a23daa858034ebccce0d1c7" + hash: "874a65c2069f4ba89301c129f884f217" } Frame { msec: 3424 - hash: "2ff4bd5602c34c020162f0503d625049" + hash: "b5ec22f95abb43c83533f7dc606667f6" } Frame { msec: 3440 - hash: "e715c2a82745829665226df78598b819" + hash: "445de6663e80d1fe1527ec5acf4ec1de" } Frame { msec: 3456 - hash: "47ad557d366536ad457f6866241dba93" + hash: "87c129a5bf08536d3fca90375283e26b" } Frame { msec: 3472 - hash: "70aedcda6c93875d18ee111d8a19549e" + hash: "a63e2438a9cd412c2b119cd42b11009f" } Frame { msec: 3488 - hash: "c3487c7c7dcd392e7eacb74045dd4143" + hash: "61a3475bef5fd276b836cf3483526f57" } Frame { msec: 3504 - hash: "56db24ad686d34e75a2d184e5b1da2a9" + hash: "097ab9a1a1fe9743f162f57b93599fe7" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 3520 - hash: "436349a8371597a74404428983cd894c" + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" } Frame { msec: 3536 - hash: "6e1bb59ec518614a0414092f4939d5ad" + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3552 - hash: "f0aa02772df579b921e0c68f794d2327" + hash: "f243d823fc9977e69a008010d8db8a01" } Frame { msec: 3568 - hash: "09ea1462da333c2aeaaa01e9e4f8d54b" + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" } Frame { msec: 3584 - hash: "46d23d8472ce833591dcff548a644288" + hash: "bd5b206097f30dfce884a8c74856857d" } Frame { msec: 3600 - hash: "a7566d5d35a89078bb378bf3f6c78e13" + hash: "f14ec1544a380fc9993b39754c23c2f4" } Frame { msec: 3616 - hash: "4c5f7155b20e34a5627387cdc466e890" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 3632 - hash: "e9b98922327c412db0116a56283d3c86" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 3648 - hash: "29ffede9c16c34ead5f291e69e388084" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 3664 - hash: "16958b8f0b1dbdc15333d99bd1349124" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 3680 - hash: "3408f8d6e4d6ef34d4d5a0cb51090c4c" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Frame { msec: 3696 - hash: "b32b099b260789266d0a3c0edd61c04e" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 3712 - hash: "4dd3617b25e8b95cf2ec31db8b3bb80f" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 3728 - hash: "46b42a08c59909f067810d1984f7a04e" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 3744 - hash: "ab8c505601c381e8a44fa7b6eea6579d" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 3760 - hash: "73f56e6e1d2cbf3f559d679eb2c15529" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 3776 - hash: "b230c56da330823d7d7f7e081c304acb" + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" } Frame { msec: 3792 - hash: "9f3cbd0023dbd78ba4951c26f71c7d5d" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Frame { msec: 3808 - hash: "9e9b11cf2695dd02c1ab175ff194f491" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 3824 - hash: "8fa6f8eb5deb0ab95c3454e5812ada1d" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 3840 @@ -1110,271 +1270,239 @@ VisualTest { } Frame { msec: 3856 - hash: "0b6b24ae8df7c3aa9abb48edb6619d8a" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 3872 - hash: "45805295dd2482fdf21ac8c9bfe47869" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 3888 - hash: "4893cd31a730d786f075edfd0afc0ad9" + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" } Frame { msec: 3904 - hash: "a3fbfe732568f5cf6e63809fd7e0c32e" + hash: "69720bcca91f99f229aebc74c5e74261" } Frame { msec: 3920 - hash: "21d3327710d51f714e84b5a28df13e4f" + hash: "41d8f4031223f7c833d50208e231964a" } Frame { msec: 3936 - hash: "ea065ab48f27f60505eab36debee3faa" + hash: "6fa8fd3252f367f3fafea4e3c7317a48" } Frame { msec: 3952 - hash: "fe4c2e368d2110374b7ba9e30f330713" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 3968 - hash: "723281f6c1a3f03cf170e4de93fa4dbf" + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 3984 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4000 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4016 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4032 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4048 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4064 - hash: "723281f6c1a3f03cf170e4de93fa4dbf" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 4080 - hash: "c779e46a89c3c9d0f8234a3192175b60" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 4096 - hash: "f223cfeba468e161943b24ac960196de" + hash: "6fa8fd3252f367f3fafea4e3c7317a48" } Frame { msec: 4112 - hash: "dd2f21f063d055edc23c874380149067" + hash: "41d8f4031223f7c833d50208e231964a" } Frame { msec: 4128 - hash: "af580b32b67117eb062bbcefe262c719" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "69720bcca91f99f229aebc74c5e74261" } Frame { msec: 4144 - hash: "991f76d483e033024932790f85bb3c5d" + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" } Frame { msec: 4160 - hash: "3d8aa66ab9533d14a468f0869b457033" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 4176 - hash: "a5540bd5d088ab1201b5f22b32579d7c" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 4192 - hash: "e0844f30578fef2cdcee4e4ff28ab7cf" + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" } Frame { msec: 4208 - hash: "710e7022b65a9b3fd3a7372bf7f37c7a" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 4224 - hash: "db553c856b11db7e6feb38b9d562a804" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 4240 - hash: "6ba56c4ec6e903b0d82235c230ed78cb" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Frame { msec: 4256 - hash: "786de35a11c3fc1a228392195f509c28" + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" } Frame { msec: 4272 - hash: "cc6307597cea821b63391fc9bdbe038b" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 4288 - hash: "73d49e4d0bef103e11820d888bef0368" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 4304 - hash: "b2ed6ebf66252463326c2f220b3992fa" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 4320 - hash: "129b5bc6d55621e2366fc0d80f105df2" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 4336 - hash: "ae8fe55fa9b497cd6eff18a517c301d8" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 4352 - hash: "535210bd848a20db2966b06278198e07" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Frame { msec: 4368 - hash: "1f4ea7783b5c60bfc424c73cea07a3a0" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 4384 - hash: "5b61f2e9308c4de2864bb7cf133ce545" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 4400 - hash: "f641f87e9556ecfd24f0f0a772295e52" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 4416 - hash: "36f28574c0b042647bc064d75afa9fbc" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 4432 - hash: "dba2ca165b8ab35113b8ec127b204ae9" + hash: "f14ec1544a380fc9993b39754c23c2f4" } Frame { msec: 4448 - hash: "56324b95f63eabba718df588159f374d" + hash: "bd5b206097f30dfce884a8c74856857d" } Frame { msec: 4464 - hash: "af65d67fef3c743e31acca03716040c4" + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" } Frame { msec: 4480 - hash: "105481b5becd127af4c28961d900148c" + hash: "f243d823fc9977e69a008010d8db8a01" } Frame { msec: 4496 - hash: "4859d6bf9c456e52fd463e4c2f68d7f6" + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" } Frame { msec: 4512 - hash: "21c0958bd3c6a1056bb062165c9bc18b" + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" } Frame { msec: 4528 - hash: "287d258a79f45c26c92c69cce6b1a2f3" + hash: "097ab9a1a1fe9743f162f57b93599fe7" } Frame { msec: 4544 - hash: "deabc5c7dd111adcb253eb833f118764" + hash: "61a3475bef5fd276b836cf3483526f57" } Frame { msec: 4560 - hash: "4bad7380f6b645c551edbe06ff67cac9" + hash: "a63e2438a9cd412c2b119cd42b11009f" } Frame { msec: 4576 - hash: "67fc71c16d0b9405c35590bafdc5ea40" - } - Key { - type: 6 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "87c129a5bf08536d3fca90375283e26b" } Frame { msec: 4592 - hash: "7aed794eae2f0c65342f190ed4d4f889" + hash: "445de6663e80d1fe1527ec5acf4ec1de" } Frame { msec: 4608 - hash: "23edee3af8f1904558863d37c520555a" + hash: "b5ec22f95abb43c83533f7dc606667f6" } Frame { msec: 4624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "874a65c2069f4ba89301c129f884f217" } Frame { msec: 4640 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" + hash: "700bd56ecea646bbec2017007bbb5b84" } Frame { msec: 4656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" + hash: "4267354fe0d24597bdb5ee1a6e9affbb" } Frame { msec: 4672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" + hash: "135b2b0f4e469b207e673d1e7086cd4f" } Frame { msec: 4688 - hash: "5a11ec8a0485a018ebe317e01136e4a5" + hash: "d08dc22ddc707316483f09b796ea0380" } Frame { msec: 4704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" + hash: "114ad78597ede2afc4dd8bafa1d4df21" } Frame { msec: 4720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" } Frame { msec: 4736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" + hash: "cc1767ec13803959333cd35bfb2d9119" } Frame { msec: 4752 - hash: "b4e273b6415e3951eab2f831100b0bb2" + hash: "0f113c0263faa47428c4d16891ac4d4f" } Frame { msec: 4768 - hash: "fd3fd655785c4e3c470f742451e3470f" + hash: "5381cde4763aa45c97793124e42db6f5" } Frame { msec: 4784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" + hash: "99940d6744ac1245f82d62f08c371285" } Frame { msec: 4800 @@ -1382,1998 +1510,42 @@ VisualTest { } Frame { msec: 4816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" + hash: "77bbed46c7eb023252cdd80d0a15f38a" } Frame { msec: 4832 - hash: "36b65658073ac2687dbd88ec7a408a98" + hash: "36ee4da72825e96d5f670c94865a30d8" } Frame { msec: 4848 - hash: "84e165f9f2c55c5c51a260b11ca195c2" + hash: "c64d56c1b7df0a5c63ab8ff08ae6daf9" } Frame { msec: 4864 - hash: "c11cfcfda6f161d058a3d9e93349b578" + hash: "942e038a3426fa318212a8f245141225" } Frame { msec: 4880 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" + hash: "c033ebaee12dd8fe953e91160f986c3d" } Frame { msec: 4896 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" + hash: "07e64024cf7eda082297f6f83dba8067" } Frame { msec: 4912 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" } Frame { msec: 4928 - hash: "3cc8791e419986e1e913d4e153243fb2" + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" } Frame { msec: 4944 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" + hash: "7e2e55555ee2c7e172e61ddb6365355d" } Frame { msec: 4960 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 4976 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 4992 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5008 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5024 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5056 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5072 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 5088 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 5104 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 5120 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 5136 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 5152 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 5168 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 5184 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 5200 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 5216 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 5232 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 5248 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 5264 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 5280 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 5296 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 5312 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 5328 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 5344 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 5360 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 5376 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 5392 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 5408 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 5424 - hash: "23edee3af8f1904558863d37c520555a" - } - Frame { - msec: 5440 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Frame { - msec: 5456 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Frame { - msec: 5472 - hash: "679ee2b26a118ab53a84fa116de09edf" - } - Frame { - msec: 5488 - hash: "b9dcdd88fba70636cbcae160edcc0136" - } - Frame { - msec: 5504 - hash: "90af75eeef63ae67e9f6ff1a61d7cca3" - } - Frame { - msec: 5520 - hash: "29d80ae32451c24b655c4d1fd01d3aa1" - } - Frame { - msec: 5536 - hash: "c73fe137644cbc006d0b5274b72faa46" - } - Frame { - msec: 5552 - hash: "8a4d76ae60f5d720a382cced2f6a2b5e" - } - Frame { - msec: 5568 - hash: "a1efa0d424d568d338c6db9fc095c2fb" - } - Frame { - msec: 5584 - hash: "205cafcabb29b78a6db3dcaf44a74ab6" - } - Frame { - msec: 5600 - hash: "7507a3d2158d4cc68454c85922526871" - } - Frame { - msec: 5616 - hash: "7135a6a7999e82cb81e39228805332ee" - } - Frame { - msec: 5632 - hash: "ac2b714b5f32d2b911f31690d7082dc1" - } - Frame { - msec: 5648 - hash: "5cb1ae6d86aafdf11284480c81b939dc" - } - Frame { - msec: 5664 - hash: "ac705840cc94eb4af7a52d62649d0157" - } - Frame { - msec: 5680 - hash: "8c2ebcd80e26ac7b9d25be486f54c4ce" - } - Frame { - msec: 5696 - hash: "12b84aa02dbbab3592d3eb3cb6884b41" - } - Frame { - msec: 5712 - hash: "675043ddde6ed65a3ec4ed093be1e760" - } - Frame { - msec: 5728 - hash: "478126aeef5ddae9c0a77d08294cf3f2" - } - Frame { - msec: 5744 - hash: "0b43af73d91a500ccdf27b4347b9bc47" - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Frame { - msec: 5776 - hash: "a6d8708d08bedf0cab5230d6f2936936" - } - Frame { - msec: 5792 - hash: "02e0646024aeef6f01b7541b15267baa" - } - Frame { - msec: 5808 - hash: "da6717c94b46ad7a647c445c06314b0d" - } - Frame { - msec: 5824 - hash: "2ed12d49d72884160ebbf6b6d0e15a9d" - } - Frame { - msec: 5840 - hash: "a1fbc3333b7f742a8336a6fcbad156c9" - } - Frame { - msec: 5856 - hash: "25cac33299d58cdd7775e8b75410085e" - } - Frame { - msec: 5872 - hash: "5d81833eb342f632945c0571e18cb1f9" - } - Frame { - msec: 5888 - hash: "23f6f2a7d971494af43a0fb97dbf8fb5" - } - Frame { - msec: 5904 - hash: "216b70d02a4685dc07258454bb4e7c85" - } - Frame { - msec: 5920 - hash: "1e06742af58d6e63facdc599c46e11b1" - } - Frame { - msec: 5936 - hash: "00f8ac72d3794ed8d66db987402ecde0" - } - Frame { - msec: 5952 - hash: "42ab5f162acba94f563823f5be1e37d2" - } - Frame { - msec: 5968 - hash: "3272b97fdc54eb9f3590e7bbe4ac457d" - } - Frame { - msec: 5984 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6000 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6016 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6032 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6048 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6064 - hash: "3272b97fdc54eb9f3590e7bbe4ac457d" - } - Frame { - msec: 6080 - hash: "42ab5f162acba94f563823f5be1e37d2" - } - Frame { - msec: 6096 - hash: "00f8ac72d3794ed8d66db987402ecde0" - } - Frame { - msec: 6112 - hash: "1e06742af58d6e63facdc599c46e11b1" - } - Frame { - msec: 6128 - hash: "216b70d02a4685dc07258454bb4e7c85" - } - Frame { - msec: 6144 - hash: "23f6f2a7d971494af43a0fb97dbf8fb5" - } - Frame { - msec: 6160 - hash: "5d81833eb342f632945c0571e18cb1f9" - } - Frame { - msec: 6176 - hash: "25cac33299d58cdd7775e8b75410085e" - } - Frame { - msec: 6192 - hash: "a1fbc3333b7f742a8336a6fcbad156c9" - } - Frame { - msec: 6208 - hash: "2ed12d49d72884160ebbf6b6d0e15a9d" - } - Frame { - msec: 6224 - hash: "da6717c94b46ad7a647c445c06314b0d" - } - Frame { - msec: 6240 - hash: "02e0646024aeef6f01b7541b15267baa" - } - Frame { - msec: 6256 - hash: "a6d8708d08bedf0cab5230d6f2936936" - } - Frame { - msec: 6272 - hash: "68d459091a85f24ece39a207e395039b" - } - Frame { - msec: 6288 - hash: "0b43af73d91a500ccdf27b4347b9bc47" - } - Frame { - msec: 6304 - hash: "478126aeef5ddae9c0a77d08294cf3f2" - } - Frame { - msec: 6320 - hash: "675043ddde6ed65a3ec4ed093be1e760" - } - Frame { - msec: 6336 - hash: "12b84aa02dbbab3592d3eb3cb6884b41" - } - Frame { - msec: 6352 - hash: "8c2ebcd80e26ac7b9d25be486f54c4ce" - } - Frame { - msec: 6368 - hash: "ac705840cc94eb4af7a52d62649d0157" - } - Frame { - msec: 6384 - hash: "5cb1ae6d86aafdf11284480c81b939dc" - } - Frame { - msec: 6400 - hash: "ac2b714b5f32d2b911f31690d7082dc1" - } - Frame { - msec: 6416 - hash: "7135a6a7999e82cb81e39228805332ee" - } - Frame { - msec: 6432 - hash: "7507a3d2158d4cc68454c85922526871" - } - Frame { - msec: 6448 - hash: "205cafcabb29b78a6db3dcaf44a74ab6" - } - Frame { - msec: 6464 - hash: "a1efa0d424d568d338c6db9fc095c2fb" - } - Frame { - msec: 6480 - hash: "8a4d76ae60f5d720a382cced2f6a2b5e" - } - Frame { - msec: 6496 - hash: "c73fe137644cbc006d0b5274b72faa46" - } - Frame { - msec: 6512 - hash: "29d80ae32451c24b655c4d1fd01d3aa1" - } - Frame { - msec: 6528 - hash: "90af75eeef63ae67e9f6ff1a61d7cca3" - } - Frame { - msec: 6544 - hash: "b9dcdd88fba70636cbcae160edcc0136" - } - Frame { - msec: 6560 - hash: "679ee2b26a118ab53a84fa116de09edf" - } - Frame { - msec: 6576 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Frame { - msec: 6592 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Frame { - msec: 6608 - hash: "23edee3af8f1904558863d37c520555a" - } - Frame { - msec: 6624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 6640 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 6656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 6672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 271; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "680f51f63c4b11a247a668eb7bbd2b62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "bfc1b03df244839a012e8302dc07764f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "de09380dd57c58ae99fbdba169a19975" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "4220dde85eb1c027366efd0798927e8d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "512b9746ae4482557b8cef9f99905954" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 263; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 261; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "e7346d8f223684143a0940def878b874" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 259; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "7e7382302681cd29a2c6959a3a704660" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "ef8f7dfdd4e70100ecaecca4055d8f52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 250; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 243; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "f5cacabb78b88c31af1a1b1e6f60069b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "b016ef2306b0a721df86b6916e7953e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "a78e9b0b93569b77b0659c771336971a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6912 - hash: "b957ab07bcbaeffca963d9148130a965" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6928 - hash: "140bc4b078bac52d6903bdfdfc35a94c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6944 - hash: "047c3a7403ae88cceb7fc875793d1ed8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 172; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6960 - hash: "03d48446aaf94450a3a9a8f1e956493f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6976 - hash: "6672e47aa6a975fbd82d2fe5bc99bbaf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6992 - hash: "3bc73489d06e446d4c96117756a59227" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7008 - hash: "aed995a61df4a1c189ef2962000d02de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7024 - hash: "aed995a61df4a1c189ef2962000d02de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7040 - hash: "74f0bbe92a23146fbdbd365edd5741c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7056 - hash: "74f0bbe92a23146fbdbd365edd5741c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7072 - hash: "6456208c6367687b8dc701791eccd7d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "376b59dc6e00a51bc9f2d4cfa2718e57" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "fb7bc3401f70ce6eee131c9c7510e1fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7120 - hash: "675a419f0cd8351d6b2a65daf7d2707a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "2f7951abac64e0f10d3b66d04966b6e9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "1f8daa78c58ae11ec105bd87681c1762" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "23ab196ed43219c26d94431698f6ac8d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "9581e2695f4818e063ec032cb5bb6b7f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7200 - hash: "6752cd7c5383e0ccc9b08f79db6ac310" - } - Frame { - msec: 7216 - hash: "51f5675e0fb1410c5a8ec03a86b42681" - } - Frame { - msec: 7232 - hash: "c3c23213b2649b5ccabd8e420a251e00" - } - Frame { - msec: 7248 - hash: "02ceab31171fe983a10e862b53aea16f" - } - Frame { - msec: 7264 - hash: "8a774dda9a1bc16bd270724e570daf20" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7280 - hash: "2b6b892cebfcce14a9db485fecf16703" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "8b8e6d3362f018cbd9b487f03cfb7a22" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "a8477a9429633384073618cc60841e6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "59558c6665b73f02809259e039b4423a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "93540071bab8a970a929d209f628970e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "78cdb0a05583150ea33040d32d95de47" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "4b1ee34985d3f5b8dd4355678ad39af4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "5484e7699c388eabf0311de49706397f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "dee6c2380f398323002ebb43a38d27e8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "d66a27728e7fd3c616842613a034c5a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "5f851161f99fcf5b67cbe008a3faf411" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "013e949285cfa9edb34ab14e26753230" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "5b50acdcbd49969bcce2cfab6f9af380" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "d4aeb24211007cfc01512d289ae7aa01" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "6f1b7e12bbf54586e9a48989145f3274" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "0e09c7468bc03770c6cc7f0fba1ee9c0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "0fc4522bbf1a2e72002eb0a3c7224e1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "91727292aaa314bf263c618a577b7f74" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "a78fb2545d11c521a50a10fd2d1700a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "c207a291b47628921125acd4b8ed5ea8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7600 - hash: "9a8e3df504ba36e82c51d71a3f5ce268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "8cd9da94db91da50ae457d41866a32ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7632 - hash: "9e52b6fdc3ce4ad9c5986e47ffa762fc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "a1aff55bffb76bd4e2ac9ee482a03978" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7664 - hash: "ba52431b72683cfbf0cc795a2407630e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7696 - hash: "eb5a19fbfbdceef233ed3c86c782817c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7712 - hash: "7c8f3f2e96fa6a63867cb716061c8c77" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7728 - hash: "96b0007f857aa19b41d184a7c7931f69" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "96201712b9ffbd9bfbebb5a5b7e23aba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7760 - hash: "d75e13a7715d5c329a47fdb818dfdbe5" - } - Frame { - msec: 7776 - hash: "c8fa0c2d9e6aa1f3a33e76a31534359d" - } - Frame { - msec: 7792 - hash: "03b11cc517f84c58a681906fdda98347" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7808 - hash: "74cdf8af5d56216ad422951a56661536" - } - Frame { - msec: 7824 - hash: "fcac2575aad872eada547508f312f09c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "7d76aec1f29d2d6745585be8ef113be5" - } - Frame { - msec: 7856 - hash: "2b4fe4f39433671a9bc440efa1c589a8" - } - Frame { - msec: 7872 - hash: "55a166f920e76173e14121d848a11aa0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "f764df8ecd68161d3529800e922254f4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "749caf21947e915b163f72e6fd190032" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "c350910df8ae4fea573a20d334fd3401" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7936 - hash: "d177da450f1d380a6d2406e2393b9582" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7952 - hash: "bf3da78d7cac19daf2d5150b77840b1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7968 - hash: "22e337b0b81b18045a205355da6981ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7984 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8000 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8016 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Frame { - msec: 8032 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Frame { - msec: 8048 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8064 - hash: "22e337b0b81b18045a205355da6981ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "bf3da78d7cac19daf2d5150b77840b1e" - } - Frame { - msec: 8096 - hash: "d177da450f1d380a6d2406e2393b9582" - } - Frame { - msec: 8112 - hash: "c350910df8ae4fea573a20d334fd3401" - } - Frame { - msec: 8128 - hash: "749caf21947e915b163f72e6fd190032" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8144 - hash: "f764df8ecd68161d3529800e922254f4" - } - Frame { - msec: 8160 - hash: "55a166f920e76173e14121d848a11aa0" - } - Frame { - msec: 8176 - hash: "2b4fe4f39433671a9bc440efa1c589a8" - } - Frame { - msec: 8192 - hash: "7d76aec1f29d2d6745585be8ef113be5" - } - Frame { - msec: 8208 - hash: "fcac2575aad872eada547508f312f09c" - } - Frame { - msec: 8224 - hash: "74cdf8af5d56216ad422951a56661536" - } - Frame { - msec: 8240 - hash: "03b11cc517f84c58a681906fdda98347" - } - Frame { - msec: 8256 - hash: "c8fa0c2d9e6aa1f3a33e76a31534359d" - } - Frame { - msec: 8272 - hash: "d75e13a7715d5c329a47fdb818dfdbe5" - } - Frame { - msec: 8288 - hash: "96201712b9ffbd9bfbebb5a5b7e23aba" - } - Frame { - msec: 8304 - hash: "96b0007f857aa19b41d184a7c7931f69" - } - Frame { - msec: 8320 - hash: "bff5b731de7c93fa0cdcefbf99beeb5e" - } - Frame { - msec: 8336 - hash: "ce76704964873be1bc6a324d8a3381be" - } - Frame { - msec: 8352 - hash: "a31b4f2a3defc968098029328de9352d" - } - Frame { - msec: 8368 - hash: "295e3f40a511bd30e1c6599ead93619a" - } - Frame { - msec: 8384 - hash: "3cd74da8b04de8ec7446490dea0e4e6c" - } - Frame { - msec: 8400 - hash: "78a7db5a316609136d1b873d20d5dd3e" - } - Frame { - msec: 8416 - hash: "0f176fb11bfe26f872ef7103011df9e6" - } - Frame { - msec: 8432 - hash: "47866013e79bc77607e0c40bf8457bed" - } - Frame { - msec: 8448 - hash: "5f35467db5c5e0baf5caff90b97e2d0c" - } - Frame { - msec: 8464 - hash: "fefa89763cc1ad8323fdf37b1f5f63d3" - } - Frame { - msec: 8480 - hash: "b9823f88fa51944075ce6dedd695f097" - } - Frame { - msec: 8496 - hash: "72521de21fcc57d6ccf16350b0df8eee" - } - Frame { - msec: 8512 - hash: "fcd591a2e56ba5efa95b315b7bd10532" - } - Frame { - msec: 8528 - hash: "5d437d59995741030e0975829712f85d" - } - Frame { - msec: 8544 - hash: "e7189d174b181985b6aef10b8642726f" - } - Frame { - msec: 8560 - hash: "cefadbae14e573f6c83d07ffc3a5152e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 277; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 277; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "23edee3af8f1904558863d37c520555a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 8672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 8688 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 8704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 8720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 8736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 8752 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 8768 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 8784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 8800 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 8816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 8832 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 8848 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 8864 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 8880 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 8896 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 8912 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 8928 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 8944 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 8960 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 8976 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 8992 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9008 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9024 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9056 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9072 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 9088 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 9104 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 9120 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 9136 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 9152 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 9168 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 9184 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 9200 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 9216 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 9232 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 9248 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 9264 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 9280 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 9296 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 9312 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 9328 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 9344 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 9360 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 9376 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 9392 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 9408 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 9424 - hash: "23edee3af8f1904558863d37c520555a" + hash: "87ca0584879b25336a1023ac3252fc9a" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png Binary files differdeleted file mode 100644 index 2b45a06..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png Binary files differdeleted file mode 100644 index 1f5bae0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png Binary files differdeleted file mode 100644 index cb2b5a4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png Binary files differdeleted file mode 100644 index aa24805..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png Binary files differdeleted file mode 100644 index aa24805..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png Binary files differdeleted file mode 100644 index 87c2e07..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png +++ /dev/null diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml index 5d11403..83ec088 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml @@ -1,10 +1,11 @@ import QtQuick 1.0 +import "../shared" 1.0 -Item{ +Item { height: 50; width: 200 - Column{ + 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; passwordCharacter: '.' } - Text{ text: main.text } + TestTextInput { id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' } + TestText { text: main.text } } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml index 17e13fd..f36a752 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml @@ -1,38 +1,40 @@ import QtQuick 1.0 +import "../shared" 1.0 Item{ width:600; height:300; - Column{ - TextInput{ - text: "Jackdaws love my big sphinx of quartz"; + Column { + //Because they have auto width, these three should look the same + TestTextInput { + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignLeft; } - TextInput{ - text: "Jackdaws love my big sphinx of quartz"; + TestTextInput { + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignHCenter; } - TextInput{ - text: "Jackdaws love my big sphinx of quartz"; + TestTextInput { + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignRight; } Rectangle{ width: 600; height: 10; color: "pink" } - TextInput{ + TestTextInput { height: 30; width: 600; - text: "Jackdaws love my big sphinx of quartz"; + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignLeft; } - TextInput{ + TestTextInput { height: 30; width: 600; - text: "Jackdaws love my big sphinx of quartz"; + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignHCenter; } - TextInput{ + TestTextInput { height: 30; width: 600; - text: "Jackdaws love my big sphinx of quartz"; + text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignRight; } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml index 318af0f..758717e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml @@ -3,8 +3,8 @@ import QtQuick 1.0 Rectangle{ width: 600 height: 200 - Column{ - LineEdit{text: 'Hello world'} - LineEdit{text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;} + Column { + LineEdit {text: 'Hello world'} + LineEdit {text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;} } } |