Added smiles.
This commit is contained in:
33
bcdelightpmwidget.h
Normal file
33
bcdelightpmwidget.h
Normal 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
|
||||
Reference in New Issue
Block a user