選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

46 行
1.2KB

  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. Item {
  19. id:root
  20. width:parent.width
  21. height:17
  22. property alias text: textField.text
  23. Rectangle {
  24. anchors.fill:parent
  25. color:"#222"
  26. MouseArea {
  27. anchors.fill:parent
  28. onClicked: {
  29. buffer.spectrumF0 = modelData.spectrum
  30. }
  31. Text {
  32. id:textField
  33. text:"default"
  34. color:"#fee"
  35. width: root.width
  36. horizontalAlignment: Text.AlignHCenter
  37. }
  38. }
  39. }
  40. }