tools/templates/pixlabel.h
author unc0rr
Fri, 17 Apr 2009 17:01:58 +0000
changeset 1999 a28dcfe658e3
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Commit part of koda's patch which applies cleanly: - added libSDLmain.a in library generation - Info.plist now is automatically generated - completed iphone variant

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