docs: 添加涉密文件自检工具实施计划
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Window 2.2
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ApplicationWindow {
|
||||
id: window
|
||||
|
||||
// ### remove?
|
||||
overlay.modal: NinePatchImage {
|
||||
source: Imagine.url + "applicationwindow-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": true}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
// ### remove?
|
||||
overlay.modeless: NinePatchImage {
|
||||
source: Imagine.url + "applicationwindow-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": false}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
width: window.width
|
||||
height: window.height
|
||||
|
||||
source: Imagine.url + "applicationwindow-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"active": window.active}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.BusyIndicator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: AnimatedImage {
|
||||
opacity: control.running ? 1 : 0
|
||||
playing: control.running || opacity > 0
|
||||
visible: control.running || opacity > 0
|
||||
Behavior on opacity { OpacityAnimator { duration: 250 } }
|
||||
|
||||
source: Imagine.url + "busyindicator-animation"
|
||||
AnimatedImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"running": control.running},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "busyindicator-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"running": control.running},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Button {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.enabled && control.flat && control.highlighted ? control.palette.highlight
|
||||
: control.enabled && (control.down || control.checked || control.highlighted) && !control.flat
|
||||
? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.enabled && control.flat && control.highlighted ? control.palette.highlight
|
||||
: control.enabled && (control.down || control.checked || control.highlighted) && !control.flat
|
||||
? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "button-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"checkable": control.checkable},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"flat": control.flat},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.CheckBox {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
indicator: Image {
|
||||
x: text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
source: Imagine.url + "checkbox-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checkState === Qt.Checked},
|
||||
{"partially-checked": control.checkState === Qt.PartiallyChecked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.windowText
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "checkbox-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checkState === Qt.Checked},
|
||||
{"partially-checked": control.checkState === Qt.PartiallyChecked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.CheckDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 12 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.text
|
||||
|
||||
indicator: Image {
|
||||
x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
source: Imagine.url + "checkdelegate-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checkState === Qt.Checked},
|
||||
{"partially-checked": control.checkState === Qt.PartiallyChecked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: IconLabel {
|
||||
leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "checkdelegate-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checkState === Qt.Checked},
|
||||
{"partially-checked": control.checkState === Qt.PartiallyChecked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,174 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Window 2.15
|
||||
import QtQuick.Templates 2.15 as T
|
||||
import QtQuick.Controls 2.15
|
||||
import QtQuick.Controls.Imagine 2.15
|
||||
import QtQuick.Controls.Imagine.impl 2.15
|
||||
|
||||
T.ComboBox {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentItem.implicitWidth + background ? (background.leftPadding + background.rightPadding) : 0)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
Math.max(implicitContentHeight,
|
||||
implicitIndicatorHeight) + background ? (background.topPadding + background.bottomPadding) : 0)
|
||||
|
||||
leftPadding: padding + (!control.mirrored || !indicator || !indicator.visible ? 0 : indicator.width + spacing)
|
||||
rightPadding: padding + (control.mirrored || !indicator || !indicator.visible ? 0 : indicator.width + spacing)
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
delegate: ItemDelegate {
|
||||
width: ListView.view.width
|
||||
text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : model[control.textRole]) : modelData
|
||||
font.weight: control.currentIndex === index ? Font.DemiBold : Font.Normal
|
||||
highlighted: control.highlightedIndex === index
|
||||
hoverEnabled: control.hoverEnabled
|
||||
}
|
||||
|
||||
indicator: Image {
|
||||
x: control.mirrored ? control.padding : control.width - width - control.padding
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
source: Imagine.url + "combobox-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"editable": control.editable},
|
||||
{"open": control.down},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered},
|
||||
{"flat": control.flat}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: T.TextField {
|
||||
topPadding: control.background ? control.background.topPadding : 0
|
||||
leftPadding: control.background ? control.background.leftPadding : 0
|
||||
rightPadding: control.background ? control.background.rightPadding : 0
|
||||
bottomPadding: control.background ? control.background.bottomPadding : 0
|
||||
|
||||
text: control.editable ? control.editText : control.displayText
|
||||
|
||||
enabled: control.editable
|
||||
autoScroll: control.editable
|
||||
readOnly: control.down
|
||||
inputMethodHints: control.inputMethodHints
|
||||
validator: control.validator
|
||||
selectByMouse: control.selectTextByMouse
|
||||
|
||||
font: control.font
|
||||
color: control.flat ? control.palette.windowText : control.editable ? control.palette.text : control.palette.buttonText
|
||||
selectionColor: control.palette.highlight
|
||||
selectedTextColor: control.palette.highlightedText
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "combobox-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"editable": control.editable},
|
||||
{"open": control.down},
|
||||
{"focused": control.visualFocus || (control.editable && control.activeFocus)},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered},
|
||||
{"flat": control.flat}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
popup: T.Popup {
|
||||
width: control.width
|
||||
height: Math.min(contentItem.implicitHeight + topPadding + bottomPadding, control.Window.height - topMargin - bottomMargin)
|
||||
|
||||
topMargin: background.topInset
|
||||
bottomMargin: background.bottomInset
|
||||
|
||||
topPadding: background.topPadding
|
||||
leftPadding: background.leftPadding
|
||||
rightPadding: background.rightPadding
|
||||
bottomPadding: background.bottomPadding
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
palette.text: control.palette.text
|
||||
palette.highlight: control.palette.highlight
|
||||
palette.highlightedText: control.palette.highlightedText
|
||||
palette.windowText: control.palette.windowText
|
||||
palette.buttonText: control.palette.buttonText
|
||||
|
||||
contentItem: ListView {
|
||||
clip: true
|
||||
implicitHeight: contentHeight
|
||||
model: control.delegateModel
|
||||
currentIndex: control.highlightedIndex
|
||||
highlightMoveDuration: 0
|
||||
|
||||
T.ScrollIndicator.vertical: ScrollIndicator { }
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "combobox-popup"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"editable": control.editable},
|
||||
{"focused": control.visualFocus || (control.editable && control.activeFocus)},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered},
|
||||
{"flat": control.flat}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,138 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
import QtGraphicalEffects 1.12
|
||||
|
||||
T.DelayButton {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
transition: Transition {
|
||||
NumberAnimation {
|
||||
duration: control.delay * (control.pressed ? 1.0 - control.progress : 0.3 * control.progress)
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.buttonText
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
elide: Text.ElideRight
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "delaybutton-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
readonly property NinePatchImage progress: NinePatchImage {
|
||||
parent: control.background
|
||||
width: control.progress * parent.width
|
||||
height: parent.height
|
||||
visible: false
|
||||
|
||||
source: Imagine.url + "delaybutton-progress"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
readonly property NinePatchImage mask: NinePatchImage {
|
||||
width: control.background.width
|
||||
height: control.background.height
|
||||
visible: false
|
||||
|
||||
source: Imagine.url + "delaybutton-mask"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
readonly property OpacityMask effect: OpacityMask {
|
||||
parent: control.background
|
||||
width: source.width
|
||||
height: source.height
|
||||
source: control.background.progress
|
||||
|
||||
maskSource: ShaderEffectSource {
|
||||
sourceItem: control.background.mask
|
||||
sourceRect: Qt.rect(0, 0, control.background.effect.width, control.background.effect.height)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Dial {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
(handle ? handle.implicitWidth : 0) + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
(handle ? handle.implicitHeight : 0) + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
handle: Image {
|
||||
x: background.x + background.width / 2 - handle.width / 2
|
||||
y: background.y + background.height / 2 - handle.height / 2
|
||||
|
||||
source: Imagine.url + "dial-handle"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
transform: [
|
||||
Translate {
|
||||
y: -Math.min(control.background.width, control.background.height) * 0.4 + control.handle.height / 2
|
||||
},
|
||||
Rotation {
|
||||
angle: control.angle
|
||||
origin.x: handle.width / 2
|
||||
origin.y: handle.height / 2
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
x: control.width / 2 - width / 2
|
||||
y: control.height / 2 - height / 2
|
||||
width: Math.max(64, Math.min(control.width, control.height))
|
||||
height: width
|
||||
fillMode: Image.PreserveAspectFit
|
||||
|
||||
source: Imagine.url + "dial-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Dialog {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding,
|
||||
implicitHeaderWidth,
|
||||
implicitFooterWidth)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding
|
||||
+ (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0)
|
||||
+ (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0))
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "dialog-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": control.modal},
|
||||
{"dim": control.dim}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
header: Label {
|
||||
text: control.title
|
||||
visible: control.title
|
||||
elide: Label.ElideRight
|
||||
font.bold: true
|
||||
padding: 12
|
||||
|
||||
background: NinePatchImage {
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
|
||||
source: Imagine.url + "dialog-title"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": control.modal},
|
||||
{"dim": control.dim}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
footer: DialogButtonBox {
|
||||
visible: count > 0
|
||||
}
|
||||
|
||||
T.Overlay.modal: NinePatchImage {
|
||||
source: Imagine.url + "dialog-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": true}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modeless: NinePatchImage {
|
||||
source: Imagine.url + "dialog-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": false}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.DialogButtonBox {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
(control.count === 1 ? contentWidth * 2 : contentWidth) + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
spacing: 6
|
||||
|
||||
delegate: Button {
|
||||
width: control.count === 1 ? control.availableWidth / 2 : undefined
|
||||
flat: true
|
||||
}
|
||||
|
||||
contentItem: ListView {
|
||||
model: control.contentModel
|
||||
spacing: control.spacing
|
||||
orientation: ListView.Horizontal
|
||||
boundsBehavior: Flickable.StopAtBounds
|
||||
snapMode: ListView.SnapToItem
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "dialogbuttonbox-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Drawer {
|
||||
id: control
|
||||
|
||||
parent: T.ApplicationWindow.overlay
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
enter: Transition { SmoothedAnimation { velocity: 5 } }
|
||||
exit: Transition { SmoothedAnimation { velocity: 5 } }
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "drawer-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": control.modal},
|
||||
{"dim": control.dim},
|
||||
{"top": control.edge === Qt.TopEdge},
|
||||
{"left": control.edge === Qt.LeftEdge},
|
||||
{"right": control.edge === Qt.RightEdge},
|
||||
{"bottom": control.edge === Qt.BottomEdge}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modal: NinePatchImage {
|
||||
source: Imagine.url + "drawer-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": true}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modeless: NinePatchImage {
|
||||
source: Imagine.url + "drawer-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": false}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Frame {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "frame-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.GroupBox {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding,
|
||||
implicitLabelWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: (background ? background.topPadding : 0) + (implicitLabelWidth > 0 ? implicitLabelHeight + spacing : 0)
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
padding: 12
|
||||
|
||||
label: Label {
|
||||
width: control.width
|
||||
|
||||
topPadding: background.topPadding
|
||||
leftPadding: background.leftPadding
|
||||
rightPadding: background.rightPadding
|
||||
bottomPadding: background.bottomPadding
|
||||
|
||||
text: control.title
|
||||
font: control.font
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
color: control.palette.windowText
|
||||
|
||||
background: NinePatchImage {
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
|
||||
source: Imagine.url + "groupbox-title"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
x: -leftInset
|
||||
y: control.topPadding - control.bottomPadding - topInset
|
||||
width: control.width + leftInset + rightInset
|
||||
height: control.height + topInset + bottomInset - control.topPadding + control.padding
|
||||
|
||||
source: Imagine.url + "groupbox-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2020 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Controls 2.15
|
||||
import QtQuick.Templates 2.15 as T
|
||||
|
||||
T.HorizontalHeaderView {
|
||||
id: control
|
||||
|
||||
implicitWidth: syncView ? syncView.width : 0
|
||||
implicitHeight: contentHeight
|
||||
|
||||
delegate: Rectangle {
|
||||
// Qt6: add cellPadding (and font etc) as public API in headerview
|
||||
readonly property real cellPadding: 8
|
||||
|
||||
implicitWidth: text.implicitWidth + (cellPadding * 2)
|
||||
implicitHeight: Math.max(control.height, text.implicitHeight + (cellPadding * 2))
|
||||
color: "#f6f6f6"
|
||||
border.color: "#e4e4e4"
|
||||
|
||||
Text {
|
||||
id: text
|
||||
text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole]
|
||||
: model[control.textRole])
|
||||
: modelData
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
color: "#ff26282a"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ItemDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 12 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.text
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "itemdelegate-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Label {
|
||||
id: control
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
color: control.palette.windowText
|
||||
linkColor: control.palette.link
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "label-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
import QtQuick.Window 2.12
|
||||
|
||||
T.Menu {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topMargin: background ? background.topInset : 0
|
||||
leftMargin: background ? background.leftInset : 0
|
||||
rightMargin: background ? background.rightInset : 0
|
||||
bottomMargin: background ? background.bottomInset : 0
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
delegate: MenuItem { }
|
||||
|
||||
contentItem: ListView {
|
||||
implicitHeight: contentHeight
|
||||
model: control.contentModel
|
||||
interactive: Window.window
|
||||
? contentHeight + control.topPadding + control.bottomPadding > Window.window.height
|
||||
: false
|
||||
clip: true
|
||||
currentIndex: control.currentIndex
|
||||
|
||||
T.ScrollIndicator.vertical: ScrollIndicator { }
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "menu-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": control.modal},
|
||||
{"dim": control.dim}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modal: NinePatchImage {
|
||||
source: Imagine.url + "menu-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": true}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modeless: NinePatchImage {
|
||||
source: Imagine.url + "menu-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": false}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,138 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.MenuItem {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.windowText
|
||||
|
||||
contentItem: IconLabel {
|
||||
readonly property real arrowPadding: control.subMenu && control.arrow ? control.arrow.width + control.spacing : 0
|
||||
readonly property real indicatorPadding: control.checkable && control.indicator ? control.indicator.width + control.spacing : 0
|
||||
leftPadding: !control.mirrored ? indicatorPadding : arrowPadding
|
||||
rightPadding: control.mirrored ? indicatorPadding : arrowPadding
|
||||
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.windowText
|
||||
}
|
||||
|
||||
arrow: Image {
|
||||
x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
visible: control.subMenu
|
||||
source: Imagine.url + "menuitem-arrow"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
indicator: Image {
|
||||
x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
visible: control.checkable
|
||||
source: Imagine.url + "menuitem-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "menuitem-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.MenuSeparator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: NinePatchImage {
|
||||
source: Imagine.url + "menuseparator-separator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "menuseparator-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Page {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding,
|
||||
implicitHeaderWidth,
|
||||
implicitFooterWidth)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding
|
||||
+ (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0)
|
||||
+ (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0))
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "page-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.PageIndicator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
delegate: Image {
|
||||
source: Imagine.url + "pageindicator-delegate"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": pressed},
|
||||
{"current": index === control.currentIndex},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered} // ### TODO: context property
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Row {
|
||||
spacing: control.spacing
|
||||
|
||||
Repeater {
|
||||
model: control.count
|
||||
delegate: control.delegate
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "pageindicator-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Pane {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "pane-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Popup {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : undefined
|
||||
leftPadding: background ? background.leftPadding : undefined
|
||||
rightPadding: background ? background.rightPadding : undefined
|
||||
bottomPadding: background ? background.bottomPadding : undefined
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "popup-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": control.modal},
|
||||
{"dim": control.dim}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modal: NinePatchImage {
|
||||
source: Imagine.url + "popup-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": true}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
T.Overlay.modeless: NinePatchImage {
|
||||
source: Imagine.url + "popup-overlay"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"modal": false}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
import QtGraphicalEffects 1.12
|
||||
|
||||
T.ProgressBar {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: Item {
|
||||
implicitWidth: control.indeterminate ? animation.implicitWidth || progress.implicitWidth : progress.implicitWidth
|
||||
implicitHeight: control.indeterminate ? animation.implicitHeight || progress.implicitHeight : progress.implicitHeight
|
||||
scale: control.mirrored ? -1 : 1
|
||||
|
||||
readonly property bool hasMask: mask.status !== Image.Null
|
||||
|
||||
readonly property NinePatchImage progress: NinePatchImage {
|
||||
parent: control.contentItem
|
||||
width: control.position * parent.width
|
||||
height: parent.height
|
||||
visible: !control.indeterminate && !control.contentItem.hasMask
|
||||
|
||||
source: Imagine.url + "progressbar-progress"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"indeterminate": control.indeterminate},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
readonly property AnimatedImage animation: AnimatedImage {
|
||||
parent: control.contentItem
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
playing: control.indeterminate
|
||||
visible: control.indeterminate && !control.contentItem.hasMask
|
||||
|
||||
source: Imagine.url + "progressbar-animation"
|
||||
AnimatedImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
readonly property NinePatchImage mask: NinePatchImage {
|
||||
width: control.availableWidth
|
||||
height: control.availableHeight
|
||||
visible: false
|
||||
|
||||
source: Imagine.url + "progressbar-mask"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"indeterminate": control.indeterminate},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
readonly property OpacityMask effect: OpacityMask {
|
||||
parent: control.contentItem
|
||||
width: source.width
|
||||
height: source.height
|
||||
source: control.indeterminate ? control.contentItem.animation : control.contentItem.progress
|
||||
|
||||
maskSource: ShaderEffectSource {
|
||||
sourceItem: control.contentItem.mask
|
||||
sourceRect: Qt.rect(0, 0, control.contentItem.effect.width, control.contentItem.effect.height)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "progressbar-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"indeterminate": control.indeterminate},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.RadioButton {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
indicator: Image {
|
||||
x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
source: Imagine.url + "radiobutton-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.windowText
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "radiobutton-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,116 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.RadioDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 12 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.text
|
||||
|
||||
indicator: Image {
|
||||
x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
|
||||
source: Imagine.url + "radiodelegate-indicator"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: IconLabel {
|
||||
leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "radiodelegate-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.RangeSlider {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
first.implicitHandleWidth + leftPadding + rightPadding,
|
||||
second.implicitHandleWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
first.implicitHandleHeight + topPadding + bottomPadding,
|
||||
second.implicitHandleHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
first.handle: Image {
|
||||
x: control.leftPadding + (control.horizontal ? control.first.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)
|
||||
y: control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.first.visualPosition * (control.availableHeight - height))
|
||||
|
||||
source: Imagine.url + "rangeslider-handle"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"first": true},
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.first.pressed},
|
||||
{"focused": control.first.handle.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.first.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
second.handle: Image {
|
||||
x: control.leftPadding + (control.horizontal ? control.second.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)
|
||||
y: control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.second.visualPosition * (control.availableHeight - height))
|
||||
|
||||
source: Imagine.url + "rangeslider-handle"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"second": true},
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.second.pressed},
|
||||
{"focused": control.second.handle.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.second.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
scale: control.horizontal && control.mirrored ? -1 : 1
|
||||
|
||||
source: Imagine.url + "rangeslider-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
NinePatchImage {
|
||||
x: control.horizontal ? control.first.handle.width / 2 + control.first.position * (parent.width - control.first.handle.width) : (parent.width - width) / 2
|
||||
y: control.horizontal ? (parent.height - height) / 2 : control.first.handle.height / 2 + control.second.visualPosition * (parent.height - control.first.handle.height)
|
||||
width: control.horizontal ? control.second.position * (parent.width - control.first.handle.width) - control.first.position * (parent.width - control.first.handle.width) : parent.width
|
||||
height: control.vertical ? control.second.position * (parent.height - control.first.handle.height) - control.first.position * (parent.height - control.first.handle.height): parent.height
|
||||
|
||||
source: Imagine.url + "rangeslider-progress"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.RoundButton {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.enabled && control.flat && control.highlighted ? control.palette.highlight
|
||||
: control.enabled && (control.down || control.checked || control.highlighted) && !control.flat
|
||||
? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.enabled && control.flat && control.highlighted ? control.palette.highlight
|
||||
: control.enabled && (control.down || control.checked || control.highlighted) && !control.flat
|
||||
? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
// ### TODO: radius?
|
||||
source: Imagine.url + "roundbutton-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"checkable": control.checkable},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"flat": control.flat},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ScrollBar {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
visible: control.policy !== T.ScrollBar.AlwaysOff
|
||||
minimumSize: orientation == Qt.Horizontal ? height / width : width / height
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: NinePatchImage {
|
||||
width: control.availableWidth
|
||||
height: control.availableHeight
|
||||
|
||||
source: Imagine.url + "scrollbar-handle"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"interactive": control.interactive},
|
||||
{"pressed": control.pressed},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
opacity: 0.0
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "scrollbar-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"interactive": control.interactive},
|
||||
{"pressed": control.pressed},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
opacity: 0.0
|
||||
}
|
||||
|
||||
states: [
|
||||
State {
|
||||
name: "active"
|
||||
when: control.policy === T.ScrollBar.AlwaysOn || (control.active && control.size < 1.0)
|
||||
}
|
||||
]
|
||||
|
||||
transitions: [
|
||||
Transition {
|
||||
to: "active"
|
||||
NumberAnimation { targets: [control.contentItem, control.background]; property: "opacity"; to: 1.0 }
|
||||
},
|
||||
Transition {
|
||||
from: "active"
|
||||
SequentialAnimation {
|
||||
PropertyAction{ targets: [control.contentItem, control.background]; property: "opacity"; value: 1.0 }
|
||||
PauseAnimation { duration: 3000 }
|
||||
NumberAnimation { targets: [control.contentItem, control.background]; property: "opacity"; to: 0.0 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ScrollIndicator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: NinePatchImage {
|
||||
width: control.availableWidth
|
||||
height: control.availableHeight
|
||||
|
||||
source: Imagine.url + "scrollindicator-handle"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
opacity: 0.0
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "scrollindicator-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
opacity: 0.0
|
||||
}
|
||||
|
||||
states: [
|
||||
State {
|
||||
name: "active"
|
||||
when: (control.active && control.size < 1.0)
|
||||
}
|
||||
]
|
||||
|
||||
transitions: [
|
||||
Transition {
|
||||
to: "active"
|
||||
NumberAnimation { targets: [contentItem, control.background]; property: "opacity"; to: 1.0 }
|
||||
},
|
||||
Transition {
|
||||
from: "active"
|
||||
SequentialAnimation {
|
||||
PauseAnimation { duration: 5000 }
|
||||
NumberAnimation { targets: [contentItem, control.background]; property: "opacity"; to: 0.0 }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Slider {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitHandleWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitHandleHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
handle: Image {
|
||||
x: Math.round(control.leftPadding + (control.horizontal ? control.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2))
|
||||
y: Math.round(control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.visualPosition * (control.availableHeight - height)))
|
||||
|
||||
source: Imagine.url + "slider-handle"
|
||||
ImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.pressed},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
scale: control.horizontal && control.mirrored ? -1 : 1
|
||||
|
||||
source: Imagine.url + "slider-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
NinePatchImage {
|
||||
x: control.horizontal ? 0 : (parent.width - width) / 2
|
||||
y: control.horizontal
|
||||
? (parent.height - height) / 2
|
||||
: control.handle.height / 2 + control.visualPosition * (parent.height - control.handle.height)
|
||||
width: control.horizontal
|
||||
? control.handle.width / 2 + control.position * (parent.width - control.handle.width)
|
||||
: parent.width
|
||||
height: control.vertical
|
||||
? control.handle.height / 2 + control.position * (parent.height - control.handle.height)
|
||||
: parent.height
|
||||
|
||||
source: Imagine.url + "slider-progress"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,152 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.SpinBox {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentItem.implicitWidth + 2 * padding +
|
||||
up.implicitIndicatorWidth +
|
||||
down.implicitIndicatorWidth)
|
||||
implicitHeight: Math.max(implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitBackgroundHeight,
|
||||
up.implicitIndicatorHeight,
|
||||
down.implicitIndicatorHeight)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: (background ? background.leftPadding : 0) + (control.mirrored ? (up.indicator ? up.indicator.width : 0) : (down.indicator ? down.indicator.width : 0))
|
||||
rightPadding: (background ? background.rightPadding : 0) + (control.mirrored ? (down.indicator ? down.indicator.width : 0) : (up.indicator ? up.indicator.width : 0))
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
validator: IntValidator {
|
||||
locale: control.locale.name
|
||||
bottom: Math.min(control.from, control.to)
|
||||
top: Math.max(control.from, control.to)
|
||||
}
|
||||
|
||||
contentItem: TextInput {
|
||||
z: 2
|
||||
text: control.displayText
|
||||
opacity: control.enabled ? 1 : 0.3
|
||||
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
selectionColor: control.palette.highlight
|
||||
selectedTextColor: control.palette.highlightedText
|
||||
horizontalAlignment: Qt.AlignHCenter
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
|
||||
readOnly: !control.editable
|
||||
validator: control.validator
|
||||
inputMethodHints: control.inputMethodHints
|
||||
|
||||
NinePatchImage {
|
||||
z: -1
|
||||
width: control.width
|
||||
height: control.height
|
||||
visible: control.editable
|
||||
|
||||
source: Imagine.url + "spinbox-editor"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
up.indicator: NinePatchImage {
|
||||
x: control.mirrored ? 0 : parent.width - width
|
||||
height: parent.height
|
||||
|
||||
source: Imagine.url + "spinbox-indicator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"up": true},
|
||||
{"disabled": !control.up.indicator.enabled},
|
||||
{"editable": control.editable},
|
||||
{"pressed": control.up.pressed},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.up.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
down.indicator: NinePatchImage {
|
||||
x: control.mirrored ? parent.width - width : 0
|
||||
height: parent.height
|
||||
|
||||
source: Imagine.url + "spinbox-indicator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"down": true},
|
||||
{"disabled": !control.down.indicator.enabled},
|
||||
{"editable": control.editable},
|
||||
{"pressed": control.down.pressed},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.down.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "spinbox-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"editable": control.editable},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.13
|
||||
import QtQuick.Templates 2.13 as T
|
||||
import QtQuick.Controls.Imagine 2.13
|
||||
import QtQuick.Controls.Imagine.impl 2.13
|
||||
|
||||
T.SplitView {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
handle: NinePatchImage {
|
||||
source: Imagine.url + "splitview-handle"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.orientation === Qt.Vertical},
|
||||
{"horizontal":control.orientation === Qt.Horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": T.SplitHandle.pressed},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": T.SplitHandle.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.StackView {
|
||||
id: control
|
||||
|
||||
implicitWidth: implicitBackgroundWidth
|
||||
implicitHeight: implicitBackgroundHeight
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
popEnter: Transition {
|
||||
XAnimator { from: (control.mirrored ? -1 : 1) * -control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
popExit: Transition {
|
||||
XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * control.width; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
pushEnter: Transition {
|
||||
XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
pushExit: Transition {
|
||||
XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
replaceEnter: Transition {
|
||||
XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
replaceExit: Transition {
|
||||
XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic }
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "stackview-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.SwipeDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 12 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.text
|
||||
|
||||
swipe.transition: Transition { SmoothedAnimation { velocity: 3; easing.type: Easing.InOutCubic } }
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "swipedelegate-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.SwipeView {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: ListView {
|
||||
model: control.contentModel
|
||||
interactive: control.interactive
|
||||
currentIndex: control.currentIndex
|
||||
focus: control.focus
|
||||
|
||||
spacing: control.spacing
|
||||
orientation: control.orientation
|
||||
snapMode: ListView.SnapOneItem
|
||||
boundsBehavior: Flickable.StopAtBounds
|
||||
|
||||
highlightRangeMode: ListView.StrictlyEnforceRange
|
||||
preferredHighlightBegin: 0
|
||||
preferredHighlightEnd: 0
|
||||
highlightMoveDuration: 250
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "swipeview-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"interactive": control.interactive},
|
||||
{"focused": control.contentItem.activeFocus},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Switch {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
indicator: NinePatchImage {
|
||||
x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
width: Math.max(implicitWidth, handle.leftPadding && handle.rightPadding ? handle.implicitWidth : 2 * handle.implicitWidth)
|
||||
height: Math.max(implicitHeight, handle.implicitHeight)
|
||||
|
||||
source: Imagine.url + "switch-indicator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
property NinePatchImage handle: NinePatchImage {
|
||||
readonly property real minPos: parent.leftPadding - leftPadding
|
||||
readonly property real maxPos: parent.width - width + rightPadding - parent.rightPadding
|
||||
readonly property real dragPos: control.visualPosition * parent.width - (width / 2)
|
||||
|
||||
parent: control.indicator
|
||||
|
||||
x: Math.max(minPos, Math.min(maxPos, control.visualPosition * parent.width - (width / 2)))
|
||||
y: (parent.height - height) / 2
|
||||
|
||||
source: Imagine.url + "switch-handle"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
Behavior on x {
|
||||
enabled: !control.down
|
||||
SmoothedAnimation { velocity: 200 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.windowText
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "switch-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.SwitchDelegate {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding,
|
||||
implicitIndicatorHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 12 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.text
|
||||
|
||||
indicator: NinePatchImage {
|
||||
x: control.text ? (control.mirrored ? control.leftPadding : control.width - width - control.rightPadding) : control.leftPadding + (control.availableWidth - width) / 2
|
||||
y: control.topPadding + (control.availableHeight - height) / 2
|
||||
width: Math.max(implicitWidth, handle.leftPadding && handle.rightPadding ? handle.implicitWidth : 2 * handle.implicitWidth)
|
||||
height: Math.max(implicitHeight, handle.implicitHeight)
|
||||
|
||||
source: Imagine.url + "switchdelegate-indicator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
property NinePatchImage handle: NinePatchImage {
|
||||
readonly property real minPos: parent.leftPadding - leftPadding
|
||||
readonly property real maxPos: parent.width - width + rightPadding - parent.rightPadding
|
||||
readonly property real dragPos: control.visualPosition * parent.width - (width / 2)
|
||||
|
||||
parent: control.indicator
|
||||
|
||||
x: Math.max(minPos, Math.min(maxPos, control.visualPosition * parent.width - (width / 2)))
|
||||
y: (parent.height - height) / 2
|
||||
|
||||
source: Imagine.url + "switchdelegate-handle"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
|
||||
Behavior on x {
|
||||
enabled: !control.down
|
||||
SmoothedAnimation { velocity: 200 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: IconLabel {
|
||||
leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0
|
||||
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "switchdelegate-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.TabBar {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: ListView {
|
||||
model: control.contentModel
|
||||
currentIndex: control.currentIndex
|
||||
|
||||
spacing: control.spacing
|
||||
orientation: ListView.Horizontal
|
||||
boundsBehavior: Flickable.StopAtBounds
|
||||
flickableDirection: Flickable.AutoFlickIfNeeded
|
||||
snapMode: ListView.SnapToItem
|
||||
|
||||
highlightMoveDuration: 0
|
||||
highlightRangeMode: ListView.ApplyRange
|
||||
preferredHighlightBegin: 48
|
||||
preferredHighlightEnd: width - 48
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "tabbar-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"header": control.position === T.TabBar.Header },
|
||||
{"footer": control.position === T.TabBar.Footer },
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.TabButton {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.buttonText
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.buttonText
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "tabbutton-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.TextArea {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(contentWidth + leftPadding + rightPadding,
|
||||
implicitBackgroundWidth + leftInset + rightInset,
|
||||
placeholder.implicitWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(contentHeight + topPadding + bottomPadding,
|
||||
implicitBackgroundHeight + topInset + bottomInset,
|
||||
placeholder.implicitHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
color: control.palette.text
|
||||
selectionColor: control.palette.highlight
|
||||
selectedTextColor: control.palette.highlightedText
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
placeholderTextColor: Color.transparent(control.color, 0.5)
|
||||
|
||||
PlaceholderText {
|
||||
id: placeholder
|
||||
x: control.leftPadding
|
||||
y: control.topPadding
|
||||
width: control.width - (control.leftPadding + control.rightPadding)
|
||||
height: control.height - (control.topPadding + control.bottomPadding)
|
||||
|
||||
text: control.placeholderText
|
||||
font: control.font
|
||||
color: control.placeholderTextColor
|
||||
verticalAlignment: control.verticalAlignment
|
||||
visible: !control.length && !control.preeditText && (!control.activeFocus || control.horizontalAlignment !== Qt.AlignHCenter)
|
||||
elide: Text.ElideRight
|
||||
renderType: control.renderType
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "textarea-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.TextField {
|
||||
id: control
|
||||
|
||||
implicitWidth: implicitBackgroundWidth + leftInset + rightInset
|
||||
|| Math.max(contentWidth, placeholder.implicitWidth) + leftPadding + rightPadding
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding,
|
||||
placeholder.implicitHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
color: control.palette.text
|
||||
selectionColor: control.palette.highlight
|
||||
selectedTextColor: control.palette.highlightedText
|
||||
placeholderTextColor: Color.transparent(control.color, 0.5)
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
|
||||
PlaceholderText {
|
||||
id: placeholder
|
||||
x: control.leftPadding
|
||||
y: control.topPadding
|
||||
width: control.width - (control.leftPadding + control.rightPadding)
|
||||
height: control.height - (control.topPadding + control.bottomPadding)
|
||||
|
||||
text: control.placeholderText
|
||||
font: control.font
|
||||
color: control.placeholderTextColor
|
||||
verticalAlignment: control.verticalAlignment
|
||||
visible: !control.length && !control.preeditText && (!control.activeFocus || control.horizontalAlignment !== Qt.AlignHCenter)
|
||||
elide: Text.ElideRight
|
||||
renderType: control.renderType
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "textfield-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.activeFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ToolBar {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "toolbar-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"header": control.position === T.ToolBar.Header },
|
||||
{"footer": control.position === T.ToolBar.Footer },
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ToolButton {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6 // ###
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
icon.width: 24
|
||||
icon.height: 24
|
||||
icon.color: control.palette.buttonText
|
||||
|
||||
contentItem: IconLabel {
|
||||
spacing: control.spacing
|
||||
mirrored: control.mirrored
|
||||
display: control.display
|
||||
|
||||
icon: control.icon
|
||||
text: control.text
|
||||
font: control.font
|
||||
color: control.palette.buttonText
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "toolbutton-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"pressed": control.down},
|
||||
{"checked": control.checked},
|
||||
{"checkable": control.checkable},
|
||||
{"focused": control.visualFocus},
|
||||
{"highlighted": control.highlighted},
|
||||
{"flat": control.flat},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,83 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ToolSeparator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
contentItem: NinePatchImage {
|
||||
source: Imagine.url + "toolseparator-separator"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "toolseparator-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"vertical": control.vertical},
|
||||
{"horizontal": control.horizontal},
|
||||
{"disabled": !control.enabled},
|
||||
{"mirrored": control.mirrored}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.ToolTip {
|
||||
id: control
|
||||
|
||||
x: parent ? (parent.width - implicitWidth) / 2 : 0 - (background ? background.leftInset : 0)
|
||||
y: -implicitHeight - (background ? background.topInset : 0)
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
contentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
contentHeight + topPadding + bottomPadding)
|
||||
|
||||
topMargin: background ? background.topInset : 0
|
||||
leftMargin: background ? background.leftInset : 0
|
||||
rightMargin: background ? background.rightInset : 0
|
||||
bottomMargin: background ? background.bottomInset : 0
|
||||
|
||||
topPadding: background ? background.topPadding : 0
|
||||
leftPadding: background ? background.leftPadding : 0
|
||||
rightPadding: background ? background.rightPadding : 0
|
||||
bottomPadding: background ? background.bottomPadding : 0
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
closePolicy: T.Popup.CloseOnEscape | T.Popup.CloseOnPressOutsideParent | T.Popup.CloseOnReleaseOutsideParent
|
||||
|
||||
contentItem: Text {
|
||||
text: control.text
|
||||
font: control.font
|
||||
wrapMode: Text.Wrap
|
||||
color: control.palette.toolTipText
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "tooltip-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
// ###
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Templates 2.12 as T
|
||||
import QtQuick.Controls 2.12
|
||||
import QtQuick.Controls.impl 2.12
|
||||
import QtQuick.Controls.Imagine 2.12
|
||||
import QtQuick.Controls.Imagine.impl 2.12
|
||||
|
||||
T.Tumbler {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding) || 60 // ### remove 60 in Qt 6
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding) || 200 // ### remove 200 in Qt 6
|
||||
|
||||
topInset: background ? -background.topInset || 0 : 0
|
||||
leftInset: background ? -background.leftInset || 0 : 0
|
||||
rightInset: background ? -background.rightInset || 0 : 0
|
||||
bottomInset: background ? -background.bottomInset || 0 : 0
|
||||
|
||||
delegate: Text {
|
||||
text: modelData
|
||||
font: control.font
|
||||
color: control.palette.text
|
||||
opacity: (1.0 - Math.abs(Tumbler.displacement) / (control.visibleItemCount / 2)) * (control.enabled ? 1 : 0.6)
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
|
||||
contentItem: TumblerView {
|
||||
implicitWidth: 60
|
||||
implicitHeight: 200
|
||||
model: control.model
|
||||
delegate: control.delegate
|
||||
path: Path {
|
||||
startX: control.contentItem.width / 2
|
||||
startY: -control.contentItem.delegateHeight / 2
|
||||
PathLine {
|
||||
x: control.contentItem.width / 2
|
||||
y: (control.visibleItemCount + 1) * control.contentItem.delegateHeight - control.contentItem.delegateHeight / 2
|
||||
}
|
||||
}
|
||||
|
||||
property real delegateHeight: control.availableHeight / control.visibleItemCount
|
||||
}
|
||||
|
||||
background: NinePatchImage {
|
||||
source: Imagine.url + "tumbler-background"
|
||||
NinePatchImageSelector on source {
|
||||
states: [
|
||||
{"disabled": !control.enabled},
|
||||
{"focused": control.visualFocus},
|
||||
{"mirrored": control.mirrored},
|
||||
{"hovered": control.hovered}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2020 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/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 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later 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 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Controls 2.15
|
||||
import QtQuick.Templates 2.15 as T
|
||||
|
||||
T.VerticalHeaderView {
|
||||
id: control
|
||||
|
||||
implicitWidth: contentWidth
|
||||
implicitHeight: syncView ? syncView.height : 0
|
||||
|
||||
delegate: Rectangle {
|
||||
// Qt6: add cellPadding (and font etc) as public API in headerview
|
||||
readonly property real cellPadding: 8
|
||||
|
||||
implicitWidth: Math.max(control.width, text.implicitWidth + (cellPadding * 2))
|
||||
implicitHeight: text.implicitHeight + (cellPadding * 2)
|
||||
color: "#f6f6f6"
|
||||
border.color: "#e4e4e4"
|
||||
|
||||
Text {
|
||||
id: text
|
||||
text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole]
|
||||
: model[control.textRole])
|
||||
: modelData
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
color: "#ff26282a"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,347 @@
|
||||
import QtQuick.tooling 1.2
|
||||
|
||||
// This file describes the plugin-supplied types contained in the library.
|
||||
// It is used for QML tooling purposes only.
|
||||
//
|
||||
// This file was auto-generated by:
|
||||
// 'qmlplugindump -nonrelocatable -dependencies dependencies.json QtQuick.Controls.Imagine 2.15'
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick.Controls 2.0"]
|
||||
Component {
|
||||
name: "QQuickAnimatedImageSelector"
|
||||
prototype: "QQuickImageSelector"
|
||||
exports: ["QtQuick.Controls.Imagine.impl/AnimatedImageSelector 2.3"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
}
|
||||
Component { name: "QQuickAttachedObject"; prototype: "QObject" }
|
||||
Component {
|
||||
name: "QQuickImage"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickImageBase"
|
||||
Enum {
|
||||
name: "HAlignment"
|
||||
values: {
|
||||
"AlignLeft": 1,
|
||||
"AlignRight": 2,
|
||||
"AlignHCenter": 4
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "VAlignment"
|
||||
values: {
|
||||
"AlignTop": 32,
|
||||
"AlignBottom": 64,
|
||||
"AlignVCenter": 128
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "FillMode"
|
||||
values: {
|
||||
"Stretch": 0,
|
||||
"PreserveAspectFit": 1,
|
||||
"PreserveAspectCrop": 2,
|
||||
"Tile": 3,
|
||||
"TileVertically": 4,
|
||||
"TileHorizontally": 5,
|
||||
"Pad": 6
|
||||
}
|
||||
}
|
||||
Property { name: "fillMode"; type: "FillMode" }
|
||||
Property { name: "paintedWidth"; type: "double"; isReadonly: true }
|
||||
Property { name: "paintedHeight"; type: "double"; isReadonly: true }
|
||||
Property { name: "horizontalAlignment"; type: "HAlignment" }
|
||||
Property { name: "verticalAlignment"; type: "VAlignment" }
|
||||
Property { name: "mipmap"; revision: 3; type: "bool" }
|
||||
Property { name: "autoTransform"; revision: 5; type: "bool" }
|
||||
Property { name: "sourceClipRect"; revision: 15; type: "QRectF" }
|
||||
Signal { name: "paintedGeometryChanged" }
|
||||
Signal {
|
||||
name: "horizontalAlignmentChanged"
|
||||
Parameter { name: "alignment"; type: "HAlignment" }
|
||||
}
|
||||
Signal {
|
||||
name: "verticalAlignmentChanged"
|
||||
Parameter { name: "alignment"; type: "VAlignment" }
|
||||
}
|
||||
Signal {
|
||||
name: "mipmapChanged"
|
||||
revision: 3
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal { name: "autoTransformChanged"; revision: 5 }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickImageBase"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickImplicitSizeItem"
|
||||
Enum {
|
||||
name: "LoadPixmapOptions"
|
||||
values: {
|
||||
"NoOption": 0,
|
||||
"HandleDPR": 1,
|
||||
"UseProviderOptions": 2
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "Status"
|
||||
values: {
|
||||
"Null": 0,
|
||||
"Ready": 1,
|
||||
"Loading": 2,
|
||||
"Error": 3
|
||||
}
|
||||
}
|
||||
Property { name: "status"; type: "Status"; isReadonly: true }
|
||||
Property { name: "source"; type: "QUrl" }
|
||||
Property { name: "progress"; type: "double"; isReadonly: true }
|
||||
Property { name: "asynchronous"; type: "bool" }
|
||||
Property { name: "cache"; type: "bool" }
|
||||
Property { name: "sourceSize"; type: "QSize" }
|
||||
Property { name: "mirror"; type: "bool" }
|
||||
Property { name: "currentFrame"; revision: 14; type: "int" }
|
||||
Property { name: "frameCount"; revision: 14; type: "int"; isReadonly: true }
|
||||
Property { name: "colorSpace"; revision: 15; type: "QColorSpace" }
|
||||
Signal {
|
||||
name: "sourceChanged"
|
||||
Parameter { type: "QUrl" }
|
||||
}
|
||||
Signal {
|
||||
name: "statusChanged"
|
||||
Parameter { type: "QQuickImageBase::Status" }
|
||||
}
|
||||
Signal {
|
||||
name: "progressChanged"
|
||||
Parameter { name: "progress"; type: "double" }
|
||||
}
|
||||
Signal { name: "currentFrameChanged"; revision: 14 }
|
||||
Signal { name: "frameCountChanged"; revision: 14 }
|
||||
Signal { name: "sourceClipRectChanged"; revision: 15 }
|
||||
Signal { name: "colorSpaceChanged"; revision: 15 }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickImageSelector"
|
||||
prototype: "QObject"
|
||||
exports: ["QtQuick.Controls.Imagine.impl/ImageSelector 2.3"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "source"; type: "QUrl"; isReadonly: true }
|
||||
Property { name: "name"; type: "string" }
|
||||
Property { name: "path"; type: "string" }
|
||||
Property { name: "states"; type: "QVariantList" }
|
||||
Property { name: "separator"; type: "string" }
|
||||
Property { name: "cache"; type: "bool" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickImagineStyle"
|
||||
prototype: "QQuickAttachedObject"
|
||||
exports: ["QtQuick.Controls.Imagine/Imagine 2.3"]
|
||||
isCreatable: false
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "path"; type: "string" }
|
||||
Property { name: "url"; type: "QUrl"; isReadonly: true }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickImplicitSizeItem"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickItem"
|
||||
Property { name: "implicitWidth"; type: "double"; isReadonly: true }
|
||||
Property { name: "implicitHeight"; type: "double"; isReadonly: true }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickItem"
|
||||
defaultProperty: "data"
|
||||
prototype: "QObject"
|
||||
Enum {
|
||||
name: "Flags"
|
||||
values: {
|
||||
"ItemClipsChildrenToShape": 1,
|
||||
"ItemAcceptsInputMethod": 2,
|
||||
"ItemIsFocusScope": 4,
|
||||
"ItemHasContents": 8,
|
||||
"ItemAcceptsDrops": 16
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "TransformOrigin"
|
||||
values: {
|
||||
"TopLeft": 0,
|
||||
"Top": 1,
|
||||
"TopRight": 2,
|
||||
"Left": 3,
|
||||
"Center": 4,
|
||||
"Right": 5,
|
||||
"BottomLeft": 6,
|
||||
"Bottom": 7,
|
||||
"BottomRight": 8
|
||||
}
|
||||
}
|
||||
Property { name: "parent"; type: "QQuickItem"; isPointer: true }
|
||||
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
|
||||
Property { name: "resources"; type: "QObject"; isList: true; isReadonly: true }
|
||||
Property { name: "children"; type: "QQuickItem"; isList: true; isReadonly: true }
|
||||
Property { name: "x"; type: "double" }
|
||||
Property { name: "y"; type: "double" }
|
||||
Property { name: "z"; type: "double" }
|
||||
Property { name: "width"; type: "double" }
|
||||
Property { name: "height"; type: "double" }
|
||||
Property { name: "opacity"; type: "double" }
|
||||
Property { name: "enabled"; type: "bool" }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "visibleChildren"; type: "QQuickItem"; isList: true; isReadonly: true }
|
||||
Property { name: "states"; type: "QQuickState"; isList: true; isReadonly: true }
|
||||
Property { name: "transitions"; type: "QQuickTransition"; isList: true; isReadonly: true }
|
||||
Property { name: "state"; type: "string" }
|
||||
Property { name: "childrenRect"; type: "QRectF"; isReadonly: true }
|
||||
Property { name: "anchors"; type: "QQuickAnchors"; isReadonly: true; isPointer: true }
|
||||
Property { name: "left"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "right"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "horizontalCenter"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "top"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "bottom"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "verticalCenter"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "baseline"; type: "QQuickAnchorLine"; isReadonly: true }
|
||||
Property { name: "baselineOffset"; type: "double" }
|
||||
Property { name: "clip"; type: "bool" }
|
||||
Property { name: "focus"; type: "bool" }
|
||||
Property { name: "activeFocus"; type: "bool"; isReadonly: true }
|
||||
Property { name: "activeFocusOnTab"; revision: 1; type: "bool" }
|
||||
Property { name: "rotation"; type: "double" }
|
||||
Property { name: "scale"; type: "double" }
|
||||
Property { name: "transformOrigin"; type: "TransformOrigin" }
|
||||
Property { name: "transformOriginPoint"; type: "QPointF"; isReadonly: true }
|
||||
Property { name: "transform"; type: "QQuickTransform"; isList: true; isReadonly: true }
|
||||
Property { name: "smooth"; type: "bool" }
|
||||
Property { name: "antialiasing"; type: "bool" }
|
||||
Property { name: "implicitWidth"; type: "double" }
|
||||
Property { name: "implicitHeight"; type: "double" }
|
||||
Property { name: "containmentMask"; revision: 11; type: "QObject"; isPointer: true }
|
||||
Property { name: "layer"; type: "QQuickItemLayer"; isReadonly: true; isPointer: true }
|
||||
Signal {
|
||||
name: "childrenRectChanged"
|
||||
Parameter { type: "QRectF" }
|
||||
}
|
||||
Signal {
|
||||
name: "baselineOffsetChanged"
|
||||
Parameter { type: "double" }
|
||||
}
|
||||
Signal {
|
||||
name: "stateChanged"
|
||||
Parameter { type: "string" }
|
||||
}
|
||||
Signal {
|
||||
name: "focusChanged"
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "activeFocusChanged"
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "activeFocusOnTabChanged"
|
||||
revision: 1
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "parentChanged"
|
||||
Parameter { type: "QQuickItem"; isPointer: true }
|
||||
}
|
||||
Signal {
|
||||
name: "transformOriginChanged"
|
||||
Parameter { type: "TransformOrigin" }
|
||||
}
|
||||
Signal {
|
||||
name: "smoothChanged"
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "antialiasingChanged"
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "clipChanged"
|
||||
Parameter { type: "bool" }
|
||||
}
|
||||
Signal {
|
||||
name: "windowChanged"
|
||||
revision: 1
|
||||
Parameter { name: "window"; type: "QQuickWindow"; isPointer: true }
|
||||
}
|
||||
Signal { name: "containmentMaskChanged"; revision: 11 }
|
||||
Method { name: "update" }
|
||||
Method {
|
||||
name: "grabToImage"
|
||||
revision: 4
|
||||
type: "bool"
|
||||
Parameter { name: "callback"; type: "QJSValue" }
|
||||
Parameter { name: "targetSize"; type: "QSize" }
|
||||
}
|
||||
Method {
|
||||
name: "grabToImage"
|
||||
revision: 4
|
||||
type: "bool"
|
||||
Parameter { name: "callback"; type: "QJSValue" }
|
||||
}
|
||||
Method {
|
||||
name: "contains"
|
||||
type: "bool"
|
||||
Parameter { name: "point"; type: "QPointF" }
|
||||
}
|
||||
Method {
|
||||
name: "mapFromItem"
|
||||
Parameter { type: "QQmlV4Function"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "mapToItem"
|
||||
Parameter { type: "QQmlV4Function"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "mapFromGlobal"
|
||||
revision: 7
|
||||
Parameter { type: "QQmlV4Function"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "mapToGlobal"
|
||||
revision: 7
|
||||
Parameter { type: "QQmlV4Function"; isPointer: true }
|
||||
}
|
||||
Method { name: "forceActiveFocus" }
|
||||
Method {
|
||||
name: "forceActiveFocus"
|
||||
Parameter { name: "reason"; type: "Qt::FocusReason" }
|
||||
}
|
||||
Method {
|
||||
name: "nextItemInFocusChain"
|
||||
revision: 1
|
||||
type: "QQuickItem*"
|
||||
Parameter { name: "forward"; type: "bool" }
|
||||
}
|
||||
Method { name: "nextItemInFocusChain"; revision: 1; type: "QQuickItem*" }
|
||||
Method {
|
||||
name: "childAt"
|
||||
type: "QQuickItem*"
|
||||
Parameter { name: "x"; type: "double" }
|
||||
Parameter { name: "y"; type: "double" }
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "QQuickNinePatchImage"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickImage"
|
||||
exports: ["QtQuick.Controls.Imagine.impl/NinePatchImage 2.3"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "topPadding"; type: "double"; isReadonly: true }
|
||||
Property { name: "leftPadding"; type: "double"; isReadonly: true }
|
||||
Property { name: "rightPadding"; type: "double"; isReadonly: true }
|
||||
Property { name: "bottomPadding"; type: "double"; isReadonly: true }
|
||||
Property { name: "topInset"; type: "double"; isReadonly: true }
|
||||
Property { name: "leftInset"; type: "double"; isReadonly: true }
|
||||
Property { name: "rightInset"; type: "double"; isReadonly: true }
|
||||
Property { name: "bottomInset"; type: "double"; isReadonly: true }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickNinePatchImageSelector"
|
||||
prototype: "QQuickImageSelector"
|
||||
exports: ["QtQuick.Controls.Imagine.impl/NinePatchImageSelector 2.3"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
module QtQuick.Controls.Imagine
|
||||
plugin qtquickcontrols2imaginestyleplugin
|
||||
classname QtQuickControls2ImagineStylePlugin
|
||||
depends QtQuick.Controls 2.5
|
||||
depends QtGraphicalEffects 1.0
|
||||
Binary file not shown.
Reference in New Issue
Block a user