tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Oct 2018 02:27:33 +0200
changeset 13894 4608300bc2fc
parent 8442 535a00ca0d35
permissions -rw-r--r--
ASA, ice02: Change time strings for consistency with other time strings

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