summaryrefslogtreecommitdiffstats
path: root/statuslabel.h
blob: 8fa8e07ef7112612a6591b09c44c108c67404db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef STATUSLABEL_H
#define STATUSLABEL_H

#include <QWidget>
class QLabel;

class StatusLabel : public QWidget
{
public:
	StatusLabel(const QString &text, QWidget *parent = 0);
	void setCompleted(bool complete);
private:
	QLabel *m_pixmap;
};

#endif // STATUSLABEL_H