tools/templates/pixlabel.h
author unc0rr
Mon, 13 Dec 2010 22:12:30 +0300
changeset 4520 e7882bd1a894
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Allow to draw maps in frontend and play them (only locally, some bugs to fix)

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