Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

38 lines
1.1KB

  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. width: parent.width; height:20
  22. color: ListView.isCurrentItem?"#aaff00":"#ffffff"
  23. border.color: "slategrey"
  24. Text {
  25. id: label
  26. anchors.centerIn: parent
  27. text: "start"
  28. }
  29. MouseArea {
  30. anchors.fill: parent
  31. onClicked: {
  32. spectrumList.currentIndex=index
  33. }
  34. }
  35. }