tools/templates/pixlabel.h
author nemo
Wed, 26 Aug 2009 20:32:27 +0000
changeset 2332 351abbbb12f3
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Lower bound on speech text width for proper rendering

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