tools/templates/pixlabel.h
author sheepluva
Thu, 20 Oct 2011 05:52:11 +0200
changeset 6158 cf034cc88e39
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
comment typo

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