tools/templates/pixlabel.h
author sheepluva
Sat, 01 Jan 2011 14:23:39 +0100
changeset 4802 4c1041eef577
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
fix very ancient typo in CheckCollision() that would cause check for collision at bottom and right instead of movement direction

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