tools/templates/pixlabel.h
author nemo
Sun, 05 Jul 2009 16:37:05 +0000
changeset 2226 e35b62cb7a1c
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Try turning off follow gear while ammo menu is open - needs testing w/ rope/parachute/jetpack

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