Blame view

app/gui/oven_control/stringer.h 891 Bytes
2bfd3a050   김태훈   환경 설정 대응
1
2
3
4
5
  #ifndef STRINGER_H
  #define STRINGER_H
  
  
  #include <QtCore>
00fd78596   고영탁   설정 기능 구현(엔지니어링 모드...
6
  #include <QDateTime>
2bfd3a050   김태훈   환경 설정 대응
7
8
  
  namespace Stringer {
00fd78596   고영탁   설정 기능 구현(엔지니어링 모드...
9
10
11
12
13
  
  enum datetime_string_type{
      datetime_string_type_oneline=0,
      datetime_string_type_twoline
  };
2bfd3a050   김태훈   환경 설정 대응
14
15
16
17
18
19
20
  const QString fontSize14("\
  <style>\
  span { font-size: 14pt; }\
  span.heavy { font-size: 16pt; }\
  span.light { font-size: 11pt; }\
  span.lightest { font-size: 9pt; }\
  </style>");
0e279295f   김태훈   수동 요리 구현
21
22
23
  QString remainingTime(int msecs);
  QString remainingTime(int msecs, QString style);
  QString remainingTime(qint64 msecs);
2bfd3a050   김태훈   환경 설정 대응
24
25
26
27
28
29
  QString temperature(int celsius);
  QString temperature(int celsius, QString style);
  QString temperature(int current, int target);
  QString temperature(int current, int target, QString style);
  QString unusedTemperature();
  QString unusedTemperature(QString style);
00fd78596   고영탁   설정 기능 구현(엔지니어링 모드...
30
  QString DateTimeString(const QDateTime &dt_tm, datetime_string_type type=datetime_string_type_twoline);
2bfd3a050   김태훈   환경 설정 대응
31
32
33
  }
  
  #endif // STRINGER_H