Properly Free graph objects in Reports

This commit is contained in:
Mark Watkins 2011-09-12 23:27:26 +10:00
parent 2f74e6cdc5
commit b058da6c18
6 changed files with 69 additions and 21 deletions

View File

@ -338,6 +338,7 @@ Layer::Layer(ChannelID code)
m_width=m_height=0; m_width=m_height=0;
m_X=m_Y=0; m_X=m_Y=0;
m_position=LayerCenter; m_position=LayerCenter;
m_refcount=0;
} }
Layer::~Layer() Layer::~Layer()
@ -416,6 +417,7 @@ void LayerGroup::SetDay(Day * d)
void LayerGroup::AddLayer(Layer *l) void LayerGroup::AddLayer(Layer *l)
{ {
layers.push_back(l); layers.push_back(l);
l->addref();
} }
qint64 LayerGroup::Minx() qint64 LayerGroup::Minx()
@ -548,6 +550,11 @@ gGraph::gGraph(gGraphView *graphview,QString title,int height,short group) :
} }
gGraph::~gGraph() gGraph::~gGraph()
{ {
for (int i=0;i<m_layers.size();i++) {
if (m_layers[i]->unref())
delete m_layers[i];
}
m_layers.clear();
delete m_quad; delete m_quad;
} }
@ -733,6 +740,7 @@ void gGraph::AddLayer(Layer * l,LayerPosition position, short width, short heigh
l->setLayout(position,width,height,order); l->setLayout(position,width,height,order);
l->setMovable(movable); l->setMovable(movable);
l->setPos(x,y); l->setPos(x,y);
l->addref();
m_layers.push_back(l); m_layers.push_back(l);
} }
void gGraph::redraw() { m_graphview->updateGL(); } void gGraph::redraw() { m_graphview->updateGL(); }

View File

@ -129,6 +129,9 @@ public:
virtual void drawGLBuf(); virtual void drawGLBuf();
short m_refcount;
void addref() { m_refcount++; }
bool unref() { m_refcount--; if (m_refcount<=0) return true; return false; }
protected: protected:
void addGLBuf(GLBuffer *buf) { mgl_buffers.push_back(buf); } void addGLBuf(GLBuffer *buf) { mgl_buffers.push_back(buf); }
//QRect bounds; // bounds, relative to top of individual graph. //QRect bounds; // bounds, relative to top of individual graph.

View File

@ -13,23 +13,23 @@
<tr> <tr>
<td valign=top width=50%> <td valign=top width=50%>
<table rules=none border=0 cell_padding=0 cell_spacing=0 width=100%> <table rules=none border=0 cell_padding=0 cell_spacing=0 width=100%>
<tr><td>Name:</td><td>{{Profile.FirstName}} {{Profile.LastName}}</td></tr> <tr><td>Name:</td><td>{{profile.FirstName}} {{profile.LastName}}</td></tr>
<tr><td valign=top>Address:</td><td valign=top>{{Profile.Address}}</td></tr> <tr><td valign=top>Address:</td><td valign=top>{{profile.Address}}</td></tr>
<tr><td>Phone:</td><td>{{Profile.Phone}}</td></tr> <tr><td>Phone:</td><td>{{profile.Phone}}</td></tr>
<tr><td>Email:</td><td>{{Profile.EmailAddress}}</td></tr> <tr><td>Email:</td><td>{{profile.EmailAddress}}</td></tr>
</table></td> </table></td>
<td valign=top width=50%> <td valign=top width=50%>
<table width=100% height=100% rules=none border=0> <table width=100% height=100% rules=none border=0>
<tr><td>Gender:</td><td>{{Profile.Gender}}</td></tr> <tr><td>Gender:</td><td>{{profile.Gender}}</td></tr>
<tr><td>Age:</td><td>{{local.Age}} years</td></tr> <tr><td>Age:</td><td>{{local.Age}} years</td></tr>
<tr><td>Height:</td><td>{{Profile.Height}}{{local.DistanceMeasure}}</td></tr> <tr><td>Height:</td><td>{{profile.Height}}{{local.DistanceMeasure}}</td></tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
<td valign=center align=center> <td valign=center align=center>
<img src='qrc:/docs/sheep.png' width=100px height=100px'> <img src='qrc:/docs/sheep.png' width=100px height=100px'>
<br/>SleepyHead v{{pref.VersionString}} <br/>{{pref.AppName}} v{{pref.VersionString}}
<br/>http://sleepyhead.sf.net <br/>http://sleepyhead.sf.net
</td> </td>
</tr> </tr>

