tools/templates/pixlabel.h
author Wuzzy <almikes@aol.com>
Fri, 06 May 2016 17:26:06 +0200
changeset 11814 8eccc307ca1e
parent 8442 535a00ca0d35
permissions -rw-r--r--
Frontend: Increase space for help text in the footer

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