Warning, /sdk/cutehmi/extensions/CuteHMI/Examples/Symbols/HVAC/Gallery.2/ElementSettings.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.0
0002 import QtQuick.Controls 2.5
0003 import QtQuick.Layouts 1.3
0004
0005 import CuteHMI.GUI 1.0
0006
0007 ColumnLayout {
0008 Layout.fillWidth: true
0009
0010 property Element element
0011
0012 GroupBox {
0013 Layout.fillWidth: true
0014
0015 title: qsTr("Common properties")
0016
0017 ColumnLayout {
0018 CheckBox {
0019 text: qsTr("Neutral")
0020
0021 onCheckedChanged: checked ? element.colorSet = Theme.palette.neutral : element.colorSet = Qt.binding(element.currentStateColorSet)
0022 }
0023
0024 CheckBox {
0025 text: qsTr("Active")
0026
0027 checked: element.active
0028
0029 onCheckedChanged: element.active = checked
0030 }
0031
0032 CheckBox {
0033 text: qsTr("Warning")
0034
0035 checked: element.warning
0036
0037 onCheckedChanged: element.warning = checked
0038 }
0039
0040 CheckBox {
0041 text: qsTr("Alarm")
0042
0043 checked: element.alarm
0044
0045 onCheckedChanged: element.alarm = checked
0046 }
0047
0048 CheckBox {
0049 text: qsTr("Indirect warning")
0050
0051 checked: element.indirectWarning
0052
0053 onCheckedChanged: element.indirectWarning = checked
0054 }
0055
0056 CheckBox {
0057 text: qsTr("Indirect alarm")
0058
0059 checked: element.indirectAlarm
0060
0061 onCheckedChanged: element.indirectAlarm = checked
0062 }
0063 }
0064 }
0065 }
0066
0067 //(c)C: Copyright © 2020, Michał Policht <michal@policht.pl>. All rights reserved.
0068 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0069 //(c)C: This file is a part of CuteHMI.
0070 //(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.
0071 //(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.
0072 //(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/>.
0073 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0074 //(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:
0075 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0076 //(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.