Warning, /sdk/cutehmi/tools/cutehmi.daemon.3/qml/ExtensionLoader.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.0
0002 
0003 import CuteHMI 2.0 as CuteHMI
0004 
0005 QtObject {
0006         id: extensionContainer
0007 
0008         Component.onCompleted: {
0009                 if (cutehmi_daemon_extensionBaseName && cutehmi_daemon_extensionMajor && cutehmi_daemon_extensionMinor) {
0010                         var qmlData = "import " + cutehmi_daemon_extensionBaseName + " " + cutehmi_daemon_extensionMajor + "." + cutehmi_daemon_extensionMinor
0011                         qmlData += "\n" + cutehmi_daemon_extensionComponent + " {}\n"
0012 
0013                         try {
0014                                 Qt.createQmlObject(qmlData, extensionContainer)
0015                         } catch(error) {
0016                                 var informativeText = qsTr("Reasons:")
0017                                 informativeText += "\n" + error.qmlErrors.map(function (obj) { return "- " + obj.message }).join("\n") + "."
0018 
0019                                 var extensionName = cutehmi_daemon_extensionBaseName + " " + cutehmi_daemon_extensionMajor + "." + cutehmi_daemon_extensionMinor
0020                                 console.error(qsTr("Could not load extension '%1'.").arg(extensionName))
0021                                 console.error(informativeText)
0022                                 Qt.exit(1)
0023                         }
0024                 } else {
0025                         console.log("No extension specified.")
0026                         console.log("Use --help to see available options.")
0027                         Qt.quit()
0028                 }
0029         }
0030 }
0031 
0032 //(c)C: Copyright © 2020, Michał Policht <michal@policht.pl>. All rights reserved.
0033 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0034 //(c)C: This file is a part of CuteHMI.
0035 //(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.
0036 //(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.
0037 //(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/>.
0038 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0039 //(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:
0040 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0041 //(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.