Newer
Older
invertedlogic / LGN-IP3870 / qtpyui / server / qtextlabel.h
@John Ryland John Ryland on 19 Jan 2009 354 bytes LG project files
#ifndef QTEXTLABEL_H
#define QTEXTLABEL_H

#include <QLabel>

class CanvasItem;

class QTextLabel : public QLabel
{
	friend class CanvasItem;
	Q_OBJECT
public:
	QTextLabel(CanvasItem *canvasItem, QWidget *parent = 0);
	~QTextLabel();
protected:
	void paintEvent(QPaintEvent *e);
private:
	CanvasItem *item;
	int textWidth;
	QString shownText;
};

#endif