commicon.h
334 Bytes
#ifndef COMMICON_H
#define COMMICON_H
#include <QWidget>
class CommIcon : public QWidget
{
Q_OBJECT
public:
explicit CommIcon(QWidget *parent = nullptr);
signals:
public slots:
void setFault();
void setOK();
protected:
void paintEvent(QPaintEvent *event);
private:
bool isFault;
};
#endif // COMMICON_H