tools/templates/pixlabel.h
author koda
Thu, 21 Apr 2016 00:10:23 -0400
changeset 11657 ae6706411b24
parent 8442 535a00ca0d35
permissions -rw-r--r--
Hijack SDL2 and GLEW include and library when compiling to javascript emscripten already provides the SDL2 suite and will simply ignore missing libraries.

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