tools/templates/pixlabel.h
author koda
Sat, 08 Jun 2013 02:21:31 +0200
changeset 9156 6bf5359d5d14
parent 8442 535a00ca0d35
permissions -rw-r--r--
make sure that also CXX sources pick up the flags (although I'm not 100% of the correctness of the tests)

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