tools/templates/pixlabel.h
author nemo
Sun, 21 Aug 2011 14:19:01 -0400
changeset 5631 9cb25acaadc4
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Try blurriness instead, to make inactive ammos clearer. Also add some missing line breaks in french locale.

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