tools/templates/pixlabel.h
author sheepluva
Mon, 25 Oct 2010 17:39:50 +0200
changeset 3995 360332f8785f
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
SmokeTrace: animation got aborted before last animation frame was displayed

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