tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 02:03:09 +0100
changeset 12970 dc35a79c6ef9
parent 8442 535a00ca0d35
permissions -rw-r--r--
Fix Killing the Specialists recording the turn count way too low

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