tools/templates/pixlabel.h
author unc0rr
Sun, 12 Jan 2014 11:07:49 +0400
changeset 9971 071902835770
parent 8442 535a00ca0d35
permissions -rw-r--r--
That check was too weird and complicated

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