Fix Show Splitter bug, cleanups

This commit is contained in:
Mark Watkins 2011-09-11 17:03:04 +10:00
parent b45fc5f273
commit c8224e3467
4 changed files with 8 additions and 5 deletions

View File

@ -1259,6 +1259,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
quads=new GLBuffer(QColor(0,0,0,0),1024,GL_QUADS); // big fat shared line list
quads->forceAntiAlias(true);
setFocusPolicy(Qt::StrongFocus);
m_showsplitter=true;
}
gGraphView::~gGraphView()
{
@ -1444,6 +1445,7 @@ void gGraphView::updateScrollBar()
float vis=0;
for (int i=0;i<m_graphs.size();i++) vis+=m_graphs[i]->isEmpty() || (!m_graphs[i]->visible()) ? 0 : 1;
//vis+=1;
if (th<h) { // less graphs than fits on screen
m_scrollbar->setMaximum(0); // turn scrollbar off.

View File

@ -10,7 +10,7 @@ p,a,td,body { font-size: 14px }
<tr><td bgcolor="#d0d0d0" colspan=2 cellpadding=0 valign=center align=center><font color="black" size=+1><b>Welcome to SleepyHead</b></font></td></tr>
<tr>
<td valign="top" leftmargin=0 cellpadding=6>
<p>This software is designed to assist you in reviewing data for your CPAP Machine, Oximeter, and Sleep Stage monitors, as well as help you track general issues related to sleep health.</p>
<p>This software is designed to assist you in reviewing data for your CPAP Machine, Oximeter, and Sleep Stage monitors, as well as help you <i>track</i> general issues related to sleep health.</p>
<p>Currenly supports the following machines:</p>
<li>Philips Respironics System One (Including ASV models)</li>
<li>ResMed S9 models (VPAP and lower)</li>
@ -33,8 +33,9 @@ p,a,td,body { font-size: 14px }
<td colspan=2>
<hr>
<p><b>Copyright:</b> &copy;2011 <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (jedimark)</p>
<p><b>License:</b> This software is released freely under the <a href="http://www.gnu.org/licenses/gpl.html">GNU Public License</a>.<br/>
<p><b>Do NOT rely on this softwares accuracy when making medical decisions. Talk to your doctor.</b></p>
<p><b>License:</b> This software is released freely under the <a href="http://www.gnu.org/licenses/gpl.html">GNU Public License</a>.</p>
<p><b>Do NOT rely on this software to help you make medical decisions.<br/>This application is merely a data viewer, and no guarantee is made regarding accuracy of data displayed.</p>
<p>Your doctor should always be your first and best source of guidance regarding the important matter of managing your health.</b></p>
</td></tr>
</table>
</body>

View File

@ -462,6 +462,6 @@ void MainWindow::on_actionPrint_Report_triggered()
overview->on_printButton_clicked();
//} else if (ui->tabWidget->currentWidget()==daily) {
} else {
QMessageBox::information(this,"Not supported","Printing from this page is not supported yet",QMessageBox::Ok);
QMessageBox::information(this,"Not supported Yet","Sorry, printing from this page is not supported yet",QMessageBox::Ok);
}
}

View File

@ -174,7 +174,7 @@ void Report::GenerateReport(QDate start, QDate end)
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
buffer.open(QIODevice::WriteOnly);
pixmap.save(&buffer, "PNG");
html += "<div align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\" width=\"100%\"></div>\n"; //
html += "<div align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\" width=\"100%\" height=\"240px\"></div>\n"; //
}
html+="</body></html>";