Files
BionxControl/bcdelightpmwidget.h

34 lines
576 B
C
Raw Normal View History

2026-01-10 16:38:52 +01:00
#ifndef BCDELIGHTPMWIDGET_H
#define BCDELIGHTPMWIDGET_H
#include <QObject>
/**
2026-01-19 16:44:52 +01:00
* @brief The BCDelightPMWidget class : Demonstration Graphischer
* Effekte für unseren Produktmanager Simon.
2026-01-10 16:38:52 +01:00
*/
class BCDelightPMWidget : public QObject
{
Q_OBJECT
public:
BCDelightPMWidget( QWidget* parent );
public slots:
void onStartChaos();
protected:
void loadWidgetsFromResources();
2026-01-19 16:44:52 +01:00
void createFlyingWidget(const QString& iconPath);
2026-01-10 16:38:52 +01:00
2026-01-19 16:44:52 +01:00
QWidget* _playGround{};
2026-01-10 16:38:52 +01:00
// Liste der Widgets, die wir bewegen
QList<QWidget*> _flyingWidgets;
};
#endif // BCDELIGHTPMWIDGET_H