tools/templates/pixlabel.h
author alfadur
Thu, 29 Nov 2018 01:43:41 +0300
changeset 14338 ce2e67c5af14
parent 8442 535a00ca0d35
permissions -rw-r--r--
add frozen airmines to collision array to make them shovable by blowtorch

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