tools/templates/pixlabel.h
author unc0rr
Fri, 25 Apr 2008 21:44:58 +0000
changeset 874 964c0d5b3604
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Fix warning - Small optimization in DrawHH function - Fix high jump hedgehog animation not to turn hedgehog view

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