tools/templates/pixlabel.h
author nemo
Sun, 17 May 2009 14:25:45 +0000
changeset 2072 6e0fcbcc3f60
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel Setting PaintOnScreen seems safe with current layout

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