tools/templates/pixlabel.h
author nemo
Sat, 23 Jun 2012 23:04:06 -0400
changeset 7274 a07777b818f1
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Try to use TestCollExcludingMe a bit less - the flag bit is a bit (heh) more accurate.

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