tools/templates/pixlabel.h
author sheepluva
Tue, 10 Nov 2015 18:16:35 +0100
branchsdl2transition
changeset 11361 31570b766315
parent 8442 535a00ca0d35
permissions -rw-r--r--
drop FindSDL1or2 cmake module

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