tools/templates/pixlabel.h
author koda
Wed, 03 Feb 2010 03:01:44 +0000
changeset 2740 03df0573a9fd
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
programmatically load main controller adapt settings to landscape transition between main controller and other views

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