tools/templates/pixlabel.h
author sheepluva
Sun, 02 Oct 2016 12:42:16 +0200
changeset 11862 fbe9bb9602eb
parent 8442 535a00ca0d35
permissions -rw-r--r--
also update ghc info in INSTALL file

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