tools/templates/pixlabel.h
author nemo
Fri, 03 May 2013 22:18:23 -0400
changeset 8954 1e8b390ab011
parent 8442 535a00ca0d35
permissions -rw-r--r--
try to guess at barrel state. prob should flag it..

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