OSCAR-code/SleepLib/common.h

27 lines
687 B
C
Raw Normal View History

#ifndef COMMON_H
#define COMMON_H
#include <QString>
2011-12-21 12:47:47 +00:00
#include <QObject>
enum UnitSystem { US_Undefined, US_Metric, US_Archiac };
const float ounce_convert=28.3495231; // grams
const float pound_convert=ounce_convert*16;
QString weightString(float kg, UnitSystem us);
2011-12-21 12:47:47 +00:00
const QString STR_UNIT_CM=QObject::tr("cm");
const QString STR_UNIT_INCH=QObject::tr("\"");
const QString STR_UNIT_FOOT=QObject::tr("ft");
const QString STR_UNIT_POUND=QObject::tr("lb");
const QString STR_UNIT_OUNCE=QObject::tr("oz");
const QString STR_UNIT_KG=QObject::tr("Kg");
const QString STR_MESSAGE_ERROR=QObject::tr("Error");
const QString STR_MESSAGE_WARNING=QObject::tr("Warning");
#endif // COMMON_H