washwarnicon.h
300 Bytes
#ifndef WASHWARNICON_H
#define WASHWARNICON_H
#include <QLabel>
#include <QTimer>
class WashWarnIcon : public QLabel
{
Q_OBJECT
static QPixmap *icon;
QTimer timer;
public:
explicit WashWarnIcon(QWidget *parent = 0);
private slots:
void check();
};
#endif // WASHWARNICON_H