tools/templates/pixlabel.h
author sheepluva
Sat, 22 Oct 2011 01:53:14 +0200
changeset 6177 5eba8970e8ae
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
same for chat. changed the paths to: css/qt.css css/chat.css note: display:none is not supported by QTextBrowser, I might pimp it up to do so

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