Warning, /sdk/cutehmi/extensions/CuteHMI/Modbus.4/HoldingRegisterItem.qml is written in an unsupported language. File is not indexed.

0001 import QtQml 2.8
0002 import QtQuick 2.8
0003 import QtQuick.Controls 2.1
0004 
0005 import CuteHMI.Modbus 4.0
0006 
0007 import "RegisterItem.js" as Private
0008 
0009 /**
0010   Holding register item.
0011 
0012   This item is provided as a supplement to HoldingRegisterController and it is intended to be used in Qt Creator "Design" mode.
0013   */
0014 Item {
0015         id: root
0016 
0017         implicitWidth: 50.0
0018         implicitHeight: 50.0
0019 
0020         property var delegate: parent
0021         property string delegateProperty: "value"
0022         property bool readOnly: false
0023 
0024         property HoldingRegisterController controller: HoldingRegisterController {}
0025 
0026         property var busyIndicator: BusyIndicator {
0027                 anchors.centerIn: parent
0028 
0029                 parent: root
0030                 visible: root.enabled
0031                 running: root.controller.busy || !controller.initialized
0032         }
0033 
0034         // Private properties.
0035         QtObject {
0036                 id: p
0037 
0038                 property var delegateValue: delegate[delegateProperty]
0039         }
0040 
0041         Component.onCompleted: Private.onCompleted()
0042 
0043         Component.onDestruction: Private.onDestruction()
0044 
0045         onReadOnlyChanged: Private.onReadOnlyChanged()
0046 }
0047 
0048 //(c)C: Copyright © 2022-2024, Michał Policht <michal@policht.pl>. All rights reserved.
0049 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0050 //(c)C: This file is a part of CuteHMI.
0051 //(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.
0052 //(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.
0053 //(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/>.
0054 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0055 //(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:
0056 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0057 //(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.