tools/templates/pixlabel.h
author sheepluva
Sat, 16 Jan 2016 19:20:06 +0100
changeset 11515 4dd77731453b
parent 8442 535a00ca0d35
permissions -rw-r--r--
update some old google code links in the code/etc. thanks Wuzzy for the heads-up

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