tools/templates/pixlabel.h
author Xeli
Sat, 20 Aug 2011 13:07:33 +0200
branchhedgeroid
changeset 5617 88f43becefe3
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
added low jump, you can low-jump by double tapping the right or left side of the screen

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