tools/templates/pixlabel.h
author unc0rr
Fri, 02 Jan 2009 14:46:35 +0000
changeset 1562 c0eea030347b
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Don't play sounds when quick replaying in spectate mode

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