tools/templates/pixlabel.h
author sheepluva
Fri, 27 Apr 2012 22:22:04 +0200
changeset 6939 970389573788
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
MapModel converted to QStandardItemList; separators fixed; changed used data format (human-readable struct instead of magic list) for map info in HwMapContainer (+ various small cleanups in that class)

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