tools/templates/pixlabel.h
author nemo
Thu, 30 Aug 2012 22:13:42 -0400
changeset 7633 d4251e519062
parent 359 59fbfc65fbda
child 8442 535a00ca0d35
permissions -rw-r--r--
Allow adjusting bitrate so that I can get a somewhat usable webm video. The audio is still tinny and unlistenable. Configuration option for that might be helpful, or just adjusting defaults in the wrapper.

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