34 lines
576 B
C++
34 lines
576 B
C++
#ifndef BCDELIGHTPMWIDGET_H
|
|
#define BCDELIGHTPMWIDGET_H
|
|
|
|
#include <QObject>
|
|
|
|
/**
|
|
* @brief The BCDelightPMWidget class : Demonstration Graphischer
|
|
* 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);
|
|
|
|
QWidget* _playGround{};
|
|
// Liste der Widgets, die wir bewegen
|
|
QList<QWidget*> _flyingWidgets;
|
|
};
|
|
|
|
#endif // BCDELIGHTPMWIDGET_H
|