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