tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 01 Sep 2018 21:47:08 +0200
changeset 13733 ae22928f2b01
parent 8442 535a00ca0d35
permissions -rw-r--r--
ASA, desert01: Disable hero control at first battle left from the hole, not right above it

#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);
};