Warning, /sdk/cutehmi/extensions/CuteHMI/Examples/Symbols/HVAC/Gallery.2/ValveSettings.qml is written in an unsupported language. File is not indexed.

0001 import QtQml 2.2
0002 import QtQuick 2.11
0003 import QtQuick.Controls 2.1
0004 import QtQuick.Layouts 1.3
0005 
0006 import CuteHMI.Symbols.HVAC 1.0
0007 
0008 ElementSettings {
0009         element: valve
0010 
0011         property Valve valve
0012 
0013         GroupBox {
0014                 title: qsTr("Custom properties")
0015 
0016                 Layout.fillWidth: true
0017 
0018                 GridLayout {
0019                         columns: 2
0020 
0021                         Label {
0022                                 Layout.alignment: Qt.AlignRight
0023 
0024                                 text: qsTr("Left way:")
0025                         }
0026 
0027                         CheckBox {
0028                                 checked: valve.leftWay
0029 
0030                                 onCheckedChanged: valve.leftWay = checked
0031                         }
0032 
0033 
0034                         Label {
0035                                 Layout.alignment: Qt.AlignRight
0036 
0037                                 text: qsTr("Right way:")
0038                         }
0039 
0040                         CheckBox {
0041                                 checked: valve.rightWay
0042 
0043                                 onCheckedChanged: valve.rightWay = checked
0044                         }
0045 
0046                         Label {
0047                                 Layout.alignment: Qt.AlignRight
0048 
0049                                 text: qsTr("Top way:")
0050                         }
0051 
0052                         CheckBox {
0053                                 checked: valve.topWay
0054 
0055                                 onCheckedChanged: valve.topWay = checked
0056                         }
0057 
0058                         Label {
0059                                 Layout.alignment: Qt.AlignRight
0060 
0061                                 text: qsTr("Bottom way:")
0062                         }
0063 
0064                         CheckBox {
0065                                 checked: valve.bottomWay
0066 
0067                                 onCheckedChanged: valve.bottomWay = checked
0068                         }
0069 
0070                         Label {
0071                                 Layout.alignment: Qt.AlignRight
0072 
0073                                 text: qsTr("Left closed:")
0074                         }
0075 
0076                         CheckBox {
0077                                 checked: valve.leftClosed
0078 
0079                                 onCheckedChanged: valve.leftClosed = checked
0080                         }
0081 
0082                         Label {
0083                                 Layout.alignment: Qt.AlignRight
0084 
0085                                 text: qsTr("Right closed:")
0086                         }
0087 
0088                         CheckBox {
0089                                 checked: valve.rightClosed
0090 
0091                                 onCheckedChanged: valve.rightClosed = checked
0092                         }
0093 
0094                         Label {
0095                                 Layout.alignment: Qt.AlignRight
0096 
0097                                 text: qsTr("Top closed:")
0098                         }
0099 
0100                         CheckBox {
0101                                 checked: valve.topClosed
0102 
0103                                 onCheckedChanged: valve.topClosed = checked
0104                         }
0105 
0106                         Label {
0107                                 Layout.alignment: Qt.AlignRight
0108 
0109                                 text: qsTr("Bottom closed:")
0110                         }
0111 
0112                         CheckBox {
0113                                 checked: valve.bottomClosed
0114 
0115                                 onCheckedChanged: valve.bottomClosed = checked
0116                         }
0117                 }
0118         }
0119 }
0120 
0121 //(c)C: Copyright © 2020, Michał Policht <michal@policht.pl>. All rights reserved.
0122 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0123 //(c)C: This file is a part of CuteHMI.
0124 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
0125 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
0126 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0127 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0128 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0129 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0130 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.