Warning, /sdk/cutehmi/extensions/CuteHMI/Symbols/HVAC.1/BasicCooler.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.0
0002 
0003 /**
0004   Basic cooler.
0005   */
0006 HeatExchanger {
0007         id: root
0008 
0009         content: Component {
0010                 SymbolCanvas {
0011                         element: root
0012 
0013                         onPaint: {
0014                                 var ctx = getContext("2d")
0015                                 ctx.save()
0016                                 ctx.reset()
0017 
0018                                 ctx.lineWidth = root.units.strokeWidth
0019                                 ctx.fillStyle = root.color.background
0020                                 ctx.strokeStyle = root.color.foreground
0021 
0022                                 // Draw minus symbol with radius r.
0023                                 var r = width * 0.25
0024                                 var xCenter = width * 0.5
0025                                 var yCenter = height * 0.5
0026 
0027                                 // Draw circle.
0028                                 ctx.beginPath()
0029                                 ctx.arc(xCenter, yCenter, r, 0, 2 * Math.PI)
0030                                 ctx.fill()
0031                                 ctx.stroke()
0032 
0033                                 // Draw minus.
0034                                 ctx.beginPath()
0035                                 ctx.moveTo(xCenter - r * 0.5, yCenter)
0036                                 ctx.lineTo(xCenter + r * 0.5, yCenter)
0037                                 ctx.stroke()
0038 
0039                                 ctx.restore()
0040                         }
0041                 }
0042         }
0043 }
0044 
0045 //(c)C: Copyright © 2020, Michał Policht <michal@policht.pl>. All rights reserved.
0046 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0047 //(c)C: This file is a part of CuteHMI.
0048 //(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.
0049 //(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.
0050 //(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/>.
0051 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0052 //(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:
0053 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0054 //(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.