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
  • demoicon.h
  • de045ccea   시연 모드 아이콘 추가, 하프 에너지 아이콘 추가 Browse Code »
    김태훈
    2017-06-19 18:34:07 +0900  
demoicon.h 253 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
#ifndef DEMOICON_H
#define DEMOICON_H

#include <QLabel>
#include <QTimer>

class DemoIcon : public QLabel
{
    Q_OBJECT

    QTimer timer;

public:
    explicit DemoIcon(QWidget *parent = 0);

private slots:
    void check();
};

#endif // DEMOICON_H