tools/templates/pixlabel.h
author Wuzzy <almikes@aol.com>
Fri, 06 May 2016 19:23:26 +0200
changeset 11818 b421923c2577
parent 8442 535a00ca0d35
permissions -rw-r--r--
Neatly align all the bottom buttons on the same height

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