Added smiles.

This commit is contained in:
2026-01-10 16:38:52 +01:00
parent cb553cf928
commit aa4b2a1b84
27 changed files with 302 additions and 21 deletions

33
bcdelightpmwidget.h Normal file
View File

@@ -0,0 +1,33 @@
#ifndef BCDELIGHTPMWIDGET_H
#define BCDELIGHTPMWIDGET_H
#include <QObject>
/**
* @brief The BCDelightPMWidget class : Graphische Effekte für unseren Produktmanager Simon.
*/
class BCDelightPMWidget : public QObject
{
Q_OBJECT
public:
BCDelightPMWidget( QWidget* parent );
public slots:
void onStartChaos();
protected:
void loadWidgetsFromResources();
void createFlyingWidget(const QString& iconPath, const QString &color);
QWidget *_playGround{};
// Liste der Widgets, die wir bewegen
QList<QWidget*> _flyingWidgets;
};
#endif // BCDELIGHTPMWIDGET_H