tools/templates/pixlabel.h
author alfadur
Thu, 01 Nov 2018 21:30:21 +0300
changeset 14064 c6745a1c827a
parent 8442 535a00ca0d35
permissions -rw-r--r--
start a physics engine to try out this data oriented thing everyone seems to be talking about

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