tools/templates/pixlabel.h
author sheepluva
Tue, 01 May 2012 21:24:04 +0200
changeset 6983 ede55af89e78
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
roomslistmodel: prettier names for map +rnd+ etc.; point out unavailable maps some other small tweaks and fixes

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