tools/templates/pixlabel.h
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 01:28:20 +0200
changeset 11727 fc4909039db8
parent 8442 535a00ca0d35
permissions -rw-r--r--
Construction Mode: “spawn” extra time, not buying

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