tools/templates/pixlabel.h
author koda
Tue, 25 Dec 2012 01:13:07 +0100
changeset 8327 a6f3452f5f94
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
convert Game() library call to argc,argv format so that we can use the new parsing functions

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