From 0bab059288592d5354778029e60c09e633aa7d35 Mon Sep 17 00:00:00 2001 From: Lars Mewes Date: Thu, 17 Feb 2022 10:35:11 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9ECircleOfFifths.h=E2=80=9C=20l=C3=B6sch?= =?UTF-8?q?en?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CircleOfFifths.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 CircleOfFifths.h diff --git a/CircleOfFifths.h b/CircleOfFifths.h deleted file mode 100644 index 44d548c..0000000 --- a/CircleOfFifths.h +++ /dev/null @@ -1,35 +0,0 @@ -/* CIRCLEOFFIFTHS_H - * CLASS DECLARATION - * - * CHANGLOG: - * NAME: | CHANGES: | DATE: | - * Mewes, Lars | Neuerstellung | 24.09.2021 | - * | | | - * | | | - * | | | - * - * DESCRIPTION: - * Diese Klasse enthält die 12 "circleElements" und stellt sie in einer "QGraphicsScene" dar, von der die Klasse abgeleitet ist - * und verarbeitetet außerdem Mouse-Events. - * - * TO-DOs: - * - * - */ - -#pragma once -#include "ColorScale.h" -#include -#include "CircleElement.h" -#include -class MainWindow; - -class CircleOfFifths: public QGraphicsScene{ - CircleElement * circleElements[12]; -public: - CircleOfFifths(qreal x, qreal y, qreal w, qreal h, MainWindow * parent); - - CircleElement * getCircleElement(int number)const; - - void mousePressEvent(QGraphicsSceneMouseEvent *event); -};