tools/templates/pixlabel.h
author nemo
Fri, 05 Mar 2010 02:57:34 +0000
changeset 2939 58d811e0d41c
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
... or I would have been if svn hadn't locked up and made me try my luck at one more...

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