tools/templates/pixlabel.h
author unc0rr
Sun, 04 Jan 2009 14:24:44 +0000
changeset 1579 2f581b1f289e
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce

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