From 1951552a14eb5b3a858ecc18d8151b91728db218 Mon Sep 17 00:00:00 2001 From: Lars Mewes Date: Thu, 17 Feb 2022 10:37:01 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9EPianoKey.h=E2=80=9C=20l=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PianoKey.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 PianoKey.h diff --git a/PianoKey.h b/PianoKey.h deleted file mode 100644 index f7f4895..0000000 --- a/PianoKey.h +++ /dev/null @@ -1,39 +0,0 @@ -/* PIANOKEY_H - * CLASS DECLARATION - * - * CHANGLOG: - * NAME: | CHANGES: | DATE: | - * Mewes, Lars | Neuerstellung | 24.09.2021 | - * | | | - * | | | - * | | | - * - * DESCRIPTION: - * Diese Klasse enthält analog zu "CircleElement" alle Bestandteile einer Klaviertaste. - * - * TO-DOs: - * Beschriftung auf den Tasten ergänzen - * - */ -#pragma once - -#include -#include - -#include "Tone.h" - -class PianoKey: public QObject, public QGraphicsRectItem{ - Q_OBJECT - - Tone * tone; -public: - - PianoKey(QString _tone, int pos, QColor _col, bool flatTone = true); - PianoKey(Tone * tone); - virtual ~PianoKey(); - - Tone * getTone()const; - -public slots: - void redraw(); -};