tools/templates/pixlabel.h
author koda
Wed, 23 May 2012 01:53:25 +0200
changeset 7113 d54e666c395d
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
add GHC and GHFLAGS from cmake too

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