tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Sun, 02 Sep 2018 22:05:45 +0200
changeset 13744 cb2857f55130
parent 8442 535a00ca0d35
permissions -rw-r--r--
Change chat text color for Lua warnings to yellow

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