GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • oven_control
  • ignitionicon.h
  • 5f017a9d7   요청 사항 반영 ... Browse Code »
    - 점화 아이콘, 수위 아이콘 추가
    김태훈
    2019-06-14 12:07:52 +0900  
ignitionicon.h 307 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef IGNITIONICON_H
#define IGNITIONICON_H

#include <QLabel>
#include <QTimer>

class IgnitionIcon : public QLabel
{
    Q_OBJECT

    static QPixmap *icon;
    QTimer timer;

public:
    explicit IgnitionIcon(QWidget *parent = Q_NULLPTR);

private slots:
    void check();
};

#endif // IGNITIONICON_H