2011-09-10 14:17:45 +00:00
# include "report.h"
# include "ui_report.h"
# include <QMessageBox>
# include <QBuffer>
# include <Graphs/gYAxis.h>
# include <Graphs/gXAxis.h>
# include <QTimer>
# include <QPrinter>
# include <QPrintDialog>
2011-09-11 06:16:45 +00:00
Report : : Report ( QWidget * parent , Profile * _profile , gGraphView * shared , Overview * overview ) :
2011-09-10 14:17:45 +00:00
QWidget ( parent ) ,
ui ( new Ui : : Report ) ,
2011-09-11 06:16:45 +00:00
profile ( _profile ) ,
2011-09-10 14:17:45 +00:00
m_overview ( overview )
{
ui - > setupUi ( this ) ;
2011-09-11 06:16:45 +00:00
Q_ASSERT ( profile ! = NULL ) ;
2011-09-10 15:58:07 +00:00
GraphView = new gGraphView ( this , shared ) ;
2011-09-12 02:24:58 +00:00
setMaximumSize ( 1280 , 800 ) ;
setMinimumSize ( 1280 , 800 ) ;
GraphView - > setMaximumSize ( 1280 , graph_height ) ;
GraphView - > setMinimumSize ( 1280 , graph_height ) ;
2011-09-10 14:17:45 +00:00
GraphView - > hide ( ) ;
2011-09-12 02:24:58 +00:00
2011-09-10 15:58:07 +00:00
// Reusing the layer data from overview screen,
// (Can't reuse the graphs objects without breaking things)
2011-09-11 14:36:51 +00:00
UC = new gGraph ( GraphView , " Usage " , graph_height , 0 ) ;
2011-09-10 14:17:45 +00:00
UC - > AddLayer ( m_overview - > uc ) ;
2011-09-11 14:36:51 +00:00
AHI = new gGraph ( GraphView , " AHI " , graph_height , 0 ) ;
2011-09-10 14:17:45 +00:00
AHI - > AddLayer ( m_overview - > bc ) ;
2011-09-11 14:36:51 +00:00
PR = new gGraph ( GraphView , " Pressure " , graph_height , 0 ) ;
2011-09-10 14:17:45 +00:00
PR - > AddLayer ( m_overview - > pr ) ;
2011-09-11 14:36:51 +00:00
LK = new gGraph ( GraphView , " Leaks " , graph_height , 0 ) ;
2011-09-10 14:17:45 +00:00
LK - > AddLayer ( m_overview - > lk ) ;
2011-09-11 14:36:51 +00:00
NPB = new gGraph ( GraphView , " % in PB " , graph_height , 0 ) ;
2011-09-10 15:58:07 +00:00
NPB - > AddLayer ( m_overview - > npb ) ;
2011-09-10 15:43:40 +00:00
graphs . push_back ( AHI ) ;
graphs . push_back ( UC ) ;
graphs . push_back ( PR ) ;
graphs . push_back ( LK ) ;
graphs . push_back ( NPB ) ;
2011-09-10 15:58:07 +00:00
gXAxis * gx ;
for ( int i = 0 ; i < graphs . size ( ) ; i + + ) {
graphs [ i ] - > AddLayer ( new gYAxis ( ) , LayerLeft , gYAxis : : Margin ) ;
gx = new gXAxis ( ) ;
gx - > setUtcFix ( true ) ;
graphs [ i ] - > AddLayer ( gx , LayerBottom , 0 , gXAxis : : Margin ) ;
graphs [ i ] - > AddLayer ( new gXGrid ( ) ) ;
}
2011-09-10 15:43:40 +00:00
2011-09-10 14:17:45 +00:00
GraphView - > hideSplitter ( ) ;
//ui->webView->hide();
m_ready = false ;
2011-09-10 15:43:40 +00:00
ReloadGraphs ( ) ;
2011-09-10 14:17:45 +00:00
// Reload();
}
Report : : ~ Report ( )
{
delete ui ;
}
2011-09-10 15:43:40 +00:00
void Report : : ReloadGraphs ( )
{
2011-09-10 16:27:07 +00:00
for ( int i = 0 ; i < graphs . size ( ) ; i + + ) {
graphs [ i ] - > setDay ( NULL ) ;
}
2011-09-11 06:16:45 +00:00
startDate = profile - > FirstDay ( ) ;
endDate = profile - > LastDay ( ) ;
2011-09-10 15:43:40 +00:00
for ( int i = 0 ; i < graphs . size ( ) ; i + + ) {
graphs [ i ] - > ResetBounds ( ) ;
}
2011-09-11 06:16:45 +00:00
m_ready = true ;
2011-09-10 14:17:45 +00:00
2011-09-10 15:43:40 +00:00
}
2011-09-10 14:17:45 +00:00
void Report : : resizeEvent ( QResizeEvent * event )
{
2011-09-12 02:24:58 +00:00
// QWidget::resizeEvent(event);
//GraphView->setMinimumSize(1280,graph_height);
//GraphView->setMaximumSize(1280,graph_height);
2011-09-11 06:16:45 +00:00
//GenerateReport(startDate,endDate);
2011-09-10 14:17:45 +00:00
}
QPixmap Report : : Snapshot ( gGraph * graph )
{
2011-09-11 06:16:45 +00:00
QDateTime d1 ( startDate , QTime ( 0 , 0 , 0 ) , Qt : : UTC ) ;
2011-09-10 14:17:45 +00:00
qint64 first = qint64 ( d1 . toTime_t ( ) ) * 1000L ;
2011-09-11 06:16:45 +00:00
QDateTime d2 ( endDate , QTime ( 23 , 59 , 59 ) , Qt : : UTC ) ;
2011-09-10 14:17:45 +00:00
qint64 last = qint64 ( d2 . toTime_t ( ) ) * 1000L ;
GraphView - > TrashGraphs ( ) ;
GraphView - > AddGraph ( graph ) ;
GraphView - > ResetBounds ( ) ;
GraphView - > SetXBounds ( first , last ) ;
2011-09-11 14:36:51 +00:00
QPixmap pixmap = GraphView - > renderPixmap ( 1280 , graph_height , false ) ;
2011-09-10 14:17:45 +00:00
return pixmap ;
}
2011-09-11 06:16:45 +00:00
void Report : : GenerateReport ( QDate start , QDate end )
2011-09-10 14:17:45 +00:00
{
if ( ! m_ready ) return ;
2011-09-11 06:16:45 +00:00
startDate = start ;
endDate = end ;
2011-09-10 14:17:45 +00:00
//UC->ResetBounds();
QString html = " <html><head><style type='text/css'>p,a,td,body { font-family: 'FreeSans', 'Sans Serif'; } p,a,td,body { font-size: 12px; } </style> "
" </head> "
" <body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0> "
2011-09-11 14:36:51 +00:00
" <div align=center><table width='1280px' cellpadding=0 cellspacing=0> "
2011-09-10 14:17:45 +00:00
" <tr><td valign=top> " ;
html + = " <h2>CPAP Overview</h2> " ;
html + = " <table border='1px'><tr><td valign=top><table border=0> " ;
//html+="<i>This is a temporary scratch pad tab so I can see what's going on while designing printing code. These graphs are images, and not controllable.</i>";
2011-09-10 15:43:40 +00:00
if ( ! ( ( * profile ) . Exists ( " FirstName " ) & & ( * profile ) . Exists ( " LastName " ) ) ) html + = " <h1>Please edit your profile</h1> " ; else {
2011-09-10 14:17:45 +00:00
html + = " <tr><td>Name:</td><td> " + ( * profile ) [ " FirstName " ] . toString ( ) + " " + ( * profile ) [ " LastName " ] . toString ( ) + " </td></tr> " ;
}
if ( ( * profile ) . Exists ( " Address " ) & & ! ( * profile ) [ " Address " ] . toString ( ) . isEmpty ( ) ) {
QString address = ( * profile ) [ " Address " ] . toString ( ) . replace ( " \n " , " <br/> " ) ;
html + = " <tr><td valign=top>Address:</td><td valign=top> " + address + " </td></tr> " ;
}
if ( ( * profile ) . Exists ( " Phone " ) & & ! ( * profile ) [ " Phone " ] . toString ( ) . isEmpty ( ) ) {
html + = " <tr><td>Phone:</td><td> " + ( * profile ) [ " Phone " ] . toString ( ) + " </td></tr> " ;
}
if ( ( * profile ) . Exists ( " EmailAddress " ) & & ! ( * profile ) [ " EmailAddress " ] . toString ( ) . isEmpty ( ) ) {
html + = " <tr><td>Email:</td><td> " + ( * profile ) [ " EmailAddress " ] . toString ( ) + " </td></tr> " ;
}
html + = " </table></td><td valign=top><table> " ;
if ( ( * profile ) . Exists ( " Gender " ) ) {
QString gender = ( * profile ) [ " Gender " ] . toBool ( ) ? " Male " : " Female " ;
html + = " <tr><td>Gender:</td><td> " + gender + " </td></tr> " ;
}
if ( ( * profile ) . Exists ( " DOB " ) & & ! ( * profile ) [ " DOB " ] . toString ( ) . isEmpty ( ) ) {
QDate dob = ( * profile ) [ " DOB " ] . toDate ( ) ;
//html+="<tr><td>D.O.B.:</td><td>"+dob.toString()+"</td></tr>";
QDateTime d1 ( dob , QTime ( 0 , 0 , 0 ) ) ;
QDateTime d2 ( QDate : : currentDate ( ) , QTime ( 0 , 0 , 0 ) ) ;
int years = d1 . daysTo ( d2 ) / 365.25 ;
html + = " <tr><td>Age:</td><td> " + QString : : number ( years ) + " years</td></tr> " ;
}
if ( ( * profile ) . Exists ( " Height " ) & & ! ( * profile ) [ " Height " ] . toString ( ) . isEmpty ( ) ) {
html + = " <tr><td>Height:</td><td> " + ( * profile ) [ " Height " ] . toString ( ) ;
if ( ! ( * profile ) . Exists ( " UnitSystem " ) ) {
( * profile ) [ " UnitSystem " ] = " Metric " ;
}
if ( ( * profile ) [ " UnitSystem " ] . toString ( ) = = " Metric " ) html + = " cm " ; else html + = " inches " ;
html + = " </td></tr> " ;
}
html + = " </table></td></tr></table> " ;
2011-09-11 14:36:51 +00:00
html + = " <td ><div align=center><img src='qrc:/docs/sheep.png' width=100 height=100'><br/>SleepyHead v " + pref [ " VersionString " ] . toString ( ) + " </div></td></tr> "
" <tr><td colspan=2> "
" Reporting from <b> " + startDate . toString ( ) + " </b> to <b> " + endDate . toString ( ) + " </b> "
" <hr width=1270px> "
" </td></tr> "
" </table></div> <br/> " ;
2011-09-10 14:17:45 +00:00
for ( int i = 0 ; i < graphs . size ( ) ; i + + ) {
2011-09-10 15:43:40 +00:00
if ( graphs [ i ] - > isEmpty ( ) ) continue ;
2011-09-10 14:17:45 +00:00
QPixmap pixmap = Snapshot ( graphs [ i ] ) ;
QByteArray byteArray ;
QBuffer buffer ( & byteArray ) ; // use buffer to store pixmap into byteArray
buffer . open ( QIODevice : : WriteOnly ) ;
pixmap . save ( & buffer , " PNG " ) ;
2011-09-11 14:36:51 +00:00
html + = " <div align=center><img src= \" data:image/png;base64, " + byteArray . toBase64 ( ) + " \" width= \" 1280px \" height= \" " + QString : : number ( graph_height ) + " px \" ></div> \n " ; //
2011-09-10 14:17:45 +00:00
}
html + = " </body></html> " ;
ui - > webView - > setHtml ( html ) ;
}
void Report : : on_printButton_clicked ( )
{
QPrinter printer ;
2011-09-11 07:05:38 +00:00
//printer.setPrinterName("Print to File (PDF)");
//printer.setOutputFormat(QPrinter::PdfFormat);
2011-09-10 14:17:45 +00:00
printer . setPrintRange ( QPrinter : : AllPages ) ;
printer . setOrientation ( QPrinter : : Portrait ) ;
2011-09-11 07:05:38 +00:00
//printer.setPaperSize(QPrinter::A4);
2011-09-10 14:17:45 +00:00
printer . setResolution ( QPrinter : : HighResolution ) ;
2011-09-11 14:36:51 +00:00
//printer.setPageSize();
2011-09-10 14:17:45 +00:00
printer . setFullPage ( false ) ;
printer . setNumCopies ( 1 ) ;
2011-09-10 15:43:40 +00:00
printer . setPageMargins ( 10 , 10 , 10 , 10 , QPrinter : : Millimeter ) ;
QPrintDialog * dialog = new QPrintDialog ( & printer ) ;
2011-09-10 14:17:45 +00:00
//printer.setOutputFileName("printYou.pdf");
if ( dialog - > exec ( ) = = QDialog : : Accepted ) {
ui - > webView - > print ( & printer ) ;
}
}