mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Hide user info from statistics when there isn't any available
This commit is contained in:
parent
9ee8632d70
commit
81959b44b1
@ -97,9 +97,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
logtime.start();
|
logtime.start();
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
|
|
||||||
QString version = FullVersionString;
|
QString version = VersionString;
|
||||||
|
|
||||||
if (QString(GIT_BRANCH) != "master") { version += QString(" ") + QString(GIT_BRANCH); }
|
|
||||||
|
|
||||||
#ifdef TEST_BUILD
|
#ifdef TEST_BUILD
|
||||||
version += QString(STR_TestBuild);
|
version += QString(STR_TestBuild);
|
||||||
@ -107,6 +105,9 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
ui->warningLabel->hide();
|
ui->warningLabel->hide();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (QString(GIT_BRANCH) != "master") { version += " (" + QString(GIT_BRANCH)+" branch)"; }
|
||||||
|
|
||||||
|
|
||||||
this->setWindowTitle(STR_TR_SleepyHead + QString(" v%1 (" + tr("Profile") + ": %2)").arg(version).arg(PREF[STR_GEN_Profile].toString()));
|
this->setWindowTitle(STR_TR_SleepyHead + QString(" v%1 (" + tr("Profile") + ": %2)").arg(version).arg(PREF[STR_GEN_Profile].toString()));
|
||||||
//ui->tabWidget->setCurrentIndex(1);
|
//ui->tabWidget->setCurrentIndex(1);
|
||||||
|
|
||||||
|
@ -111,6 +111,26 @@ QString htmlHeader()
|
|||||||
address.replace("\n", "<br/>");
|
address.replace("\n", "<br/>");
|
||||||
// "a:link,a:visited { color: '#000020'; text-decoration: none; font-weight: bold;}"
|
// "a:link,a:visited { color: '#000020'; text-decoration: none; font-weight: bold;}"
|
||||||
// "a:hover { background-color: inherit; color: red; text-decoration:none; font-weight: bold; }"
|
// "a:hover { background-color: inherit; color: red; text-decoration:none; font-weight: bold; }"
|
||||||
|
|
||||||
|
QString userinfo;
|
||||||
|
|
||||||
|
if (!PROFILE.user->firstName().isEmpty()) {
|
||||||
|
userinfo = QString(QObject::tr("Name: %1, %2")).arg(PROFILE.user->lastName()).arg(PROFILE.user->firstName()) + "<br/>";
|
||||||
|
if (!PROFILE.user->DOB().isNull()) {
|
||||||
|
userinfo += QString(QObject::tr("DOB: %1")).arg(PROFILE.user->DOB().toString()) + "<br/>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!PROFILE.user->phone().isEmpty()) {
|
||||||
|
userinfo += QString(QObject::tr("Phone: %1")).arg(PROFILE.user->phone()) + "<br/>";
|
||||||
|
}
|
||||||
|
if (!PROFILE.user->email().isEmpty()) {
|
||||||
|
userinfo += QString(QObject::tr("Email: %1")).arg(PROFILE.user->email()) + "<br/><br/>";
|
||||||
|
}
|
||||||
|
if (!PROFILE.user->address().isEmpty()) {
|
||||||
|
userinfo += QObject::tr("Address:")+"<br/>"+address;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return QString("<html><head>"
|
return QString("<html><head>"
|
||||||
"</head>"
|
"</head>"
|
||||||
"<style type='text/css'>"
|
"<style type='text/css'>"
|
||||||
@ -126,16 +146,7 @@ QString htmlHeader()
|
|||||||
"</head>"
|
"</head>"
|
||||||
"<body leftmargin=0 topmargin=0 rightmargin=0>"
|
"<body leftmargin=0 topmargin=0 rightmargin=0>"
|
||||||
"<div align=center><table cellpadding=3 cellspacing=0 border=0 width=100%>"
|
"<div align=center><table cellpadding=3 cellspacing=0 border=0 width=100%>"
|
||||||
"<td>" +
|
"<td>"+userinfo+"</td>"
|
||||||
QString(QObject::tr("Name: %1, %2")).arg(PROFILE.user->lastName()).arg(
|
|
||||||
PROFILE.user->firstName()) + "<br/>" +
|
|
||||||
QString(QObject::tr("DOB: %1")).arg(PROFILE.user->DOB().toString()) + "<br/>" +
|
|
||||||
QString(QObject::tr("Phone: %1")).arg(PROFILE.user->phone()) + "<br/>" +
|
|
||||||
QString(QObject::tr("Email: %1")).arg(PROFILE.user->email()) + "<br/><br/>" +
|
|
||||||
QObject::tr("Address:") + "<br/>" +
|
|
||||||
address +
|
|
||||||
|
|
||||||
"</td>"
|
|
||||||
"<td align='right'>"
|
"<td align='right'>"
|
||||||
"<h1>" + STR_TR_SleepyHead + "</h1><br/>"
|
"<h1>" + STR_TR_SleepyHead + "</h1><br/>"
|
||||||
"<font size='+3'>" + QObject::tr("Usage Statistics") + "</font>"
|
"<font size='+3'>" + QObject::tr("Usage Statistics") + "</font>"
|
||||||
@ -444,7 +455,7 @@ bool operator <(const UsageData &c1, const UsageData &c2)
|
|||||||
QString Statistics::GenerateHTML()
|
QString Statistics::GenerateHTML()
|
||||||
{
|
{
|
||||||
|
|
||||||
QString heading_color="#f8f0ff";
|
QString heading_color="#ffffff";
|
||||||
QString subheading_color="#efefef";
|
QString subheading_color="#efefef";
|
||||||
|
|
||||||
QString html = htmlHeader();
|
QString html = htmlHeader();
|
||||||
|
Loading…
Reference in New Issue
Block a user