tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Sun, 08 Jul 2018 00:16:33 +0200
changeset 13453 8f746b6a477c
parent 8442 535a00ca0d35
permissions -rw-r--r--
Fix teleport tooltip claiming it doesn't end turn, while in in hog placing phase with inf. attack

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