tools/templates/pixlabel.h
author koda
Sun, 28 Aug 2011 11:48:09 +0200
changeset 5697 e6630feefe88
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
the return of SDL.patch D: contains fixes for double free at window destruction, touch interface and the minimum ios version supported

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