/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Quick Extras module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://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.LGPL3 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-3.0.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 (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 as Base import QtQuick.Controls.Styles.Flat 1.0 import QtQuick.Controls.Private 1.0 Base.SpinBoxStyle { padding { top: 0; left: 0; right: 0; bottom: 0 } renderType: FlatStyle.__renderType panel: Item { property int horizontalAlignment: Qt.AlignHCenter property int verticalAlignment: Qt.AlignVCenter property color foregroundColor: !control.enabled ? FlatStyle.mediumFrameColor : FlatStyle.defaultTextColor property color selectionColor: FlatStyle.highlightColor property color selectedTextColor: FlatStyle.selectedTextColor property var margins: QtObject { readonly property real top: 2 * FlatStyle.scaleFactor readonly property real left: decrement.width readonly property real right: increment.width readonly property real bottom: 2 * FlatStyle.scaleFactor } property rect upRect: Qt.rect(increment.x, increment.y, increment.width, increment.height) property rect downRect: Qt.rect(decrement.x, decrement.y, decrement.width, decrement.height) property font font font.family: FlatStyle.fontFamily implicitWidth: Math.round(100 * FlatStyle.scaleFactor) implicitHeight: Math.round(26 * FlatStyle.scaleFactor) Item { id: decrement clip: true width: Math.round(28 * FlatStyle.scaleFactor) height: parent.height Rectangle { width: parent.width + FlatStyle.radius height: parent.height color: !control.enabled ? FlatStyle.lightFrameColor : control.activeFocus && styleData.downPressed ? FlatStyle.checkedFocusedAndPressedColor : control.activeFocus ? FlatStyle.highlightColor : styleData.downPressed ? FlatStyle.checkedAndPressedColor : FlatStyle.styleColor radius: FlatStyle.radius } Rectangle { color: FlatStyle.backgroundColor width: Math.round(10 * FlatStyle.scaleFactor) height: Math.round(2 * FlatStyle.scaleFactor) anchors.horizontalCenter: parent.left anchors.horizontalCenterOffset: Math.round(14 * FlatStyle.scaleFactor) anchors.verticalCenter: parent.verticalCenter } } Item { id: increment clip: true width: Math.round(28 * FlatStyle.scaleFactor) height: parent.height anchors.right: parent.right Rectangle { width: parent.width + FlatStyle.radius height: parent.height anchors.right: parent.right color: !control.enabled ? FlatStyle.lightFrameColor : control.activeFocus && styleData.upPressed ? FlatStyle.checkedFocusedAndPressedColor : control.activeFocus ? FlatStyle.highlightColor : styleData.upPressed ? FlatStyle.checkedAndPressedColor : FlatStyle.styleColor radius: FlatStyle.radius } Rectangle { color: FlatStyle.backgroundColor width: Math.round(10 * FlatStyle.scaleFactor) height: Math.round(2 * FlatStyle.scaleFactor) anchors.horizontalCenter: parent.right anchors.horizontalCenterOffset: Math.round(-14 * FlatStyle.scaleFactor) anchors.verticalCenter: parent.verticalCenter } Rectangle { color: FlatStyle.backgroundColor width: Math.round(2 * FlatStyle.scaleFactor) height: Math.round(10 * FlatStyle.scaleFactor) anchors.horizontalCenter: parent.right anchors.horizontalCenterOffset: Math.round(-14 * FlatStyle.scaleFactor) anchors.verticalCenter: parent.verticalCenter } } Rectangle { id: frame anchors.fill: parent anchors.leftMargin: decrement.width anchors.rightMargin: increment.width color: !control.enabled ? "transparent" : control.activeFocus ? FlatStyle.highlightColor : FlatStyle.mediumFrameColor Rectangle { id: field anchors.fill: parent anchors.topMargin: Math.round((!control.enabled ? 0 : control.activeFocus ? 2 : 1) * FlatStyle.scaleFactor) anchors.bottomMargin: Math.round((!control.enabled ? 0 : control.activeFocus ? 2 : 1) * FlatStyle.scaleFactor) color: !control.enabled ? FlatStyle.disabledColor : FlatStyle.backgroundColor opacity: !control.enabled ? 0.1 : 1.0 } } } __selectionHandle: null __cursorHandle: null }