tools/templates/pixlabel.h
author tiyuri
Mon, 20 May 2013 22:11:15 -0400
changeset 9022 6d70cbe31e3a
parent 8442 535a00ca0d35
permissions -rw-r--r--
Tentacles map. Fix cmakes for the others

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