tools/templates/pixlabel.h
author unc0rr
Thu, 22 Jan 2009 17:53:39 +0000
changeset 1738 00e8dadce69a
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Add nemo's depixeling patch. Still needs some polishing for the case when we delete pixel on which hedgehog stays

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