tools/templates/pixlabel.h
author koda
Sat, 03 Jul 2010 01:31:18 +0200
changeset 3612 b50215a8a43d
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes

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