tools/templates/pixlabel.h
author nemo
Sun, 07 Oct 2012 11:59:42 -0400
changeset 7726 1137406bce12
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420

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