mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Loading and empty data messages
This commit is contained in:
parent
00f8afafb3
commit
1e0f25ba4e
@ -325,7 +325,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
||||
ui->weightSpinBox->setSuffix(STR_UNIT_KG);
|
||||
}
|
||||
GraphView->setCubeImage(images["sheep"]);
|
||||
GraphView->setEmptyText(tr("Loading Data..."));
|
||||
GraphView->setEmptyText(tr("No Data"));
|
||||
}
|
||||
|
||||
Daily::~Daily()
|
||||
|
@ -158,6 +158,8 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
//"border-top-left-radius: 8px;"
|
||||
//"border-top-right-radius: 8px;"
|
||||
|
||||
QString loadingtxt="<HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'><tr><td align=center><h1>Loading...</h1></td></tr></table></body></HTML>";
|
||||
ui->summaryView->setHtml(loadingtxt);
|
||||
}
|
||||
extern MainWindow *mainwin;
|
||||
MainWindow::~MainWindow()
|
||||
@ -532,6 +534,13 @@ void MainWindow::on_summaryButton_clicked()
|
||||
mach.append(oximeters);
|
||||
|
||||
|
||||
if (mach.size()==0) {
|
||||
html+="<table cellpadding=2 cellspacing=0 border=0 width=100% height=70%>";
|
||||
html+="<tr><td align=center><h1>Please Import Some Data</h1><br/><i>SleepyHead is pretty much useless without it.</i></td></tr></table>";
|
||||
html+=htmlFooter();
|
||||
ui->summaryView->setHtml(html);
|
||||
return;
|
||||
}
|
||||
int cpapdays=PROFILE.countDays(MT_CPAP,firstcpap,lastcpap);
|
||||
CPAPMode cpapmode=(CPAPMode)p_profile->calcSettingsMax(CPAP_Mode,MT_CPAP,firstcpap,lastcpap);
|
||||
|
||||
@ -546,7 +555,7 @@ void MainWindow::on_summaryButton_clicked()
|
||||
html+="<div align=center>";
|
||||
html+=QString("<table cellpadding=2 cellspacing=0 border=1 width=90%>");
|
||||
if (cpapdays==0) {
|
||||
//html+="<tr><td colspan=6>No Machine Data Imported</td></tr>";
|
||||
html+="<tr><td colspan=6 align=center>No CPAP Machine Data Imported</td></tr>";
|
||||
} else {
|
||||
html+=QString("<tr><td colspan=6><b>CPAP Statistics as of %1</b></td></tr>").arg(lastcpap.toString(Qt::SystemLocaleLongDate));
|
||||
|
||||
|
@ -78,7 +78,7 @@
|
||||
<enum>QTabWidget::North</enum>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>1</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="documentMode">
|
||||
<bool>false</bool>
|
||||
|
@ -72,7 +72,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
||||
GraphView=new gGraphView(ui->graphArea,m_shared);
|
||||
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
||||
|
||||
GraphView->setEmptyText("Import some data!");
|
||||
GraphView->setEmptyText("No Data");
|
||||
GraphView->setCubeImage(images["nodata"]);
|
||||
|
||||
// Create the custom scrollbar and attach to GraphView
|
||||
|
Loading…
Reference in New Issue
Block a user