tools/templates/pixlabel.h
author nemo
Mon, 12 Sep 2011 16:51:45 -0400
changeset 5882 59716ac2fe4d
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Fix hat naming, keep case consistent within the streetfighter group, fix spelling error.

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