tools/templates/pixlabel.h
author sheepluva
Mon, 17 Oct 2011 22:48:11 +0200
changeset 6144 e8c302637b10
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
fix overlapping pixel in stormtrooper hat

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