tools/templates/pixlabel.h
author koda
Tue, 19 Oct 2010 21:55:49 +0200
changeset 3982 86c3a6e8e265
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
ios version bump and other minor things

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