tools/templates/pixlabel.h
author unc0rr
Sun, 20 Jan 2008 13:41:38 +0000
changeset 722 993faebbe546
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Use shotgun training as more attractive than the second one with bazooka - More filters for make package_source

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