tools/templates/pixlabel.h
author unc0rr
Sun, 27 Jul 2008 23:01:41 +0000
changeset 1132 b4c0698fbb6b
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Fix problem when clouds number is 0 - Swap two sounds used when hedgehog get damage due to fall

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