tools/templates/pixlabel.h
author Xeli
Tue, 07 Feb 2012 18:56:49 +0100
changeset 6648 025473a2c420
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
prevent the cursor from being shown on the mobile version, and close the menu on tap when the tap is not on the ammo menu

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