tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 12:08:12 +0100
changeset 12938 b075ad6112c9
parent 8442 535a00ca0d35
permissions -rw-r--r--
Show subtle heal effect for healing hogs in health reset mode

#include <QLabel>
#include <QRect>
#include <QList>
#include <QMouseEvent>

class PixLabel : public QLabel
{
    Q_OBJECT

public:

    PixLabel();
    QList<QRect> rects;

public slots:
    void AddRect();

private:
    void paintEvent(QPaintEvent * event);
    void mousePressEvent(QMouseEvent * e);
};