From 3f69a5f164ec7210a291413d11bfff7b89abecac Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Thu, 26 May 2016 11:13:37 +0200 Subject: Add a simple manual test for taking screenshots in style docs Change-Id: Ib5a985796d56b66c5842f2e1ab0e460420f62b54 Reviewed-by: Mitch Curtis --- .gitignore | 1 + tests/manual/manual.pro | 1 + tests/manual/styles/styles.cpp | 54 +++++++++++++++++++++ tests/manual/styles/styles.pro | 9 ++++ tests/manual/styles/styles.qml | 105 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 170 insertions(+) create mode 100644 tests/manual/styles/styles.cpp create mode 100644 tests/manual/styles/styles.pro create mode 100644 tests/manual/styles/styles.qml diff --git a/.gitignore b/.gitignore index 7d6784f9..747a3778 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ /tests/benchmarks/objectcount/tst_objectcount /tests/manual/fonts/fonts /tests/manual/gifs/tst_gifs +/tests/manual/styles/styles /tests/manual/testbench/testbench /tests/auto/snippets/screenshots/*.png diff --git a/tests/manual/manual.pro b/tests/manual/manual.pro index a85fd870..9c843e7b 100644 --- a/tests/manual/manual.pro +++ b/tests/manual/manual.pro @@ -2,6 +2,7 @@ TEMPLATE = subdirs SUBDIRS += \ gifs \ fonts \ + styles \ testbench qtHaveModule(widgets): SUBDIRS += viewinqwidget diff --git a/tests/manual/styles/styles.cpp b/tests/manual/styles/styles.cpp new file mode 100644 index 00000000..4e9c7517 --- /dev/null +++ b/tests/manual/styles/styles.cpp @@ -0,0 +1,54 @@ +/**************************************************************************** +** +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include + +int main(int argc, char *argv[]) +{ + QGuiApplication app(argc, argv); + + QQmlApplicationEngine engine; + engine.load(QUrl("qrc:/styles.qml")); + if (engine.rootObjects().isEmpty()) + return -1; + + return app.exec(); +} diff --git a/tests/manual/styles/styles.pro b/tests/manual/styles/styles.pro new file mode 100644 index 00000000..060ab4f7 --- /dev/null +++ b/tests/manual/styles/styles.pro @@ -0,0 +1,9 @@ +TEMPLATE = app +TARGET = styles +QT += quick quickcontrols2 + +SOURCES += \ + styles.cpp + +RESOURCES += \ + styles.qml diff --git a/tests/manual/styles/styles.qml b/tests/manual/styles/styles.qml new file mode 100644 index 00000000..277604eb --- /dev/null +++ b/tests/manual/styles/styles.qml @@ -0,0 +1,105 @@ +/**************************************************************************** +** +** Copyright (C) 2016 The Qt Company Ltd. +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of The Qt Company Ltd nor the names of its +** contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.6 +import QtQuick.Layouts 1.3 +import QtQuick.Controls 2.0 + +ApplicationWindow { + id: window + + visible: true + minimumWidth: column.implicitWidth + 80 + minimumHeight: column.implicitHeight + 80 + title: "Qt Quick Controls 2 - Styles" + + // for taking frameless screenshots: + // flags: Qt.Window | Qt.FramelessWindowHint + + ColumnLayout { + id: column + + spacing: 20 + anchors.fill: parent + anchors.margins: 40 + + GroupBox { + title: "Font Size" + topPadding: 30 + background.visible: false + + ColumnLayout { + anchors.fill: parent + anchors.leftMargin: 20 + + RadioButton { leftPadding: 0; text: "Small" } + RadioButton { leftPadding: 0; text: "Medium"; checked: true } + RadioButton { leftPadding: 0; text: "Large" } + } + } + + GroupBox { + title: "Audio" + topPadding: 30 + background.visible: false + + GridLayout { + columns: 2 + columnSpacing: 30 + anchors.fill: parent + anchors.leftMargin: 20 + + Label { text: "Volume" } + Slider { value: 1.0 } + Label { text: "Bass" } + Slider { value: 0.75 } + Label { text: "Treble" } + Slider { value: 0.5 } + } + } + + Button { + text: "Save" + Layout.alignment: Qt.AlignRight + } + + Item { Layout.fillHeight: true } + } +} -- cgit v1.2.3