summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml')
-rw-r--r--src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml147
1 files changed, 147 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml b/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml
new file mode 100644
index 0000000000..936d0c42e1
--- /dev/null
+++ b/src/plugins/qmldesigner/componentsplugin/Controls/SliderSpecifics.qml
@@ -0,0 +1,147 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+import HelperWidgets 2.0
+import QtQuick 2.1
+import QtQuick.Layouts 1.1
+Section {
+ caption: "Slider"
+ SectionLayout {
+ Label {
+ text: qsTr("Value")
+ toolTip: qsTr("Current value of the Slider. The default value is 0.0.")
+ }
+ SecondColumnLayout {
+ SpinBox {
+ maximumValue: backendValues.maximumValue.value
+ minimumValue: backendValues.minimumValue.value
+ decimals: 2
+ stepSize: backendValues.stepSize.value
+ backendValue: backendValues.value
+ implicitWidth: 180
+ }
+ ExpandingSpacer {}
+ }
+ Label {
+ text: qsTr("Maximum Value")
+ toolTip: qsTr("This property holds the maximum value of the Slider The default value is 1.0.")
+ }
+ SecondColumnLayout {
+ SpinBox {
+ maximumValue: 9999999
+ minimumValue: -9999999
+ decimals: 2
+ backendValue: backendValues.maximumValue
+ implicitWidth: 180
+ }
+ ExpandingSpacer {
+
+ }
+ }
+ Label {
+ text: qsTr("Minimum Value")
+ toolTip: qsTr("This property holds the minimum value of the Slider. The default value is 0.0.")
+ }
+ SecondColumnLayout {
+ SpinBox {
+ maximumValue: 9999999
+ minimumValue: -9999999
+ decimals: 2
+ backendValue: backendValues.minimumValue
+ implicitWidth: 180
+ }
+ ExpandingSpacer {
+
+ }
+ }
+ Label {
+ text: qsTr("Orientation")
+ toolTip: qsTr("This property holds the layout orientation of the Slider.")
+ }
+ SecondColumnLayout {
+ OrientationCombobox {
+ }
+ ExpandingSpacer {
+
+ }
+ }
+ Label {
+ text: qsTr("Step Size")
+ toolTip: qsTr("This property indicates the Slider step size.")
+ }
+ SecondColumnLayout {
+ SpinBox {
+ maximumValue: 9999999
+ minimumValue: -9999999
+ decimals: 2
+ backendValue: backendValues.stepSize
+ implicitWidth: 180
+ }
+ ExpandingSpacer {}
+ }
+
+ Label {
+ text: qsTr("Active Focus On Press")
+ toolTip: qsTr("This property indicates whether the Slider should receive active focus when pressed.")
+ }
+
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.activeFocusOnPress.valueToString
+ backendValue: backendValues.activeFocusOnPress
+ implicitWidth: 180
+ }
+ ExpandingSpacer {}
+ }
+ Label {
+ text: qsTr("Tickmarks Enabled")
+ toolTip: qsTr("TIndicates whether the Slider should display tickmarks at step intervals.")
+ }
+
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.tickmarksEnabled.valueToString
+ backendValue: backendValues.tickmarksEnabled
+ implicitWidth: 180
+ }
+ ExpandingSpacer {}
+ }
+ Label {
+ text: qsTr("Update Value While Dragging")
+ toolTip: qsTr("Current value should be updated while the user is moving the Slider handle, or only when the button has been released.")
+ }
+
+ SecondColumnLayout {
+ CheckBox {
+ text: backendValues.updateValueWhileDragging.valueToString
+ backendValue: backendValues.updateValueWhileDragging
+ implicitWidth: 180
+ }
+ }
+ }
+}