tools/templates/pixlabel.h
author nemo
Fri, 05 Nov 2010 19:07:17 -0400
changeset 4141 2bd5ecf7b4fb
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
2 minor bugfixes. fix shoppa hack, strip translation from 2 scheme/weapon filters - breaks otherwise. They aren't dynamic 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);
};