tools/templates/pixlabel.h
author nemo
Thu, 07 Jan 2010 16:12:26 +0000
changeset 2679 b61d25fa6c53
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
bit of a short circuit to reduce a few pointless tests on most text strings

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