tools/templates/pixlabel.h
author unc0rr
Sat, 13 Jun 2009 15:39:26 +0000
changeset 2162 2bce91404d49
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
- Implement zoom-in and zoom-out - Some bugfixes. Ammo menu doesn't work.

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