435 lines
12 KiB
QML
435 lines
12 KiB
QML
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 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.3
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Layouts 1.0
|
|
import Qt.labs.controls 1.0
|
|
//import Qt.labs.controls.material 1.0
|
|
import Qt.labs.controls.universal 1.0
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
visible: true
|
|
width: 750
|
|
height: 1000
|
|
|
|
Theme.backgroundColor: themeSwitch.checked ? "#444" : "#fff"
|
|
Theme.frameColor: themeSwitch.checked ? "#666" : "#ccc"
|
|
Theme.textColor: themeSwitch.checked ? "#eee" : "#111"
|
|
Theme.pressColor: themeSwitch.checked ? "#33ffffff" : "#33333333"
|
|
Theme.baseColor: themeSwitch.checked ? "#444" : "#eee"
|
|
|
|
// Material.theme: themeSwitch.checked ? Material.Dark : Material.Light
|
|
Universal.theme: themeSwitch.checked ? Universal.Dark : Universal.Light
|
|
|
|
property int controlSpacing: 10
|
|
|
|
header: ToolBar {
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
|
|
ToolButton {
|
|
text: "Normal"
|
|
}
|
|
ToolButton {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
ToolButton {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
Switch {
|
|
id: themeSwitch
|
|
text: "Light/Dark"
|
|
layoutDirection: Qt.RightToLeft
|
|
}
|
|
}
|
|
}
|
|
|
|
footer: TabBar {
|
|
TabButton {
|
|
text: "Normal"
|
|
}
|
|
TabButton {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
TabButton {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
Flickable {
|
|
anchors.fill: parent
|
|
topMargin: 30
|
|
leftMargin: 30
|
|
rightMargin: 30
|
|
bottomMargin: 30
|
|
contentHeight: flow.height
|
|
|
|
Flow {
|
|
id: flow
|
|
width: parent.width
|
|
spacing: 30
|
|
|
|
RowLayout {
|
|
spacing: window.controlSpacing
|
|
|
|
Button {
|
|
text: "Normal"
|
|
}
|
|
Button {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
Button {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
CheckBox {
|
|
text: "Normal"
|
|
}
|
|
CheckBox {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
CheckBox {
|
|
text: "Checked"
|
|
checked: true
|
|
}
|
|
CheckBox {
|
|
text: "Checked + Pressed"
|
|
checked: true
|
|
pressed: true
|
|
}
|
|
CheckBox {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
RadioButton {
|
|
text: "Normal"
|
|
}
|
|
RadioButton {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
RadioButton {
|
|
text: "Checked"
|
|
checked: true
|
|
}
|
|
RadioButton {
|
|
text: "Checked + Pressed"
|
|
checked: true
|
|
pressed: true
|
|
}
|
|
RadioButton {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Switch {
|
|
text: "Normal"
|
|
}
|
|
Switch {
|
|
text: "Pressed"
|
|
pressed: true
|
|
}
|
|
Switch {
|
|
text: "Checked"
|
|
checked: true
|
|
}
|
|
Switch {
|
|
text: "Checked + Pressed"
|
|
checked: true
|
|
pressed: true
|
|
}
|
|
Switch {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
ProgressBar {
|
|
value: 0.5
|
|
}
|
|
ProgressBar {
|
|
value: 0.5
|
|
indeterminate: true
|
|
}
|
|
ProgressBar {
|
|
value: 0.5
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Slider {
|
|
value: 0.5
|
|
}
|
|
Slider {
|
|
value: 0.5
|
|
pressed: true
|
|
}
|
|
Slider {
|
|
value: 0.5
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
RangeSlider {
|
|
first.value: 0.25
|
|
second.value: 0.75
|
|
}
|
|
RangeSlider {
|
|
first.value: 0.25
|
|
first.pressed: true
|
|
second.value: 0.75
|
|
}
|
|
RangeSlider {
|
|
first.value: 0.25
|
|
second.value: 0.75
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
TextArea {
|
|
text: "Normal"
|
|
}
|
|
TextArea {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
TextField {
|
|
text: "Normal"
|
|
}
|
|
TextField {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
SpinBox {
|
|
}
|
|
SpinBox {
|
|
up.pressed: true
|
|
}
|
|
SpinBox {
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
GroupBox {
|
|
title: "Normal"
|
|
|
|
Item {
|
|
implicitWidth: 100
|
|
implicitHeight: 100
|
|
|
|
BusyIndicator {
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|
|
GroupBox {
|
|
enabled: false
|
|
title: "Disabled"
|
|
|
|
Item {
|
|
implicitWidth: 100
|
|
implicitHeight: 100
|
|
|
|
BusyIndicator {
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Frame {
|
|
Tumbler {
|
|
model: 5
|
|
implicitWidth: 100
|
|
implicitHeight: 100
|
|
}
|
|
}
|
|
Frame {
|
|
Tumbler {
|
|
model: 5
|
|
implicitWidth: 100
|
|
implicitHeight: 100
|
|
enabled: false
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Frame {
|
|
Layout.preferredWidth: 100
|
|
Layout.preferredHeight: 100
|
|
|
|
ScrollBar {
|
|
size: 0.3
|
|
position: 0.2
|
|
active: true
|
|
orientation: Qt.Vertical
|
|
height: parent.height
|
|
anchors.right: parent.right
|
|
}
|
|
}
|
|
|
|
Frame {
|
|
Layout.preferredWidth: 100
|
|
Layout.preferredHeight: 100
|
|
|
|
ScrollBar {
|
|
size: 0.3
|
|
position: 0.2
|
|
active: true
|
|
orientation: Qt.Vertical
|
|
height: parent.height
|
|
anchors.right: parent.right
|
|
pressed: true
|
|
}
|
|
}
|
|
|
|
Frame {
|
|
Layout.preferredWidth: 100
|
|
Layout.preferredHeight: 100
|
|
|
|
ScrollBar {
|
|
size: 0.3
|
|
position: 0.2
|
|
active: true
|
|
orientation: Qt.Vertical
|
|
height: parent.height
|
|
anchors.right: parent.right
|
|
enabled: false
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Frame {
|
|
Layout.preferredWidth: 100
|
|
Layout.preferredHeight: 100
|
|
|
|
ScrollIndicator {
|
|
size: 0.3
|
|
position: 0.2
|
|
active: true
|
|
orientation: Qt.Vertical
|
|
height: parent.height
|
|
anchors.right: parent.right
|
|
}
|
|
}
|
|
|
|
Frame {
|
|
Layout.preferredWidth: 100
|
|
Layout.preferredHeight: 100
|
|
|
|
ScrollIndicator {
|
|
size: 0.3
|
|
position: 0.2
|
|
active: true
|
|
orientation: Qt.Vertical
|
|
height: parent.height
|
|
anchors.right: parent.right
|
|
enabled: false
|
|
}
|
|
}
|
|
}
|
|
|
|
PageIndicator {
|
|
count: 5
|
|
enabled: false
|
|
}
|
|
|
|
RowLayout {
|
|
Dial {
|
|
}
|
|
Dial {
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Frame {
|
|
Label {
|
|
text: "Normal\nLabel"
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
Frame {
|
|
enabled: false
|
|
|
|
Label {
|
|
text: "Disabled\nLabel"
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|