"
- "";
- if (!((*profile).Exists("FirstName") && (*profile).Exists("LastName"))) html+="Please edit your profile"; else {
- html+="Name: | "+(*profile)["FirstName"].toString()+" "+(*profile)["LastName"].toString()+" | ";
- }
- if ((*profile).Exists("Address")&& !(*profile)["Address"].toString().isEmpty()) {
- QString address=(*profile)["Address"].toString().replace("\n"," ");
- html+="Address: | "+address+" | ";
- }
- if ((*profile).Exists("Phone") && !(*profile)["Phone"].toString().isEmpty()) {
- html+="Phone: | "+(*profile)["Phone"].toString()+" | ";
- }
- if ((*profile).Exists("EmailAddress") && !(*profile)["EmailAddress"].toString().isEmpty()) {
- html+="Email: | "+(*profile)["EmailAddress"].toString()+" | ";
- }
- html+=" | "
- "";
- if ((*profile).Exists("Gender")) {
- QString gender=(*profile)["Gender"].toBool() ? "Male" : "Female";
- html+="Gender: | "+gender+" | ";
- }
+ locals["start"]=startDate;
+ locals["end"]=endDate;
+ locals["width"]=graph_print_width-10;
+
if ((*profile).Exists("DOB") && !(*profile)["DOB"].toString().isEmpty()) {
QDate dob=(*profile)["DOB"].toDate();
- //html+="D.O.B.: | "+dob.toString()+" | ";
QDateTime d1(dob,QTime(0,0,0));
QDateTime d2(QDate::currentDate(),QTime(0,0,0));
int years=d1.daysTo(d2)/365.25;
- html+="Age: | "+QString::number(years)+" years | ";
-
+ locals["Age"]=years;
+ }
+ if (!(*profile).Exists("UnitSystem")) {
+ (*profile)["UnitSystem"]="Metric";
}
if ((*profile).Exists("Height") && !(*profile)["Height"].toString().isEmpty()) {
- html+="Height: | "+(*profile)["Height"].toString();
- if (!(*profile).Exists("UnitSystem")) {
- (*profile)["UnitSystem"]="Metric";
- }
- if ((*profile)["UnitSystem"].toString()=="Metric") html+="cm"; else html+="inches";
- html+=" | ";
+ if ((*profile)["UnitSystem"].toString()=="Metric")
+ locals["DistanceMeasure"]="cm";
+ else locals["DistanceMeasure"]="inches";
}
+ QFile file(":/docs/template_overview.sht");
+ file.open(QIODevice::ReadOnly);
+ QString html=file.readAll();
- html+=" |