View File

@ -242,8 +242,12 @@ void Overview::on_printButton_clicked()
npb->deselect(); npb->deselect();
report->ReloadGraphs(); report->ReloadGraphs();
report->GenerateReport(ui->dateStart->date(),ui->dateEnd->date()); QString reportname="overview";
report->Print(); if (report->GenerateReport(reportname,ui->dateStart->date(),ui->dateEnd->date())) {
report->Print();
} else {
qDebug() << "Faulty Report" << reportname;
}
} }
} }

View File

@ -9,6 +9,7 @@
#include <QPrintDialog> #include <QPrintDialog>
#include <QRegExp> #include <QRegExp>
#include <QFile> #include <QFile>
#include <QDir>
Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview) : Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview) :
QWidget(parent), QWidget(parent),
@ -62,6 +63,7 @@ Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overvie
Report::~Report() Report::~Report()
{ {
GraphView->TrashGraphs();
for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) { for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) {
delete g.value(); delete g.value();
} }
@ -170,14 +172,42 @@ QString Report::ParseTemplate(QString input)
} }
void Report::GenerateReport(QDate start, QDate end) bool Report::GenerateReport(QString templ,QDate start, QDate end)
{ {
if (!m_ready) return; //if (!m_ready) return;
startDate=start; //startDate=start;
endDate=end; //endDate=end;
locals["start"]=startDate; QString filename=pref.Get("{home}/reports");
locals["end"]=endDate; QDir dir(filename);
if (!dir.exists()) {
dir.mkdir(filename);
}
filename+="/"+templ+".sht";
QFile file;
file.setFileName(filename);
QByteArray input;
if (file.exists()) {
file.open(QIODevice::ReadOnly);
input=file.readAll();
file.close();
} else {
QString f2=":/docs/template_"+templ+".sht";
file.setFileName(f2);
if (!file.exists()) return false;
file.open(QIODevice::ReadOnly);
input=file.readAll();
file.close();
file.setFileName(filename);
file.open(QIODevice::WriteOnly);
file.write(input);
file.close();
}
QString html=input;
locals["start"]=start;
locals["end"]=end;
locals["width"]=graph_print_width-10; locals["width"]=graph_print_width-10;
if ((*profile).Exists("DOB") && !(*profile)["DOB"].toString().isEmpty()) { if ((*profile).Exists("DOB") && !(*profile)["DOB"].toString().isEmpty()) {
@ -195,20 +225,23 @@ void Report::GenerateReport(QDate start, QDate end)
locals["DistanceMeasure"]="cm"; locals["DistanceMeasure"]="cm";
else locals["DistanceMeasure"]="inches"; else locals["DistanceMeasure"]="inches";
} }
QFile file(":/docs/template_overview.sht"); //QFile file(":/docs/template_overview.sht");
file.open(QIODevice::ReadOnly); //file.open(QIODevice::ReadOnly);
QString html=file.readAll(); //QString html=file.readAll();
QString output=ParseTemplate(html); QString output=ParseTemplate(html);
ui->webView->setHtml(output); ui->webView->setHtml(output);
return true;
} }
void Report::Print() void Report::Print()
{ {
QPrinter printer; QPrinter printer;
//printer.setPrinterName("Print to File (PDF)"); #ifdef Q_WS_X11
//printer.setOutputFormat(QPrinter::PdfFormat); printer.setPrinterName("Print to File (PDF)");
printer.setOutputFormat(QPrinter::PdfFormat);
#endif
printer.setPrintRange(QPrinter::AllPages); printer.setPrintRange(QPrinter::AllPages);
printer.setOrientation(QPrinter::Portrait); printer.setOrientation(QPrinter::Portrait);
//printer.setPaperSize(QPrinter::A4); //printer.setPaperSize(QPrinter::A4);

View File

@ -23,7 +23,7 @@ class Report : public QWidget
public: public:
explicit Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview); explicit Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview);
~Report(); ~Report();
void GenerateReport(QDate start, QDate end); bool GenerateReport(QString templ,QDate start, QDate end);
void ReloadGraphs(); void ReloadGraphs();
QString ParseTemplate(QString input); QString ParseTemplate(QString input);