tools/templates/pixlabel.h
author nemo
Fri, 05 Nov 2010 17:27:14 -0400
changeset 4135 5be798ecafdc
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
This should make bee and other targetted things behave more reliably in infinite attack mode. Blocks switching of weps if a target point is active.

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