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 lines
309 B

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