tools/templates/pixlabel.h
author nemo
Sat, 25 Dec 2010 21:35:40 -0500
changeset 4682 0fc1ff341482
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
add a GetGearElasticity since Mikade kept asking for it. (actually return *10000 to handle it being an hwFloat - I assume large values will just overflow to negative)

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