您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // tonalisa - software to look at overtone-structures
  2. // Copyright (C) 2016 Dominik Schmidt-Philipp
  3. //
  4. // This program is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 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 General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. //
  17. import QtQuick 2.3
  18. Rectangle {
  19. id:root
  20. property alias text: label.text
  21. property bool state: false
  22. width:116
  23. height:17
  24. color: "#fff"
  25. border.color:"#333"
  26. Text {
  27. id:label
  28. anchors.centerIn:parent
  29. text: "toggle"
  30. }
  31. MouseArea {
  32. anchors.fill: parent
  33. onClicked: {
  34. switch(state)
  35. {
  36. case true:
  37. state=false;
  38. root.color="#fff";
  39. break;
  40. case false:
  41. state=true;
  42. root.color="#ff0";
  43. break;
  44. }
  45. }
  46. }
  47. }