tools/templates/pixlabel.h
author sheepluva
Tue, 01 May 2012 11:39:11 +0200
changeset 6970 59f33a6a4814
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
display haxx0red teams colors correctly. also got rid of some casts and std:: iteration stuff

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