tools/templates/pixlabel.h
author unc0rr
Fri, 16 Jan 2009 23:27:25 +0000
changeset 1687 a73c8cda1ed1
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Fix engine freeze when one of the teams is killed before its first turn, number of hedgehogs in that team < 8, and game still goes on

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