|
- #ifndef BUTTON_H
- #define BUTTON_H
- #include "item.h"
-
- class Button : public Item
- {
- public:
- Button(const QString &type);
- QRectF boundingRect() const override;
- void paint(QPainter *painter,
- const QStyleOptionGraphicsItem *option,
- QWidget *) override;
- };
-
- #endif // BUTTON_H
|