tools/templates/pixlabel.h
author unc0rr
Thu, 09 Oct 2008 15:54:09 +0000
changeset 1333 b0b0510eb82d
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Fix a bug with chosen map (new clinet gets wrong information) - Fix mapContainer bug when switching quickly from random map to a painted one

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