mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
/********************************************************************
|
|
Overview GUI Headers
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*********************************************************************/
|
|
|
|
#ifndef OVERVIEW_H
|
|
#define OVERVIEW_H
|
|
|
|
#include <QWidget>
|
|
#include <QGLContext>
|
|
#include <QSplitter>
|
|
#include <QLabel>
|
|
#include <SleepLib/profiles.h>
|
|
#include <Graphs/graphdata_custom.h>
|
|
|
|
namespace Ui {
|
|
class Overview;
|
|
}
|
|
|
|
class Overview : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Overview(QWidget *parent,QGLContext *context);
|
|
~Overview();
|
|
|
|
void SetGLContext(QGLContext *context) { shared_context=context; };
|
|
void ReloadGraphs();
|
|
void UpdateGraphs();
|
|
|
|
|
|
private slots:
|
|
void on_drStart_dateChanged(const QDate &date);
|
|
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();
|
|
void on_rbDateRange_clicked();
|
|
|
|
private:
|
|
Ui::Overview *ui;
|
|
Profile *profile;
|
|
QGLContext *shared_context;
|
|
|
|
void AddData(HistoryData *d) { Data.push_back(d); };
|
|
void AddGraph(gGraphWindow *w) { Graphs.push_back(w); };
|
|
void RedrawGraphs();
|
|
|
|
HistoryData *ahidata,*pressure,*leak,*usage,*bedtime,*waketime,*pressure_iap,*pressure_eap;
|
|
HistoryData *pressure_min,*pressure_max;
|
|
SessionTimes *session_times;
|
|
gGraphWindow *AHI,*PRESSURE,*LEAK,*USAGE,*SESSTIMES;
|
|
|
|
gLayer *prmax,*prmin,*iap,*eap,*pr,*sesstime;
|
|
|
|
list<HistoryData *> Data;
|
|
list<gGraphWindow *> Graphs;
|
|
Day *dummyday;
|
|
QSplitter *gSplitter;
|
|
QLabel *NoData;
|
|
};
|
|
|
|
#endif // OVERVIEW_H
|