tools/templates/pixlabel.h
author unc0rr
Thu, 04 Dec 2008 21:17:03 +0000
changeset 1527 4a610e970b66
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Try to fix problem with playing music when path contains non-latin letters

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