tools/templates/pixlabel.h
author unc0rr
Mon, 28 Mar 2011 20:30:15 +0400
changeset 5059 68a5415ca8ea
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
More creation of sender thread to the reciever thread

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