tools/templates/pixlabel.h
author nemo
Fri, 26 Mar 2010 03:04:19 +0000
changeset 3072 b18038b3a0f4
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
I don't know why I'm bothering. Sheepluva has a whole new approach in the works.

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