Warning, /sdk/cutehmi/extensions/CuteHMI/DataAcquisition.1/Console.qml is written in an unsupported language. File is not indexed.

0001 import QtQml 2.0
0002 
0003 import CuteHMI.Services 2.0
0004 import CuteHMI.SharedDatabase 0.0
0005 import CuteHMI.DataAcquisition 0.0
0006 
0007 QtObject {
0008         objectName: "console"
0009 
0010         property Database db: Database {
0011                 objectName: "db"
0012 
0013                 connectionName: "cutehmi::dataacquisition"
0014                 type: "QSQLITE"
0015                 host: "localhost"
0016                 port: 5432
0017                 name: "cutehmi_dataacquisition"
0018                 user: "postgres"
0019                 password: "postgres"
0020                 threaded: false
0021 
0022                 /**
0023                   Set PostgreSQL default settings.
0024                   */
0025                 function setPostgresDefaults() {
0026                         type = "QPSQL"
0027                         host = "localhost"
0028                         port = 5432
0029                         name = "postgres"
0030                         user = "postgres"
0031                         passowrd = "postgres"
0032                 }
0033 
0034                 /**
0035                   Set SQLite default settings.
0036                   */
0037                 function setSQLiteDefaults() {
0038                         type = "QSQLITE"
0039                         name = "cutehmi_dataacquisition"
0040                 }
0041         }
0042 
0043         property Schema schema: Schema {
0044                 objectName: "schema"
0045                 name: "cutehmi_dataacquisition"
0046 
0047                 connectionName: "cutehmi::dataacquisition"
0048         }
0049 
0050         property Service service: Service {
0051                 objectName: "service"
0052 
0053                 name: "Database Service"
0054                 serviceable: db
0055         }
0056 }
0057 
0058 //(c)C: Copyright © 2022, Michał Policht <michal@policht.pl>. All rights reserved.
0059 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0060 //(c)C: This file is a part of CuteHMI.
0061 //(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.
0062 //(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.
0063 //(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/>.
0064 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0065 //(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:
0066 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0067 //(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.