2011-08-05 00:12:23 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
Overview GUI Headers
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-05 00:12:23 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef OVERVIEW_H
|
|
|
|
#define OVERVIEW_H
|
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
#include <QWidget>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <QGLContext>
|
2011-09-07 08:35:55 +00:00
|
|
|
#include <QHBoxLayout>
|
2011-09-12 03:07:57 +00:00
|
|
|
#include <QDateEdit>
|
2011-09-07 08:35:55 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
#include "Graphs/gGraphView.h"
|
|
|
|
#include "Graphs/gBarChart.h"
|
2011-09-11 06:16:45 +00:00
|
|
|
#include "report.h"
|
2011-07-12 07:10:34 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
namespace Ui {
|
|
|
|
class Overview;
|
|
|
|
}
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
class Report;
|
2011-06-26 08:30:44 +00:00
|
|
|
class Overview : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-09-11 06:16:45 +00:00
|
|
|
explicit Overview(QWidget *parent,Profile *profile, gGraphView *shared=NULL);
|
2011-06-26 08:30:44 +00:00
|
|
|
~Overview();
|
|
|
|
|
2011-09-07 08:44:04 +00:00
|
|
|
void ReloadGraphs();
|
2011-09-07 08:35:55 +00:00
|
|
|
//void UpdateGraphs();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-10 15:43:40 +00:00
|
|
|
gGraph *AHI,*UC,*PR,*LK,*NPB;
|
|
|
|
SummaryChart *bc,*uc,*pr,*lk,*npb;
|
2011-09-11 06:16:45 +00:00
|
|
|
public slots:
|
|
|
|
void on_printButton_clicked();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
private slots:
|
2011-09-07 08:35:55 +00:00
|
|
|
/* void on_drStart_dateChanged(const QDate &date);
|
2011-07-01 10:10:44 +00:00
|
|
|
void on_drEnd_dateChanged(const QDate &date);
|
|
|
|
void on_rbDateRange_toggled(bool checked);
|
|
|
|
void on_rbLastWeek_clicked();
|
|
|
|
void on_rbLastMonth_clicked();
|
|
|
|
void on_rbEverything_clicked();
|
2011-09-07 08:35:55 +00:00
|
|
|
void on_rbDateRange_clicked(); */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-12 03:07:57 +00:00
|
|
|
void on_dateStart_dateChanged(const QDate &date);
|
2011-09-11 06:16:45 +00:00
|
|
|
void on_dateEnd_dateChanged(const QDate &date);
|
|
|
|
|
2011-09-12 03:07:57 +00:00
|
|
|
void on_dateStart_currentPageChanged(int year, int month);
|
|
|
|
void on_dateEnd_currentPageChanged(int year, int month);
|
2011-09-11 06:16:45 +00:00
|
|
|
|
|
|
|
void on_toolButton_clicked();
|
|
|
|
|
|
|
|
void readyToPrint(bool);
|
2011-06-26 08:30:44 +00:00
|
|
|
private:
|
|
|
|
Ui::Overview *ui;
|
|
|
|
Profile *profile;
|
2011-09-07 08:35:55 +00:00
|
|
|
gGraphView *GraphView;
|
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
QHBoxLayout *layout;
|
|
|
|
gGraphView * m_shared;
|
2011-09-11 06:16:45 +00:00
|
|
|
Report * report;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-19 02:52:03 +00:00
|
|
|
void UpdateHTML();
|
2011-09-12 03:07:57 +00:00
|
|
|
void UpdateCalendarDay(QDateEdit * calendar,QDate date);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
//SessionTimes *session_times;
|
|
|
|
//,*PRESSURE,*LEAK,*SESSTIMES;
|
|
|
|
|
|
|
|
//Layer *prmax,*prmin,*iap,*eap,*pr,*sesstime;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
Day * day;// dummy in this case
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
};
|
2011-09-07 08:35:55 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // OVERVIEW_H
|