Blame view

app/gui/oven_control/stringer.h 854 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
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
10
  enum DateTimeType { OneLine, TwoLine };
00fd78596   고영탁   설정 기능 구현(엔지니어링 모드...
11
2bfd3a050   김태훈   환경 설정 대응
12
13
14
15
16
17
18
  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   김태훈   수동 요리 구현
19
20
21
  QString remainingTime(int msecs);
  QString remainingTime(int msecs, QString style);
  QString remainingTime(qint64 msecs);
2bfd3a050   김태훈   환경 설정 대응
22
23
24
25
26
27
  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);
0faa32511   김태훈   컴파일 경고 제거 및 리팩토링
28
  QString dateTime(const QDateTime &dateTime, DateTimeType type = TwoLine);
2f6b55128   김태훈   다중 요리 구현
29
  QString time(int msecs);
af27778be   김태훈   HACCP 구현
30
  QString timeSecs(int secs);
00fd78596   고영탁   설정 기능 구현(엔지니어링 모드...
31
2bfd3a050   김태훈   환경 설정 대응
32
33
34
  }
  
  #endif // STRINGER_H