tools/templates/pixlabel.h
author unc0rr
Thu, 13 Dec 2007 22:24:06 +0000
changeset 655 e58a77556878
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Temporary set delimiter to *, as \t seems to be endline now in Qt - Fix network game: avoid telling server the nick before it actually is set on fast network (found on FreeBSD)

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