tools/templates/pixlabel.h
author koda
Sat, 18 Feb 2012 19:07:19 +0100
changeset 6709 018539298042
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
oh i thought i had converted every uitableviewcontroller to uiviewcontroller+tableview; this also restores displaying statitstics after game

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