tools/templates/pixlabel.h
author koda
Thu, 20 Jan 2011 01:49:20 +0100
changeset 4861 91f889289a47
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)

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