tools/templates/pixlabel.h
author szczur
Tue, 06 Sep 2011 10:37:32 -0400
changeset 5791 685e08579f0d
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
translation update

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