PwmFan.qml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. /*
  2. * Copyright (C) 2015 Malte Veerman <maldela@halloarsch.de>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public License along
  15. * with this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17. *
  18. */
  19. import QtQuick 2.4
  20. import QtQuick.Controls 1.4
  21. import QtQuick.Layouts 1.1
  22. import "../scripts/math.js" as MoreMath
  23. import "../scripts/units.js" as Units
  24. import "../scripts/colors.js" as Colors
  25. Rectangle {
  26. property QtObject fan
  27. property QtObject systemdCom
  28. property QtObject tempModel
  29. property real minTemp: 40.0
  30. property real maxTemp: 90.0
  31. property int margin: 5
  32. property int unit: 0
  33. property real convertedMinTemp: Units.fromCelsius(minTemp, unit)
  34. property real convertedMaxTemp: Units.fromCelsius(maxTemp, unit)
  35. id: root
  36. color: "transparent"
  37. border.color: palette.windowText
  38. border.width: 2
  39. radius: 10
  40. clip: false
  41. onMinTempChanged: if (!!fan) meshCanvas.requestPaint()
  42. onMaxTempChanged: if (!!fan) meshCanvas.requestPaint()
  43. onUnitChanged: if (!!fan) meshCanvas.requestRepaint()
  44. onFanChanged: if (!!fan && fan.hasTemp) tempBox.currentIndex = tempModel.temps.indexOf(fan.temp)
  45. SystemPalette {
  46. id: palette
  47. colorGroup: SystemPalette.Active
  48. }
  49. SystemPalette {
  50. id: disabledPalette
  51. colorGroup: SystemPalette.Disabled
  52. }
  53. TextEdit {
  54. id: nameField
  55. anchors {
  56. left: parent.left
  57. leftMargin: margin
  58. right: parent.right
  59. rightMargin: margin
  60. top: parent.top
  61. topMargin: margin
  62. }
  63. visible: root.height >= height + margin*2
  64. text: !!fan ? fan.name : ""
  65. color: palette.text
  66. horizontalAlignment: TextEdit.AlignLeft
  67. wrapMode: TextEdit.Wrap
  68. font.bold: true
  69. font.pointSize: 14
  70. selectByMouse: true
  71. onTextChanged: {
  72. if (!!fan) {
  73. fan.name = text;
  74. }
  75. }
  76. MouseArea {
  77. anchors.fill: parent
  78. cursorShape: Qt.IBeamCursor
  79. acceptedButtons: Qt.NoButton
  80. }
  81. }
  82. Item {
  83. id: graph
  84. property int fontSize: MoreMath.bound(8, height / 20 + 1, 16)
  85. property QtObject pal: !!fan ? fan.hasTemp ? palette : disabledPalette : disabledPalette
  86. property string suffix: (root.unit == 0) ? "°C" : (root.unit == 1) ? "K" : "°F"
  87. property int verticalScalaCount: 6
  88. property var horIntervals: MoreMath.intervals(root.convertedMinTemp, root.convertedMaxTemp, 10)
  89. anchors {
  90. left: parent.left
  91. right: parent.right
  92. top: nameField.bottom
  93. bottom: settingsArea.top
  94. }
  95. visible: background.height > 0 && background.width > 0
  96. Item {
  97. id: verticalScala
  98. anchors {
  99. top: background.top
  100. bottom: background.bottom
  101. left: parent.left
  102. }
  103. width: graph.fontSize * 3
  104. Repeater {
  105. model: graph.verticalScalaCount
  106. Label {
  107. x: 0
  108. width: verticalScala.width - graph.fontSize / 3
  109. y: background.scaleY(255 / (graph.verticalScalaCount - 1) * index) - graph.fontSize / 2
  110. horizontalAlignment: Text.AlignRight
  111. color: graph.pal.text
  112. text: index * (100 / (graph.verticalScalaCount - 1)) + "%"
  113. font.pixelSize: graph.fontSize
  114. }
  115. }
  116. }
  117. Item {
  118. id: horizontalScala
  119. anchors {
  120. right: background.right
  121. bottom: parent.bottom
  122. left: background.left
  123. }
  124. height: graph.fontSize * 2
  125. Repeater {
  126. model: graph.horIntervals.length;
  127. Label {
  128. x: Math.min(horizontalScala.width, background.scaleX(Units.toCelsius(graph.horIntervals[index]), root.unit)) - width / 2
  129. y: graph.fontSize / 2
  130. color: graph.pal.text
  131. text: graph.horIntervals[index] + graph.suffix
  132. font.pixelSize: graph.fontSize
  133. }
  134. }
  135. }
  136. Rectangle {
  137. id: background
  138. property alias pal: graph.pal
  139. color: pal.light
  140. border.color: pal.text
  141. border.width: 2
  142. radius: 1
  143. anchors {
  144. top: parent.top
  145. left: verticalScala.right
  146. bottom: horizontalScala.top
  147. right: parent.right
  148. topMargin: parent.fontSize
  149. bottomMargin: 0
  150. rightMargin: parent.fontSize * 2
  151. leftMargin: 0
  152. }
  153. function scaleX(temp) {
  154. return (temp - minTemp) * width / (maxTemp - minTemp);
  155. }
  156. function scaleY(pwm) {
  157. return height - pwm * height / 255;
  158. }
  159. function scaleTemp(x) {
  160. return x / width * (maxTemp - minTemp) + minTemp;
  161. }
  162. function scalePwm(y) {
  163. return 255 - y / height * 255;
  164. }
  165. Canvas {
  166. id: bgCanvas
  167. anchors.fill: parent
  168. anchors.margins: parent.border.width
  169. renderStrategy: Canvas.Cooperative
  170. property alias pal: background.pal
  171. onPaint: {
  172. var c = bgCanvas.getContext("2d");
  173. c.clearRect(0, 0, width, height);
  174. var gradient = c.createLinearGradient(0, 0, width, 0);
  175. gradient.addColorStop(0, "rgb(0, 0, 255)");
  176. gradient.addColorStop(1, "rgb(255, 0, 0)");
  177. c.fillStyle = gradient;
  178. c.lineWidth = graph.fontSize / 3;
  179. c.strokeStyle = gradient;
  180. c.lineJoin = "round";
  181. c.beginPath();
  182. if (fanOffCheckBox.checked) {
  183. c.moveTo(stopPoint.centerX, height);
  184. } else {
  185. c.moveTo(0, stopPoint.centerY);
  186. }
  187. c.lineTo(stopPoint.centerX, stopPoint.centerY);
  188. c.lineTo(maxPoint.centerX, maxPoint.centerY);
  189. c.lineTo(width, maxPoint.centerY);
  190. c.stroke();
  191. c.lineTo(width, height);
  192. if (fanOffCheckBox.checked) {
  193. c.lineTo(stopPoint.centerX, height);
  194. } else {
  195. c.lineTo(0, height);
  196. }
  197. c.fill();
  198. //blend background
  199. gradient = c.createLinearGradient(0, 0, 0, height);
  200. gradient.addColorStop(0, Colors.setAlpha(background.color, 0.5));
  201. gradient.addColorStop(1, Colors.setAlpha(background.color, 0.9));
  202. c.fillStyle = gradient;
  203. c.fill();
  204. }
  205. }
  206. Canvas {
  207. id: meshCanvas
  208. anchors.fill: parent
  209. anchors.margins: parent.border.width
  210. renderStrategy: Canvas.Cooperative
  211. property alias pal: background.pal
  212. onPaint: {
  213. var c = meshCanvas.getContext("2d");
  214. c.clearRect(0, 0, width, height);
  215. //draw mesh
  216. c.beginPath();
  217. c.strokeStyle = Colors.setAlpha(pal.text, 0.3);
  218. //horizontal lines
  219. for (var i=0; i<=100; i+=20) {
  220. var y = background.scaleY(i*2.55);
  221. if (i != 0 && i != 100) {
  222. for (var j=0; j<=width; j+=15) {
  223. c.moveTo(j, y);
  224. c.lineTo(Math.min(j+5, width), y);
  225. }
  226. }
  227. }
  228. //vertical lines
  229. if (graph.horIntervals.length > 1) {
  230. for (var i=1; i<graph.horIntervals.length; i++) {
  231. var x = background.scaleX(Units.toCelsius(graph.horIntervals[i], unit));
  232. for (var j=0; j<=height; j+=20) {
  233. c.moveTo(x, j);
  234. c.lineTo(x, Math.min(j+5, height));
  235. }
  236. }
  237. }
  238. c.stroke();
  239. }
  240. }
  241. StatusPoint {
  242. id: currentPwm
  243. size: graph.fontSize
  244. visible: background.contains(center) && !!fan && fan.hasTemp
  245. fan: root.fan
  246. unit: root.unit
  247. }
  248. PwmPoint {
  249. id: stopPoint
  250. color: !!fan ? fan.hasTemp ? "blue" : Qt.tint(graph.pal.light, Qt.rgba(0, 0, 1, 0.5)) : "transparent"
  251. size: graph.fontSize
  252. unit: root.unit
  253. enabled: !!fan ? fan.hasTemp : false
  254. drag.maximumX: Math.min(background.scaleX(background.scaleTemp(maxPoint.x)-1), maxPoint.x-1)
  255. drag.minimumY: Math.max(background.scaleY(background.scalePwm(maxPoint.y)-1), maxPoint.y+1)
  256. x: !!fan && fan.hasTemp ? background.scaleX(MoreMath.bound(minTemp, fan.minTemp, maxTemp)) - width/2 : -width/2
  257. y: !!fan && fan.hasTemp ? background.scaleY(fan.minStop) - height/2 : -height/2
  258. drag.onActiveChanged: {
  259. if (!drag.active && !!fan) {
  260. fan.minStop = Math.round(background.scalePwm(centerY));
  261. fan.minTemp = Math.round(background.scaleTemp(centerX));
  262. if (!fanOffCheckBox.checked) fan.minPwm = fan.minStop;
  263. }
  264. }
  265. onPositionChanged: {
  266. var left = fanOffCheckBox.checked ? x : 0;
  267. var width = maxPoint.x - left;
  268. var height = y - maxPoint.y;
  269. bgCanvas.markDirty(Qt.rect(left, maxPoint.y, width, height));
  270. }
  271. }
  272. PwmPoint {
  273. id: maxPoint
  274. color: !!fan ? fan.hasTemp ? "red" : Qt.tint(graph.pal.light, Qt.rgba(1, 0, 0, 0.5)) : "transparent"
  275. size: graph.fontSize
  276. unit: root.unit
  277. enabled: !!fan ? fan.hasTemp : false
  278. drag.minimumX: Math.max(background.scaleX(background.scaleTemp(stopPoint.x)+1), stopPoint.x+1)
  279. drag.maximumY: Math.min(background.scaleY(background.scalePwm(stopPoint.y)+1), stopPoint.y-1)
  280. x: !!fan && fan.hasTemp ? background.scaleX(MoreMath.bound(minTemp, fan.maxTemp, maxTemp)) - width/2 : background.width - width/2
  281. y: !!fan && fan.hasTemp ? background.scaleY(fan.maxPwm) - height/2 : -height/2
  282. drag.onActiveChanged: {
  283. if (!drag.active) {
  284. fan.maxPwm = Math.round(background.scalePwm(centerY));
  285. fan.maxTemp = Math.round(background.scaleTemp(centerX));
  286. }
  287. }
  288. onPositionChanged: {
  289. var width = x - stopPoint.x;
  290. var height = stopPoint.y - y;
  291. bgCanvas.markDirty(Qt.rect(stopPoint.x, y, width, height));
  292. }
  293. }
  294. }
  295. }
  296. ColumnLayout {
  297. property int padding: 10
  298. id: settingsArea
  299. anchors {
  300. left: parent.left
  301. leftMargin: padding
  302. right: parent.right
  303. rightMargin: padding
  304. bottom: parent.bottom
  305. bottomMargin: padding
  306. }
  307. visible: root.height >= nameField.height + height + 2*margin
  308. clip: true
  309. spacing: 2
  310. RowLayout {
  311. CheckBox {
  312. id: hasTempCheckBox
  313. text: i18n("Controlled by:")
  314. checked: !!fan ? fan.hasTemp : false
  315. Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
  316. onCheckedChanged: {
  317. if (!!fan) {
  318. fan.hasTemp = checked;
  319. if (checked && !!tempModel.temps[tempBox.currentIndex]) {
  320. fan.temp = tempModel.temps[tempBox.currentIndex];
  321. }
  322. bgCanvas.requestPaint();
  323. }
  324. }
  325. Connections {
  326. target: fan
  327. onHasTempChanged: hasTempCheckBox.checked = Qt.binding(function() { return !!fan ? fan.hasTemp : null })
  328. }
  329. }
  330. RowLayout {
  331. ComboBox {
  332. id: tempBox
  333. Layout.fillWidth: true
  334. model: tempModel
  335. textRole: "display"
  336. enabled: hasTempCheckBox.checked
  337. onCurrentIndexChanged: {
  338. if (hasTempCheckBox.checked)
  339. fan.temp = tempModel.temps[currentIndex];
  340. }
  341. }
  342. }
  343. }
  344. CheckBox {
  345. id: fanOffCheckBox
  346. text: i18n("Turn Fan off if temp < MINTEMP")
  347. enabled: hasTempCheckBox.checked
  348. checked: !!fan ? fan.minPwm == 0 : false
  349. onCheckedChanged: {
  350. if (!!fan) {
  351. fan.minPwm = checked ? 0 : fan.minStop;
  352. bgCanvas.markDirty(Qt.rect(0, 0, stopPoint.x, stopPoint.y));
  353. }
  354. }
  355. Connections {
  356. target: fan
  357. onMinPwmChanged: fanOffCheckBox.checked = Qt.binding(function() { return !!fan ? fan.minPwm == 0 : false })
  358. }
  359. }
  360. RowLayout {
  361. enabled: fanOffCheckBox.checked && fanOffCheckBox.enabled
  362. Label {
  363. text: i18n("Pwm value for fan to start:")
  364. Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
  365. renderType: Text.NativeRendering
  366. }
  367. SpinBox {
  368. id: minStartInput
  369. Layout.fillWidth: true
  370. minimumValue: 1
  371. maximumValue: 100
  372. decimals: 1
  373. value: !!fan ? Math.round(fan.minStart / 2.55) : 0
  374. suffix: i18n("%")
  375. onValueChanged: {
  376. if (!!fan) {
  377. fan.minStart = Math.round(value * 2.55)
  378. }
  379. }
  380. }
  381. }
  382. RowLayout {
  383. visible: systemdCom
  384. Item {
  385. Layout.fillWidth: true
  386. }
  387. Button {
  388. property bool reactivateAfterTesting
  389. id: testButton
  390. text: !!fan ? fan.testing ? i18n("Abort test") : i18n("Test start and stop values") : ""
  391. iconName: "dialog-password"
  392. anchors.right: parent.right
  393. onClicked: {
  394. if (fan.testing) {
  395. systemdCom.serviceActive = reactivateAfterTesting;
  396. fan.abortTest();
  397. } else {
  398. reactivateAfterTesting = systemdCom.serviceActive;
  399. systemdCom.serviceActive = false;
  400. minStartInput.value = Qt.binding(function() { return Math.round(fan.minStart / 2.55) });
  401. fan.test();
  402. }
  403. }
  404. }
  405. }
  406. }
  407. }