summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview_2.cpp
blob: 0218c6713f84110477d0df61013f65cec1c01f4f (plain)
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
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <QtCore/QSize>
#include <QtCore/QRectF>
#include <QtGui/QTransform>
#include <QtGui/QGuiApplication>
#include <QtGui/QScreen>

Q_DECLARE_METATYPE(QList<int>)
Q_DECLARE_METATYPE(QList<QRectF>)
Q_DECLARE_METATYPE(QMatrix)
Q_DECLARE_METATYPE(QPainterPath)
Q_DECLARE_METATYPE(QPointF)
Q_DECLARE_METATYPE(QRectF)
Q_DECLARE_METATYPE(Qt::ScrollBarPolicy)

static void _scrollBarRanges_data_1(int offset)
{    
    // No motif, flat frame
    QTest::newRow("1") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << 0 << 0 << 0 << false << false;
    QTest::newRow("2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << (50 + offset) << 0 << offset  << false << false;
    QTest::newRow("3") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << (50 + offset) << 0 << (100 + offset) << false << false;
    QTest::newRow("4") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << 0 << 0 << 0 << false << false;
    QTest::newRow("5") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << -100 << (offset -50) << -100 << (-100 + offset) << false << false;
    QTest::newRow("6") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << -100 << (offset -50) << -100 << offset << false << false;
    QTest::newRow("7") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << (offset + 1)  << 0 << offset + 1 << false << false;
    QTest::newRow("8") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << (50 + offset + 1) << 0 << offset + 1 << false << false;
    QTest::newRow("9") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                       << 0 << (50 + offset + 1) << 0 << (100 + offset + 1) << false << false;
    QTest::newRow("10") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << -101 << (-100 + offset) << -101 << (-100 + offset) << false << false;
    QTest::newRow("11") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << (-101) << (offset + -50) << -101 << (-100 + offset) << false << false;
    QTest::newRow("12") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << (-101) << (offset -50) << (-101) << offset << false << false;
    QTest::newRow("13") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << 0 << (offset + 16) << 0 << (offset + 16) << false << false;
    QTest::newRow("14") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << 0 << (50 + offset + 16) << 0 << (offset + 16) << false << false;
    QTest::newRow("15") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << 0 << (50 + offset + 16) << 0 << (100 + offset + 16) << false << false;
    QTest::newRow("16") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << (-100 - 16) << (-100 + offset) << (-100 - 16 ) << (-100 + offset) << false << false;
    QTest::newRow("17") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << (-100 - 16) << (offset -50) << (-100 - 16) << (-100 + offset) << false << false;
    QTest::newRow("18") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                        << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                        << (-100 - 16) << (offset -50) << (-100 - 16) << offset << false << false;
    QTest::newRow("1 x2") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << 0 << (150 + offset) << 0 << (100 + offset) << false << false;
    QTest::newRow("2 x2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << 0 << (250 + offset) << 0 << (100 + offset) << false << false;
    QTest::newRow("3 x2") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << 0 << (250 + offset) << 0 << (300 + offset) << false << false;
    QTest::newRow("4 x2") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << -200 << (-50 + offset) << -200 << (-100 + offset) << false << false;
    QTest::newRow("5 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << -200 << (50 + offset) << -200 << (-100 + offset) << false << false;
    QTest::newRow("6 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                          << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                          << -200 << (50 + offset) << -200 << (100 + offset) << false << false;
    QTest::newRow("1 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 0 << 0 << 0 << false << false;
    QTest::newRow("2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 50 << 0 << 0 << false << false;
    QTest::newRow("3 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 50 << 0 << 100 << false << false;
    QTest::newRow("4 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 0 << 0 << 0 << false << false;
    QTest::newRow("5 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << -100 << -50 << 0 << 0 << false << false;
    QTest::newRow("6 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << -100 << -50 << -100 << 0 << false << false;
    QTest::newRow("7 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 1 << 0 << 1 << false << false;
    QTest::newRow("8 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 51 << 0 << 1 << false << false;
    QTest::newRow("9 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                     << 0 << 51 << 0 << 101 << false << false;
    QTest::newRow("10 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << -101 << -100 << -101 << -100 << false << false;
    QTest::newRow("11 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << -101 << -50 << -101 << -100 << false << false;
    QTest::newRow("12 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << -101 << -50 << -101 << 0 << false << false;
    QTest::newRow("13 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << 0 << 16 << 0 << 16 << false << false;
    QTest::newRow("14 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << 0 << (50 + 16) << 0 << 16 << false << false;
    QTest::newRow("15 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << 0 << (50 + 16) << 0 << (100 + 16) << false << false;
    QTest::newRow("16 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << (-100 - 16) << -100 << (-100 - 16) << -100 << false << false;
    QTest::newRow("17 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << (-100 - 16) << -50 << (-100 - 16) << -100 << false << false;
    QTest::newRow("18 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                      << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                      << (-100 - 16) << -50 << (-100 - 16) << 0 << false << false;
    QTest::newRow("1 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << 0 << 150 << 0 << 100 << false << false;
    QTest::newRow("2 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << 0 << 250 << 0 << 100 << false << false;
    QTest::newRow("3 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << 0 << 250 << 0 << 300 << false << false;
    QTest::newRow("4 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << -200 << -50 << -200 << -100 << false << false;
    QTest::newRow("5 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << -200 << 50 << -200 << -100 << false << false;
    QTest::newRow("6 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                        << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                        << -200 << 50 << -200 << 100 << false << false;
    QTest::newRow("1 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << 16 << 0 << 16 << false << false;
    QTest::newRow("2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << (50 + 16) << 0 << 16 << false << false;
    QTest::newRow("3 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << (50 + 16) << 0 << (100 + 16) << false << false;
    QTest::newRow("4 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << -100 << (-100 + 16) << -100 << (-100 + 16) << false << false;
    QTest::newRow("5 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << -100 << (16-50) << -100 << (-100 + 16) << false << false;
    QTest::newRow("6 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << -100 << (16-50) << -100 << 16 << false << false;
    QTest::newRow("7 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << 17 << 0 << 17 << false << false;
    QTest::newRow("8 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << (17+50) << 0 << 17 << false << false;
    QTest::newRow("9 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                         << 0 << 67 << 0 << 117 << false << false;
    QTest::newRow("10 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << -101 << (-100 + 16) << -101 << (-100 + 16) << false << false;
    QTest::newRow("11 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << -101 << (16-50) << -101 << (-100 + 16) << false << false;
    QTest::newRow("12 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << -101 << (16-50) << -101 << 16 << false << false;
    QTest::newRow("13 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << 0 << 32 << 0 << 32 << false << false;
    QTest::newRow("14 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << 0 << (50 + 32) << 0 << 32 << false << false;
    QTest::newRow("15 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << 0 << (50 + 32) << 0 << (100 + 32) << false << false;
    QTest::newRow("16 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << (-100 - 16) << (-100 + 16) << (-100 - 16) << (-100 + 16) << false << false;
    QTest::newRow("17 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << (-100 - 16) << (16-50) << (-100 - 16) << (-100 + 16) << false << false;
    QTest::newRow("18 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                          << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                          << (-100 - 16) << (16-50) << (-100 - 16) << 16 << false << false;
    QTest::newRow("1 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << 0 << (150 + 16) << 0 << (100 + 16) << false << false;
    QTest::newRow("2 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << 0 << (250 + 16) << 0 << (100 + 16) << false << false;
    QTest::newRow("3 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << 0 << (250 + 16) << 0 << (300 + 16) << false << false;
    QTest::newRow("4 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << -200 << (-50 + 16) << -200 << (-100 + 16) << false << false;
    QTest::newRow("5 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << -200 << (50 + 16) << -200 << (-100 + 16) << false << false;
    QTest::newRow("6 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                            << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                            << -200 << (50 + 16) << -200 << (100 + 16) << false << false;
}

static void _scrollBarRangesMotif_data_1(int offset)
{
    // Motif, flat frame
    QTest::newRow("Motif, 1") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << 0 << 0 << 0 << true << false;
    QTest::newRow("Motif, 2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << (50 + offset) << 0 << offset << true << false;
    QTest::newRow("Motif, 3") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << (50 + offset) << 0 << (100 + offset) << true << false;
    QTest::newRow("Motif, 4") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << 0 << 0 << 0 << true << false;
    QTest::newRow("Motif, 5") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << -100 << (offset-50) << -100 << (-100 + offset) << true << false;
    QTest::newRow("Motif, 6") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << -100 << (offset-50) << -100 << offset << true << false;
    QTest::newRow("Motif, 7") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << offset + 1 << 0 << offset + 1 << true << false;
    QTest::newRow("Motif, 8") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << (50 + offset + 1) << 0 << offset + 1 << true << false;
    QTest::newRow("Motif, 9") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                              << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                              << 0 << (50 + offset + 1) << 0 << (100 + offset + 1) << true << false;
    QTest::newRow("Motif, 10") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << -101 << (-100 + offset) << -101 << (-100 + offset) << true << false;
    QTest::newRow("Motif, 11") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << (-101) << (offset-50) << -101 << (-100 + offset) << true << false;
    QTest::newRow("Motif, 12") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << (-101) << (offset-50) << (-101) << offset << true << false;
    QTest::newRow("Motif, 13") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (offset + 16) << 0 << (offset + 16) << true << false;
    QTest::newRow("Motif, 14") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset + 16) << 0 << (offset + 16) << true << false;
    QTest::newRow("Motif, 15") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset + 16) << 0 << (100 + offset + 16) << true << false;
    QTest::newRow("Motif, 16") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << (-100 - 16) << (-100 + offset) << (-100 - 16) << (-100 + offset) << true << false;
    QTest::newRow("Motif, 17") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << (-100 - 16) << (offset-50) << (-100 - 16) << (-100 + offset) << true << false;
    QTest::newRow("Motif, 18") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << (-100 - 16) << (offset-50) << (-100 - 16) << offset << true << false;
    QTest::newRow("Motif, 1 x2") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << 0 << (150 + offset) << 0 << (100 + offset) << true << false;
    QTest::newRow("Motif, 2 x2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << 0 << (250 + offset) << 0 << (100 + offset) << true << false;
    QTest::newRow("Motif, 3 x2") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << 0 << (250 + offset) << 0 << (300 + offset) << true << false;
    QTest::newRow("Motif, 4 x2") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << -200 << (-50 + offset) << -200 << (-100 + offset) << true << false;
    QTest::newRow("Motif, 5 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << -200 << (50 + offset) << -200 << (-100 + offset) << true << false;
    QTest::newRow("Motif, 6 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                 << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                 << -200 << (50 + offset) << -200 << (100 + offset) << true << false;
    QTest::newRow("Motif, 1 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 0 << 0 << 0 << true << false;
    QTest::newRow("Motif, 2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 50 << 0 << 0 << true << false;
    QTest::newRow("Motif, 3 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 50 << 0 << 100 << true << false;
    QTest::newRow("Motif, 4 No ScrollBars") << QSize(100, 100) << QRectF(-100, -100, 100, 100) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 0 << 0 << 0 << true << false;
    QTest::newRow("Motif, 5 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << -100 << -50 << 0 << 0 << true << false;
    QTest::newRow("Motif, 6 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << -100 << -50 << -100 << 0 << true << false;
    QTest::newRow("Motif, 7 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 1 << 0 << 1 << true << false;
    QTest::newRow("Motif, 8 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 51 << 0 << 1 << true << false;
    QTest::newRow("Motif, 9 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                            << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                            << 0 << 51 << 0 << 101 << true << false;
    QTest::newRow("Motif, 10 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << -101 << -100 << -101 << -100 << true << false;
    QTest::newRow("Motif, 11 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << -101 << -50 << -101 << -100 << true << false;
    QTest::newRow("Motif, 12 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << -101 << -50 << -101 << 0 << true << false;
    QTest::newRow("Motif, 13 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 16 << 0 << 16 << true << false;
    QTest::newRow("Motif, 14 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << (50 + 16) << 0 << 16 << true << false;
    QTest::newRow("Motif, 15 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << (50 + 16) << 0 << (100 + 16) << true << false;
    QTest::newRow("Motif, 16 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << (-100 - 16) << -100 << (-100 - 16) << -100 << true << false;
    QTest::newRow("Motif, 17 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << (-100 - 16) << -50 << (-100 - 16) << -100 << true << false;
    QTest::newRow("Motif, 18 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << (-100 - 16) << -50 << (-100 - 16) << 0 << true << false;
    QTest::newRow("Motif, 1 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << 0 << 150 << 0 << 100 << true << false;
    QTest::newRow("Motif, 2 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << 0 << 250 << 0 << 100 << true << false;
    QTest::newRow("Motif, 3 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << 0 << 250 << 0 << 300 << true << false;
    QTest::newRow("Motif, 4 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << -200 << -50 << -200 << -100 << true << false;
    QTest::newRow("Motif, 5 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << -200 << 50 << -200 << -100 << true << false;
    QTest::newRow("Motif, 6 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                               << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                               << -200 << 50 << -200 << 100 << true << false;
    QTest::newRow("Motif, 1 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << 16 << 0 << 16 << true << false;
    QTest::newRow("Motif, 2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << (50 + 16) << 0 << 16 << true << false;
    QTest::newRow("Motif, 3 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << (50 + 16) << 0 << (100 + 16) << true << false;
    QTest::newRow("Motif, 4 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << -100 << (-100 + 16) << -100 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 5 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << -100 << (16-50) << -100 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 6 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << -100 << (16-50) << -100 << 16 << true << false;
    QTest::newRow("Motif, 7 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << 17 << 0 << 17 << true << false;
    QTest::newRow("Motif, 8 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << (117-50) << 0 << 17 << true << false;
    QTest::newRow("Motif, 9 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                                << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                << 0 << (117-50) << 0 << 117 << true << false;
    QTest::newRow("Motif, 10 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -101 << (-100 + 16) << -101 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 11 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -101 << (16-50) << -101 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 12 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -101 << (16-50) << -101 << 16 << true << false;
    QTest::newRow("Motif, 13 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << 32 << 0 << 32 << true << false;
    QTest::newRow("Motif, 14 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (50 + 32) << 0 << 32 << true << false;
    QTest::newRow("Motif, 15 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (50 + 32) << 0 << (100 + 32) << true << false;
    QTest::newRow("Motif, 16 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << (-100 - 16) << (-100 + 16) << (-100 - 16) << (-100 + 16) << true << false;
    QTest::newRow("Motif, 17 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << (-100 - 16) << (16-50) << (-100 - 16) << (-100 + 16) << true << false;
    QTest::newRow("Motif, 18 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << (-100 - 16) << (16-50) << (-100 - 16) << 16 << true << false;
    QTest::newRow("Motif, 1 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << 0 << (150 + 16) << 0 << (100 + 16) << true << false;
    QTest::newRow("Motif, 2 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << 0 << (250 + 16) << 0 << (100 + 16) << true << false;
    QTest::newRow("Motif, 3 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << 0 << (250 + 16) << 0 << (300 + 16) << true << false;
    QTest::newRow("Motif, 4 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << -200 << (-50 + 16) << -200 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 5 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << -200 << (50 + 16) << -200 << (-100 + 16) << true << false;
    QTest::newRow("Motif, 6 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                                   << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                   << -200 << (50 + 16) << -200 << (100 + 16) << true << false;
}

static void _scrollBarRanges_data_2(int offset)
{
    // No motif, styled panel
    QTest::newRow("Styled, 1") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << 0 << 0 << 0 << false << true;
    QTest::newRow("Styled, 2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset) << 0 << offset << false << true;
    QTest::newRow("Styled, 3") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset) << 0 << (100 + offset) << false << true;
    QTest::newRow("Styled, 4") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << 0 << 0 << 0 << false << true;
    QTest::newRow("Styled, 5") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << -100 << (offset-50) << -100 << (-100 + offset) << false << true;
    QTest::newRow("Styled, 6") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << -100 << (offset-50) << -100 << offset << false << true;
    QTest::newRow("Styled, 7") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << offset + 1 << 0 << offset + 1 << false << true;
    QTest::newRow("Styled, 8") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset + 1) << 0 << offset + 1 << false << true;
    QTest::newRow("Styled, 9") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                               << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                               << 0 << (50 + offset + 1) << 0 << (100 + offset + 1) << false << true;
    QTest::newRow("Styled, 10") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << -101 << (-100 + offset) << -101 << (-100 + offset) << false << true;
    QTest::newRow("Styled, 11") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << (-101) << (offset-50) << -101 << (-100 + offset) << false << true;
    QTest::newRow("Styled, 12") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << (-101) << (offset-50) << (-101) << offset << false << true;
    QTest::newRow("Styled, 13") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << 0 << (offset + 16) << 0 << (offset + 16) << false << true;
    QTest::newRow("Styled, 14") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << 0 << (50 + offset + 16) << 0 << (offset + 16) << false << true;
    QTest::newRow("Styled, 15") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << 0 << (50 + offset + 16) << 0 << (100 + offset + 16) << false << true;
    QTest::newRow("Styled, 16") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << (-100 - 16) << (-100 + offset) << (-100 - 16) << (-100 + offset) << false << true;
    QTest::newRow("Styled, 17") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << (-100 - 16) << (offset-50) << (-100 - 16) << (-100 + offset) << false << true;
    QTest::newRow("Styled, 18") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                << (-100 - 16) << (offset-50) << (-100 - 16) << offset << false << true;
    QTest::newRow("Styled, 1 x2") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << 0 << (150 + offset) << 0 << (100 + offset) << false << true;
    QTest::newRow("Styled, 2 x2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << 0 << (250 + offset) << 0 << (100 + offset) << false << true;
    QTest::newRow("Styled, 3 x2") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << 0 << (250 + offset) << 0 << (300 + offset) << false << true;
    QTest::newRow("Styled, 4 x2") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << -200 << (-50 + offset) << -200 << (-100 + offset) << false << true;
    QTest::newRow("Styled, 5 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << -200 << (50 + offset) << -200 << (-100 + offset) << false << true;
    QTest::newRow("Styled, 6 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                  << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                  << -200 << (50 + offset) << -200 << (100 + offset) << false << true;
    QTest::newRow("Styled, 1 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 0 << 0 << 0 << false << true;
    QTest::newRow("Styled, 2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 50 << 0 << 0 << false << true;
    QTest::newRow("Styled, 3 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 50 << 0 << 100 << false << true;
    QTest::newRow("Styled, 4 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 0 << 0 << 0 << false << true;
    QTest::newRow("Styled, 5 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << -100 << -50 << 0 << 0 << false << true;
    QTest::newRow("Styled, 6 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << -100 << -50 << -100 << 0 << false << true;
    QTest::newRow("Styled, 7 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 1 << 0 << 1 << false << true;
    QTest::newRow("Styled, 8 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 51 << 0 << 1 << false << true;
    QTest::newRow("Styled, 9 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                             << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                             << 0 << 51 << 0 << 101 << false << true;
    QTest::newRow("Styled, 10 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << -101 << -100 << -101 << -100 << false << true;
    QTest::newRow("Styled, 11 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << -101 << -50 << -101 << -100 << false << true;
    QTest::newRow("Styled, 12 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << -101 << -50 << -101 << 0 << false << true;
    QTest::newRow("Styled, 13 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << 0 << 16 << 0 << 16 << false << true;
    QTest::newRow("Styled, 14 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << 0 << (50 + 16) << 0 << 16 << false << true;
    QTest::newRow("Styled, 15 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << 0 << (50 + 16) << 0 << (100 + 16) << false << true;
    QTest::newRow("Styled, 16 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << (-100 - 16) << -100 << (-100 - 16) << -100 << false << true;
    QTest::newRow("Styled, 17 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << (-100 - 16) << -50 << (-100 - 16) << -100 << false << true;
    QTest::newRow("Styled, 18 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                              << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                              << (-100 - 16) << -50 << (-100 - 16) << 0 << false << true;
    QTest::newRow("Styled, 1 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << 0 << 150 << 0 << 100 << false << true;
    QTest::newRow("Styled, 2 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << 0 << 250 << 0 << 100 << false << true;
    QTest::newRow("Styled, 3 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << 0 << 250 << 0 << 300 << false << true;
    QTest::newRow("Styled, 4 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << -200 << -50 << -200 << -100 << false << true;
    QTest::newRow("Styled, 5 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << -200 << 50 << -200 << -100 << false << true;
    QTest::newRow("Styled, 6 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                                << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                << -200 << 50 << -200 << 100 << false << true;
    QTest::newRow("Styled, 1 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << 16 << 0 << 16 << false << true;
    QTest::newRow("Styled, 2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (50 + 16) << 0 << 16 << false << true;
    QTest::newRow("Styled, 3 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (50 + 16) << 0 << (100 + 16) << false << true;
    QTest::newRow("Styled, 4 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -100 << (-100 + 16) << -100 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 5 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -100 << (16-50) << -100 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 6 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << -100 << (16-50) << -100 << 16 << false << true;
    QTest::newRow("Styled, 7 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << 17 << 0 << 17 << false << true;
    QTest::newRow("Styled, 8 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (117-50) << 0 << 17 << false << true;
    QTest::newRow("Styled, 9 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                                 << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                 << 0 << (117-50) << 0 << 117 << false << true;
    QTest::newRow("Styled, 10 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << -101 << (-100 + 16) << -101 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 11 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << -101 << (16-50) << -101 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 12 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << -101 << (16-50) << -101 << 16 << false << true;
    QTest::newRow("Styled, 13 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << 0 << 32 << 0 << 32 << false << true;
    QTest::newRow("Styled, 14 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << 0 << (50 + 32) << 0 << 32 << false << true;
    QTest::newRow("Styled, 15 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << 0 << (50 + 32) << 0 << (100 + 32) << false << true;
    QTest::newRow("Styled, 16 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << (-100 - 16) << (-100 + 16) << (-100 - 16) << (-100 + 16) << false << true;
    QTest::newRow("Styled, 17 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << (-100 - 16) << (16-50) << (-100 - 16) << (-100 + 16) << false << true;
    QTest::newRow("Styled, 18 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                                  << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                  << (-100 - 16) << (16-50) << (-100 - 16) << 16 << false << true;
    QTest::newRow("Styled, 1 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << 0 << (150 + 16) << 0 << (100 + 16) << false << true;
    QTest::newRow("Styled, 2 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << 0 << (250 + 16) << 0 << (100 + 16) << false << true;
    QTest::newRow("Styled, 3 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << 0 << (250 + 16) << 0 << (300 + 16) << false << true;
    QTest::newRow("Styled, 4 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << -200 << (-50 + 16) << -200 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 5 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << -200 << (50 + 16) << -200 << (-100 + 16) << false << true;
    QTest::newRow("Styled, 6 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                                    << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                    << -200 << (50 + 16) << -200 << (100 + 16) << false << true;
}

static void _scrollBarRangesMotif_data_2(int offset)
{
    // Motif, styled panel
    QTest::newRow("Motif, Styled, 1") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << 0 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << (50 + offset + 4) << 0 << (offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 3") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << (50 + offset + 4) << 0 << (100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 4") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << 0 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 5") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << -100 << (offset + 4 - 50) << -100 << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 6") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << -100 << (offset + 4 - 50) << -100 << (offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 7") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << (offset + 1 + 4) << 0 << (offset + 1 + 4) << true << true;
    QTest::newRow("Motif, Styled, 8") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << (50 + offset + 1 + 4) << 0 << (offset + 1 + 4) << true << true;
    QTest::newRow("Motif, Styled, 9") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                      << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                      << 0 << (50 + offset + 1 + 4) << 0 << (100 + offset + 1 + 4) << true << true;
    QTest::newRow("Motif, Styled, 10") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << -101 << (-100 + offset + 4) << -101 << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 11") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << (-101) << (offset + 4 - 50) << -101 << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 12") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << (-101) << (offset + 4 - 50) << (-101) << (offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 13") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << 0 << (offset + 16 + 4) << 0 << (offset + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 14") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << 0 << (50 + offset + 16 + 4) << 0 << (offset + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 15") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << 0 << (50 + offset + 16 + 4) << 0 << (100 + offset + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 16") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << (-100 - 16) << (-100 + offset + 4) << (-100 - 16) << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 17") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << (-100 - 16) << (offset + 4 - 50) << (-100 - 16) << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 18") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                       << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                       << (-100 - 16) << (offset + 4 - 50) << (-100 - 16) << (offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 1 x2") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << 0 << (150 + offset + 4) << 0 << (100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 2 x2") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << 0 << (250 + offset + 4) << 0 << (100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 3 x2") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << 0 << (250 + offset + 4) << 0 << (300 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 4 x2") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << -200 << (-50 + offset + 4) << -200 << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 5 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << -200 << (50 + offset + 4) << -200 << (-100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 6 x2") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                         << Qt::ScrollBarAsNeeded << Qt::ScrollBarAsNeeded
                                         << -200 << (50 + offset + 4) << -200 << (100 + offset + 4) << true << true;
    QTest::newRow("Motif, Styled, 1 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 0 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 50 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 3 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 50 << 0 << 100 << true << true;
    QTest::newRow("Motif, Styled, 4 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 0 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 5 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << -100 << -50 << 0 << 0 << true << true;
    QTest::newRow("Motif, Styled, 6 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << -100 << -50 << -100 << 0 << true << true;
    QTest::newRow("Motif, Styled, 7 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 1 << 0 << 1 << true << true;
    QTest::newRow("Motif, Styled, 8 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 51 << 0 << 1 << true << true;
    QTest::newRow("Motif, Styled, 9 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                                    << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                    << 0 << 51 << 0 << 101 << true << true;
    QTest::newRow("Motif, Styled, 10 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << -101 << -100 << -101 << -100 << true << true;
    QTest::newRow("Motif, Styled, 11 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << -101 << -50 << -101 << -100 << true << true;
    QTest::newRow("Motif, Styled, 12 No ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << -101 << -50 << -101 << 0 << true << true;
    QTest::newRow("Motif, Styled, 13 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << 0 << 16 << 0 << 16 << true << true;
    QTest::newRow("Motif, Styled, 14 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << 0 << (50 + 16) << 0 << 16 << true << true;
    QTest::newRow("Motif, Styled, 15 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << 0 << (50 + 16) << 0 << (100 + 16) << true << true;
    QTest::newRow("Motif, Styled, 16 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << (-100 - 16) << -100 << (-100 - 16) << -100 << true << true;
    QTest::newRow("Motif, Styled, 17 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << (-100 - 16) << -50 << (-100 - 16) << -100 << true << true;
    QTest::newRow("Motif, Styled, 18 No ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                                     << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                     << (-100 - 16) << -50 << (-100 - 16) << 0 << true << true;
    QTest::newRow("Motif, Styled, 1 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << 0 << 150 << 0 << 100 << true << true;
    QTest::newRow("Motif, Styled, 2 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << 0 << 250 << 0 << 100 << true << true;
    QTest::newRow("Motif, Styled, 3 x2 No ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << 0 << 250 << 0 << 300 << true << true;
    QTest::newRow("Motif, Styled, 4 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << -200 << -50 << -200 << -100 << true << true;
    QTest::newRow("Motif, Styled, 5 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << -200 << 50 << -200 << -100 << true << true;
    QTest::newRow("Motif, Styled, 6 x2 No ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                                       << Qt::ScrollBarAlwaysOff << Qt::ScrollBarAlwaysOff
                                                       << -200 << 50 << -200 << 100 << true << true;
    QTest::newRow("Motif, Styled, 1 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (16 + 4) << 0 << (16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (50 + 16 + 4) << 0 << (16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 3 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (50 + 16 + 4) << 0 << (100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 4 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << -100 << (-100 + 16 + 4) << -100 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 5 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << -100 << (16 + 4 - 50) << -100 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 6 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << -100 << (16 + 4 - 50) << -100 << (16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 7 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 151, 101) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (17 + 4) << 0 << (17 + 4) << true << true;
    QTest::newRow("Motif, Styled, 8 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 101) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (117 + 4 - 50) << 0 << (17 + 4) << true << true;
    QTest::newRow("Motif, Styled, 9 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 201, 201) << QTransform()
                                                        << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                        << 0 << (117 + 4 - 50) << 0 << (117 + 4) << true << true;
    QTest::newRow("Motif, Styled, 10 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 151, 101) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << -101 << (-100 + 16 + 4) << -101 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 11 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 101) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << -101 << (16 + 4 - 50) << -101 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 12 Always ScrollBars") << QSize(150, 100) << QRectF(-101, -101, 201, 201) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << -101 << (16 + 4 - 50) << -101 << (16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 13 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 166, 116) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << 0 << (32 + 4) << 0 << (32 + 4) << true << true;
    QTest::newRow("Motif, Styled, 14 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 116) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << 0 << (50 + 32 + 4) << 0 << (32 + 4) << true << true;
    QTest::newRow("Motif, Styled, 15 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 216, 216) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << 0 << (50 + 32 + 4) << 0 << (100 + 32 + 4) << true << true;
    QTest::newRow("Motif, Styled, 16 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 166, 116) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << (-100 - 16) << (-100 + 16 + 4) << (-100 - 16) << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 17 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 116) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << (-100 - 16) << (16 + 4 - 50) << (-100 - 16) << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 18 Always ScrollBars") << QSize(150, 100) << QRectF(-116, -116, 216, 216) << QTransform()
                                                         << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                         << (-100 - 16) << (16 + 4 - 50) << (-100 - 16) << (16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 1 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 150, 100) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << 0 << (150 + 16 + 4) << 0 << (100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 2 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 100) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << 0 << (250 + 16 + 4) << 0 << (100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 3 x2 Always ScrollBars") << QSize(150, 100) << QRectF(0, 0, 200, 200) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << 0 << (250 + 16 + 4) << 0 << (300 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 4 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 150, 100) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << -200 << (-50 + 16 + 4) << -200 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 5 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 100) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << -200 << (50 + 16 + 4) << -200 << (-100 + 16 + 4) << true << true;
    QTest::newRow("Motif, Styled, 6 x2 Always ScrollBars") << QSize(150, 100) << QRectF(-100, -100, 200, 200) << QTransform().scale(2, 2)
                                                           << Qt::ScrollBarAlwaysOn << Qt::ScrollBarAlwaysOn
                                                           << -200 << (50 + 16 + 4) << -200 << (100 + 16 + 4) << true << true;
}

void _scrollBarRanges_data()
{
    QTest::addColumn<QSize>("viewportSize");
    QTest::addColumn<QRectF>("sceneRect");
    QTest::addColumn<QTransform>("transform");
    QTest::addColumn<Qt::ScrollBarPolicy>("hbarpolicy");
    QTest::addColumn<Qt::ScrollBarPolicy>("vbarpolicy");
    QTest::addColumn<int>("hmin");
    QTest::addColumn<int>("hmax");
    QTest::addColumn<int>("vmin");
    QTest::addColumn<int>("vmax");
    QTest::addColumn<bool>("useMotif");
    QTest::addColumn<bool>("useStyledPanel");

    const int offset = 16;

    _scrollBarRanges_data_1(offset);
    _scrollBarRanges_data_2(offset);
    // Motif tests are suitable for 96 DPI, only.
    const QScreen *screen = QGuiApplication::primaryScreen();
    if (screen && qFuzzyCompare(screen->logicalDotsPerInchX(), 96.0)) {
        _scrollBarRangesMotif_data_1(offset);
        _scrollBarRangesMotif_data_2(offset);
    }
}