mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
/*
|
|
Report Module Header
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef REPORT_H
|
|
#define REPORT_H
|
|
|
|
#include <QWidget>
|
|
#include <QWebView>
|
|
#include "SleepLib/profiles.h"
|
|
#include "Graphs/gGraphView.h"
|
|
#include "overview.h"
|
|
|
|
namespace Ui {
|
|
class Report;
|
|
}
|
|
|
|
const int graph_print_width=1024;
|
|
const int graph_print_height=150;
|
|
|
|
class Daily;
|
|
class Overview;
|
|
class Report : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Report(QWidget *parent, gGraphView * shared, Overview * overview);
|
|
~Report();
|
|
QString GenerateReport(QString templ,QDate start, QDate end);
|
|
void ReloadGraphs();
|
|
QString ParseTemplate(QString input);
|
|
|
|
QPixmap Snapshot(gGraph * graph);
|
|
void Print(QString html);
|
|
|
|
private:
|
|
Ui::Report *ui;
|
|
Overview * m_overview;
|
|
gGraphView * shared;
|
|
gGraphView * GraphView;
|
|
gGraph *AHI,*UC,*PR,*LK,*NPB,*SET,*SES;
|
|
SummaryChart *bc,*uc,*pr,*lk,*npb,*set,*ses;
|
|
QHash<QString,QVariant> locals;
|
|
QHash<QString,gGraph *> graphs;
|
|
|
|
QDate startDate;
|
|
QDate endDate;
|
|
|
|
bool m_ready;
|
|
};
|
|
|
|
#endif // REPORT_H
|