Blame view

app/gui/oven_control/stringer.h 624 Bytes
2bfd3a050   김태훈   환경 설정 대응
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  #ifndef STRINGER_H
  #define STRINGER_H
  
  
  #include <QtCore>
  
  namespace Stringer {
  const QString fontSize14("\
  <style>\
  span { font-size: 14pt; }\
  span.heavy { font-size: 16pt; }\
  span.light { font-size: 11pt; }\
  span.lightest { font-size: 9pt; }\
  </style>");
  
  QString remainingTime(int secs);
  QString remainingTime(int secs, QString style);
  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);
  }
  
  #endif // STRINGER_H