tools/templates/pixlabel.h
author sheepluva
Sun, 02 May 2010 16:24:31 +0000
changeset 3401 d5d31d16eccc
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
add a part of my landslide vector collision and use if for the portal gun DirAngle, not flawless yet

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