You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PianoKey.h 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* PIANOKEY_H
  2. * CLASS DECLARATION
  3. *
  4. * CHANGLOG:
  5. * NAME: | CHANGES: | DATE: |
  6. * Mewes, Lars | Neuerstellung | 24.09.2021 |
  7. * | | |
  8. * | | |
  9. * | | |
  10. *
  11. * DESCRIPTION:
  12. * Diese Klasse enthält analog zu "CircleElement" alle Bestandteile einer Klaviertaste.
  13. *
  14. * TO-DOs:
  15. * Beschriftung auf den Tasten ergänzen
  16. *
  17. */
  18. #pragma once
  19. #include <QGraphicsRectItem>
  20. #include <QString>
  21. #include "Tone.h"
  22. class PianoKey: public QObject, public QGraphicsRectItem{
  23. Q_OBJECT
  24. Tone * tone;
  25. public:
  26. PianoKey(QString _tone, int pos, QColor _col, bool flatTone = true);
  27. PianoKey(Tone * tone);
  28. virtual ~PianoKey();
  29. Tone * getTone()const;
  30. public slots:
  31. void redraw();
  32. };