summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@digia.com>2012-12-17 14:15:59 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-09 08:59:26 +0100
commit083d2c8bb8a2a0fc92342625049bd7becdcea922 (patch)
tree2eb0fe9f3eec59eba2858ac85069bb6d3d147075 /tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h
parent05659223bf02c8bac0463fe1e7a9364ef5677b75 (diff)
Removed hardcoded values from tst_qgraphicsview::scrollBarRanges
Instead of testing the "windows" and "motif" styles, that test should actually test the scrollBarRanges for all available styles. To be able to do that, the magic numbers 16 (width/height of scrollbars) and 4 (spacing for the faux motif style) were replaced and instead of setting the explicit values in the data the "number of scrollbars/spacings to add/remove" is saved in a struct and the value of these (depending on the style) is obtained in the test run. This change does not also cause the fusion style to also be tested but also fixes this test for Windows 7 and 8 (Aero) where the scrollbar width/height is not 16 but 17. Task-number: QTBUG-28611 Task-number: QTBUG-29002 Change-Id: I5d103018fde81cee6e6e89cd414426768b2dc8e7 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h')
-rw-r--r--tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h b/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h
new file mode 100644
index 0000000000..adf477c170
--- /dev/null
+++ b/tests/auto/widgets/graphicsview/qgraphicsview/tst_qgraphicsview.h
@@ -0,0 +1,85 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia 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.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#ifndef TST_QGRAPHICSVIEW_H
+#define TST_QGRAPHICSVIEW_H
+
+// This file contains structs used in tst_qgraphicsview::scrollBarRanges.
+// Whenever these mention scrollbars or spacing it is about the number of
+// scrollbars or spacings to use as these are style dependent so that the real
+// value to add/remove has to be obtained in test run using the actual style.
+
+struct ExpectedValueDescription {
+ ExpectedValueDescription(int v = 0, int sbeta = 0, int sta = 0)
+ : value(v)
+ , scrollBarExtentsToAdd(sbeta)
+ , spacingsToAdd(sta)
+ {
+ }
+
+ int value;
+ // Describes how often the scrollbar widht/height has to be added to or
+ // removed from the value.
+ int scrollBarExtentsToAdd;
+
+ // Describes how often the scrollbar spacing has to be added to or removed
+ // from the value if the used style has SH_ScrollView_FrameOnlyAroundContents
+ // set
+ int spacingsToAdd;
+};
+
+// Describes how often the scroll bar width/height has to be added to/removed
+// from the according side of the sceneRect.
+struct ScrollBarCount {
+ ScrollBarCount(int l = 0, int t = 0, int r = 0, int b = 0 )
+ : left(l)
+ , top(t)
+ , right(r)
+ , bottom(b)
+ {
+ }
+
+ int left;
+ int top;
+ int right;
+ int bottom;
+};
+
+#endif // TST_QGRAPHICSVIEW_H