tools/templates/pixlabel.h
author unc0rr
Sat, 10 Feb 2007 23:37:40 +0000
changeset 428 1052ef2f7863
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Fix bug with unexpected jumping after use of air attack or construction tool

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