Warning, /sdk/cutehmi/extensions/CuteHMI/Examples/Modbus/Requests.3/MaskWrite4xRegisterControl.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2
0002 import QtQuick.Controls 2.0
0003 import QtQuick.Layouts 1.0
0004
0005 import CuteHMI.Modbus 4.0
0006
0007 RowLayout {
0008 property AbstractDevice device
0009
0010 property int andMask: 0
0011 property int orMask: 0
0012
0013 Button {
0014 text: "Mask write 4X register"
0015 onClicked: device.requestMaskWriteHoldingRegister(addressBox.value, parent.andMask, parent.orMask)
0016 }
0017
0018 Label {
0019 text: qsTr("Address:")
0020 }
0021
0022 SpinBox {
0023 id: addressBox
0024
0025 editable: true
0026 from: 0
0027 to: 65535
0028 }
0029
0030 Label {
0031 text: qsTr("And mask (hex):")
0032 }
0033
0034 TextField {
0035 text: "0x" + parent.andMask.toString(16)
0036 validator: RegularExpressionValidator {
0037 regularExpression: /0x[0-9A-Fa-f]{1,4}/
0038 }
0039
0040 onAccepted: parent.andMask = parseInt(text)
0041 }
0042
0043 Label {
0044 text: qsTr("Or mask (hex):")
0045 }
0046
0047 TextField {
0048 text: "0x" + parent.orMask.toString(16)
0049 validator: RegularExpressionValidator {
0050 regularExpression: /0x[0-9A-Fa-f]{1,4}/
0051 }
0052
0053 onAccepted: parent.orMask = parseInt(text)
0054 }
0055 }
0056
0057 //(c)C: Copyright © 2022-2024, Michał Policht <michal@policht.pl>. All rights reserved.
0058 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0059 //(c)C: This file is a part of CuteHMI.
0060 //(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.
0061 //(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.
0062 //(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/>.
0063 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0064 //(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:
0065 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0066 //(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.