Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

43 lines
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. import QtQuick.Window 2.2
  19. import QtQuick.Controls 1.2
  20. import QtQuick.Dialogs 1.2
  21. import art.freakaria.ton 1.0
  22. Item {
  23. id:root
  24. visible:true
  25. anchors.fill:parent
  26. property bool paintAxes:true
  27. property var octaves: 7
  28. SpiralView {
  29. id:spiral
  30. anchors.fill:parent
  31. octaves:parent.octaves
  32. fBase:20
  33. paintAxes:parent.paintAxes
  34. paintPeaks:false
  35. paintGrid:false
  36. }
  37. }