1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
|
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.12
import QtTest 1.0
import QtQuick.Controls 2.12
TestCase {
id: testCase
width: 400
height: 400
visible: true
when: windowShown
name: "ScrollView"
Component {
id: signalSpy
SignalSpy { }
}
Component {
id: scrollView
ScrollView { }
}
Component {
id: scrollBarComponent
ScrollBar {}
}
Component {
id: scrollableLabel
ScrollView {
Label {
text: "ABC"
font.pixelSize: 512
}
}
}
Component {
id: scrollableLabels
ScrollView {
contentHeight: label1.implicitHeight + label2.implicitHeight + label3.implicitHeight
Label {
id: label1
text: "First"
font.pixelSize: 96
}
Label {
id: label2
text: "Second"
font.pixelSize: 96
}
Label {
id: label3
text: "Third"
font.pixelSize: 96
}
}
}
Component {
id: flickableLabel
ScrollView {
Flickable {
contentWidth: label.implicitWidth
contentHeight: label.implicitHeight
Label {
id: label
text: "ABC"
font.pixelSize: 512
}
}
}
}
Component {
id: emptyFlickable
ScrollView {
Flickable {
}
}
}
Component {
id: labelComponent
Label {
text: "ABC"
font.pixelSize: 512
}
}
Component {
id: scrollableListView
ScrollView {
ListView {
model: 3
delegate: Label {
text: modelData
}
}
}
}
Component {
id: scrollableFlickable
ScrollView {
Flickable {
Item {
width: 100
height: 100
}
}
}
}
Component {
id: scrollableWithContentSize
ScrollView {
contentWidth: 1000
contentHeight: 1000
Flickable {
}
}
}
Component {
id: scrollableAndFlicableWithContentSize
ScrollView {
contentWidth: 1000
contentHeight: 1000
Flickable {
contentWidth: 200
contentHeight: 200
}
}
}
Component {
id: scrollableTextArea
ScrollView {
TextArea {
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas id dignissim ipsum. Nam molestie nisl turpis."
wrapMode: TextArea.WordWrap
}
}
}
Component {
id: scrollableTextAreaWithSibling
ScrollView {
Item {
}
TextArea {
}
}
}
function test_scrollBars() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200})
verify(control)
var vertical = control.ScrollBar.vertical
verify(vertical)
var horizontal = control.ScrollBar.horizontal
verify(horizontal)
control.contentHeight = 400
verify(vertical.size > 0)
compare(control.contentItem.visibleArea.heightRatio, vertical.size)
control.contentWidth = 400
verify(horizontal.size > 0)
compare(control.contentItem.visibleArea.widthRatio, horizontal.size)
vertical.increase()
verify(vertical.position > 0)
compare(control.contentItem.visibleArea.yPosition, vertical.position)
horizontal.increase()
verify(horizontal.position > 0)
compare(control.contentItem.visibleArea.xPosition, horizontal.position)
}
function test_oneChild_data() {
return [
{ tag: "label", component: scrollableLabel },
{ tag: "flickable", component: flickableLabel }
]
}
function test_oneChild(data) {
var control = createTemporaryObject(data.component, testCase)
verify(control)
var flickable = control.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
var label = flickable.contentItem.children[0]
compare(label.text, "ABC")
compare(control.implicitWidth, label.implicitWidth)
compare(control.implicitHeight, label.implicitHeight)
compare(control.contentWidth, label.implicitWidth)
compare(control.contentHeight, label.implicitHeight)
compare(flickable.contentWidth, label.implicitWidth)
compare(flickable.contentHeight, label.implicitHeight)
control.contentWidth = 200
compare(control.implicitWidth, 200)
compare(control.contentWidth, 200)
compare(flickable.contentWidth, 200)
control.contentHeight = 100
compare(control.implicitHeight, 100)
compare(control.contentHeight, 100)
compare(flickable.contentHeight, 100)
}
function test_multipleChildren() {
var control = createTemporaryObject(scrollableLabels, testCase)
verify(control)
var flickable = control.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
compare(control.contentChildren, flickable.contentItem.children)
var label1 = control.contentChildren[0]
compare(label1.text, "First")
var label2 = control.contentChildren[1]
compare(label2.text, "Second")
var label3 = control.contentChildren[2]
compare(label3.text, "Third")
var expectedContentHeight = label1.implicitHeight + label2.implicitHeight + label3.implicitHeight
compare(control.contentHeight, expectedContentHeight)
compare(flickable.contentHeight, expectedContentHeight)
}
function test_listView() {
var control = createTemporaryObject(scrollableListView, testCase)
verify(control)
var listview = control.contentItem
verify(listview.hasOwnProperty("contentX"))
verify(listview.hasOwnProperty("contentY"))
verify(listview.hasOwnProperty("model"))
compare(control.contentWidth, listview.contentWidth)
compare(control.contentHeight, listview.contentHeight)
}
function test_scrollableFlickable() {
// Check that if the application adds a flickable as a child of a
// scrollview, the scrollview doesn't try to calculate and change
// the flickables contentWidth/Height based on the flickables
// children, even if the flickable has an empty or negative content
// size. Some flickables (e.g ListView) sets a negative
// contentWidth on purpose, which should be respected.
var scrollview = createTemporaryObject(scrollableFlickable, testCase)
verify(scrollview)
var flickable = scrollview.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
compare(flickable.contentWidth, -1)
compare(flickable.contentHeight, -1)
compare(scrollview.contentWidth, -1)
compare(scrollview.contentHeight, -1)
}
function test_scrollableWithContentSize() {
// Check that if the scrollview has contentWidth/Height set, but
// not the flickable, then those values will be forwarded and used
// by the flickable (rather than trying to calculate the content size
// based on the flickables children).
var scrollview = createTemporaryObject(scrollableWithContentSize, testCase)
verify(scrollview)
var flickable = scrollview.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
compare(flickable.contentWidth, 1000)
compare(flickable.contentHeight, 1000)
compare(scrollview.contentWidth, 1000)
compare(scrollview.contentHeight, 1000)
}
function test_scrollableAndFlickableWithContentSize() {
// Check that if both the scrollview and the flickable has
// contentWidth/Height set (which is an inconsistency/fault
// by the app), the content size of the scrollview wins.
var scrollview = createTemporaryObject(scrollableAndFlicableWithContentSize, testCase)
verify(scrollview)
var flickable = scrollview.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
compare(flickable.contentWidth, 1000)
compare(flickable.contentHeight, 1000)
compare(scrollview.contentWidth, 1000)
compare(scrollview.contentHeight, 1000)
}
function test_flickableWithExplicitContentSize() {
var control = createTemporaryObject(emptyFlickable, testCase)
verify(control)
var flickable = control.contentItem
verify(flickable.hasOwnProperty("contentX"))
verify(flickable.hasOwnProperty("contentY"))
var flickableContentSize = 1000;
flickable.contentWidth = flickableContentSize;
flickable.contentHeight = flickableContentSize;
compare(flickable.contentWidth, flickableContentSize)
compare(flickable.contentHeight, flickableContentSize)
compare(control.implicitWidth, flickableContentSize)
compare(control.implicitHeight, flickableContentSize)
compare(control.contentWidth, flickableContentSize)
compare(control.contentHeight, flickableContentSize)
// Add a single child to the flickable. This should not
// trick ScrollView into taking the implicit size of
// the child as content size, since the flickable
// already has an explicit content size.
labelComponent.createObject(flickable);
compare(flickable.contentWidth, flickableContentSize)
compare(flickable.contentHeight, flickableContentSize)
compare(control.implicitWidth, flickableContentSize)
compare(control.implicitHeight, flickableContentSize)
compare(control.contentWidth, flickableContentSize)
compare(control.contentHeight, flickableContentSize)
}
function test_mouse() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200, contentHeight: 400})
verify(control)
mousePress(control, control.width / 2, control.height / 2, Qt.LeftButton)
compare(control.contentItem.contentY, 0)
for (var y = control.height / 2; y >= 0; --y) {
mouseMove(control, control.width / 2, y, 10)
compare(control.contentItem.contentY, 0)
}
mouseRelease(control, control.width / 2, 0, Qt.LeftButton)
compare(control.contentItem.contentY, 0)
}
function test_hover() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200, contentHeight: 400})
verify(control)
var vertical = control.ScrollBar.vertical
verify(vertical)
vertical.hoverEnabled = true
mouseMove(vertical, vertical.width / 2, vertical.height / 2)
compare(vertical.visible, true)
compare(vertical.hovered, true)
compare(vertical.active, true)
compare(vertical.interactive, true)
}
function test_wheel() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200, contentHeight: 400})
verify(control)
var vertical = control.ScrollBar.vertical
verify(vertical)
mouseWheel(control, control.width / 2, control.height / 2, 0, -120)
compare(vertical.visible, true)
compare(vertical.active, true)
compare(vertical.interactive, true)
}
function test_touch() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200, contentHeight: 400})
verify(control)
var vertical = control.ScrollBar.vertical
verify(vertical)
var touch = touchEvent(control)
touch.press(0, control, control.width / 2, control.height / 2).commit()
compare(control.contentItem.contentY, 0)
compare(vertical.active, false)
compare(vertical.interactive, false)
var maxContentY = 0
for (var y = control.height / 2; y >= 0; --y) {
touch.move(0, control, control.width / 2, y).commit()
maxContentY = Math.max(maxContentY, control.contentItem.contentY)
}
verify(maxContentY > 0)
compare(vertical.active, true)
compare(vertical.interactive, false)
touch.release(0, control, control.width / 2, 0).commit()
}
function test_keys() {
var control = createTemporaryObject(scrollView, testCase, {width: 200, height: 200, contentWidth: 400, contentHeight: 400})
verify(control)
control.forceActiveFocus()
verify(control.activeFocus)
var vertical = control.ScrollBar.vertical
verify(vertical)
compare(vertical.position, 0.0)
for (var i = 1; i <= 10; ++i) {
keyClick(Qt.Key_Down)
compare(vertical.position, Math.min(0.5, i * 0.1))
}
compare(vertical.position, 0.5)
for (i = 1; i <= 10; ++i) {
keyClick(Qt.Key_Up)
compare(vertical.position, Math.max(0.0, 0.5 - i * 0.1))
}
compare(vertical.position, 0.0)
var horizontal = control.ScrollBar.horizontal
verify(horizontal)
compare(horizontal.position, 0.0)
for (i = 1; i <= 10; ++i) {
keyClick(Qt.Key_Right)
compare(horizontal.position, Math.min(0.5, i * 0.1))
}
compare(horizontal.position, 0.5)
for (i = 1; i <= 10; ++i) {
keyClick(Qt.Key_Left)
compare(horizontal.position, Math.max(0.0, 0.5 - i * 0.1))
}
compare(horizontal.position, 0.0)
}
function test_textArea() {
// TODO: verify no binding loop warnings (QTBUG-62325)
var control = createTemporaryObject(scrollableTextArea, testCase)
verify(control)
var flickable = control.contentItem
verify(flickable && flickable.hasOwnProperty("contentX"))
var textArea = flickable.contentItem.children[0]
verify(textArea && textArea.hasOwnProperty("text"))
compare(control.contentWidth, flickable.contentWidth)
compare(control.contentHeight, flickable.contentHeight)
}
function test_textAreaWithSibling() {
// Checks that it does not crash when the ScrollView is deleted
var control = createTemporaryObject(scrollableTextAreaWithSibling, testCase)
verify(control)
}
Component {
id: zeroSizedContentItemComponent
ScrollView {
width: 100
height: 100
contentItem: Item {}
}
}
function test_zeroSizedContentItem() {
ignoreWarning(/ScrollView only supports Flickable types as its contentItem/)
let control = createTemporaryObject(zeroSizedContentItemComponent, testCase)
verify(control)
let verticalScrollBar = control.ScrollBar.vertical
verify(verticalScrollBar)
// Scrolling a ScrollView with a zero-sized contentItem shouldn't crash.
mouseDrag(verticalScrollBar, verticalScrollBar.width / 2, verticalScrollBar.height / 2, 0, 50)
let horizontalScrollBar = control.ScrollBar.horizontal
verify(verticalScrollBar)
mouseDrag(horizontalScrollBar, horizontalScrollBar.width / 2, horizontalScrollBar.height / 2, 50, 0)
}
function test_customScrollBars() {
let control = createTemporaryObject(scrollView, testCase)
verify(control)
control.ScrollBar.vertical.objectName = "oldVerticalScrollBar"
control.ScrollBar.horizontal.objectName = "oldHorizontalScrollBar"
let oldVerticalScrollBar = control.ScrollBar.vertical
verify(oldVerticalScrollBar)
compare(oldVerticalScrollBar.objectName, "oldVerticalScrollBar")
let oldHorizontalScrollBar = control.ScrollBar.horizontal
verify(oldHorizontalScrollBar)
compare(oldHorizontalScrollBar.objectName, "oldHorizontalScrollBar")
// Create the new scroll bars imperatively so that we can easily access the old ones.
control.ScrollBar.vertical = scrollBarComponent.createObject(control, { objectName: "newVerticalScrollBar" })
verify(control.ScrollBar.vertical)
let newVerticalScrollBar = findChild(control, "newVerticalScrollBar")
verify(newVerticalScrollBar)
verify(newVerticalScrollBar.visible)
verify(!oldVerticalScrollBar.visible)
control.ScrollBar.horizontal = scrollBarComponent.createObject(control, { objectName: "newHorizontalScrollBar" })
verify(control.ScrollBar.horizontal)
let newHorizontalScrollBar = findChild(control, "newHorizontalScrollBar")
verify(newHorizontalScrollBar)
verify(newHorizontalScrollBar.visible)
verify(!oldHorizontalScrollBar.visible)
}
Component {
id: bindingToContentItemAndStandaloneFlickable
Item {
width: 200
height: 200
property alias scrollView: scrollView
ScrollView {
id: scrollView
anchors.fill: parent
contentItem: listView
property Item someBinding: contentItem
}
ListView {
id: listView
model: 10
delegate: ItemDelegate {
text: modelData
width: listView.width
}
}
}
}
// Tests that scroll bars show up for a ScrollView where
// - its contentItem is declared as a standalone, separate item
// - there is a binding to contentItem (which causes a default Flickable to be created)
function test_bindingToContentItemAndStandaloneFlickable() {
let root = createTemporaryObject(bindingToContentItemAndStandaloneFlickable, testCase)
verify(root)
let control = root.scrollView
let verticalScrollBar = control.ScrollBar.vertical
let horizontalScrollBar = control.ScrollBar.horizontal
compare(verticalScrollBar.parent, control)
compare(horizontalScrollBar.parent, control)
verify(verticalScrollBar.visible)
verify(horizontalScrollBar.visible)
mouseDrag(verticalScrollBar, verticalScrollBar.width / 2, verticalScrollBar.height / 2, 0, 50)
verify(verticalScrollBar.active)
verify(horizontalScrollBar.active)
}
}
|