tools/templates/pixlabel.h
author nemo
Thu, 03 Nov 2011 10:36:10 -0400
changeset 6271 9310cfe6bc37
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Bounce can't be set on this anyway, and if we did make it work, it'd probably be OP

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