Blame view

app/gui/packet/tablevalue.h 425 Bytes
81bee1ec4   김태훈   원격 패킷 출력 프로그램 추가
1
2
3
4
5
6
7
8
  #ifndef TABLEVALUE_H
  #define TABLEVALUE_H
  
  #include <QObject>
  #include <QWidget>
  #include <QLabel>
  #include <QTableWidgetItem>
  #include <QTimer>
26fa00c5f   김태훈   출력 형식 변경
9
  #include <QTime>
81bee1ec4   김태훈   원격 패킷 출력 프로그램 추가
10
11
12
13
14
15
  
  class TableValue : public QLabel
  {
      Q_OBJECT
  
  public:
26fa00c5f   김태훈   출력 형식 변경
16
      explicit TableValue();
81bee1ec4   김태훈   원격 패킷 출력 프로그램 추가
17
18
19
20
  
      void setText(const QString &text);
  
  private:
26fa00c5f   김태훈   출력 형식 변경
21
      QTime time;
81bee1ec4   김태훈   원격 패킷 출력 프로그램 추가
22
23
24
25
26
27
28
29
      QTimer timer;
      QTimer animationTimer;
  
  private slots:
      void updateColor();
  };
  
  #endif // TABLEVALUE_H