You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 regels
313 B

  1. #ifndef BUTTON_H
  2. #define BUTTON_H
  3. #include "item.h"
  4. class Button : public Item
  5. {
  6. public:
  7. Button(const QString &type);
  8. QRectF boundingRect() const override;
  9. void paint(QPainter *painter,
  10. const QStyleOptionGraphicsItem *option,
  11. QWidget *) override;
  12. };
  13. #endif // BUTTON_H