Warning, /sdk/cutehmi/extensions/CuteHMI/Examples/Modbus/Requests.3/DeviceControl.qml is written in an unsupported language. File is not indexed.
0001 import QtQml 2.2 0002 import QtQuick 2.11 0003 import QtQuick.Layouts 1.3 0004 import QtQuick.Controls 2.1 0005 0006 import CuteHMI.Modbus 4.0 0007 import CuteHMI.Services 3.0 0008 0009 ColumnLayout { 0010 id: root 0011 0012 property AbstractDevice device 0013 property Item configurationItem 0014 property alias text: label.text 0015 0016 RowLayout { 0017 Label { 0018 id: label 0019 0020 text: qsTr("Device state:") 0021 } 0022 0023 Label { 0024 text: { 0025 switch (device.state) { 0026 case AbstractDevice.OPENING: 0027 return qsTr("Opening") 0028 case AbstractDevice.OPENED: 0029 return qsTr("Opened") 0030 case AbstractDevice.CLOSING: 0031 return qsTr("Closing") 0032 case AbstractDevice.CLOSED: 0033 return qsTr("Closed") 0034 default: 0035 return qsTr("Unrecognized state") 0036 } 0037 } 0038 } 0039 } 0040 0041 GroupBox { 0042 contentItem: configurationItem 0043 } 0044 0045 Row { 0046 Layout.alignment: Qt.AlignRight 0047 0048 spacing: 5 0049 0050 Button { 0051 text: qsTr("Open") 0052 onClicked: device.open() 0053 } 0054 0055 Button { 0056 text: qsTr("Close") 0057 onClicked: device.close() 0058 } 0059 } 0060 } 0061 0062 //(c)C: Copyright © 2022, Michał Policht <michal@policht.pl>. All rights reserved. 0063 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT 0064 //(c)C: This file is a part of CuteHMI. 0065 //(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. 0066 //(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. 0067 //(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/>. 0068 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below. 0069 //(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: 0070 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 0071 //(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.