mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
138 lines
4.4 KiB
C++
138 lines
4.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
*
|
|
* Overview GUI Headers
|
|
*
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
* distribution for more details. */
|
|
|
|
#ifndef OVERVIEW_H
|
|
#define OVERVIEW_H
|
|
|
|
#include <QWidget>
|
|
#include <QGLContext>
|
|
#include <QHBoxLayout>
|
|
#include <QDateEdit>
|
|
#include "SleepLib/profiles.h"
|
|
#include "Graphs/gGraphView.h"
|
|
#include "Graphs/gSummaryChart.h"
|
|
|
|
namespace Ui {
|
|
class Overview;
|
|
}
|
|
|
|
class Report;
|
|
|
|
enum YTickerType { YT_Number, YT_Time, YT_Weight };
|
|
|
|
/*! \class Overview
|
|
\author Mark Watkins <jedimark_at_users.sourceforge.net>
|
|
\brief Overview tab, showing overall summary data
|
|
*/
|
|
class Overview : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Overview(QWidget *parent, gGraphView *shared = nullptr);
|
|
~Overview();
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
//! \brief Returns Overview gGraphView object containing it's graphs
|
|
gGraphView *graphView() { return GraphView; }
|
|
|
|
//! \brief Recalculates Overview chart info
|
|
void ReloadGraphs();
|
|
|
|
//! \brief Recalculates Overview chart info, but keeps the date set
|
|
void ResetGraphs();
|
|
|
|
//! \brief Reset graphs to uniform heights
|
|
void ResetGraphLayout();
|
|
|
|
//! \brief Calls updateGL to redraw the overview charts
|
|
void RedrawGraphs();
|
|
|
|
//! \brief Sets the currently selected date range of the overview display
|
|
void setRange(QDate start, QDate end);
|
|
|
|
/*! \brief Create an overview graph, adding it to the overview gGraphView object
|
|
\param QString name The title of the graph
|
|
\param QString units The units of measurements to show in the popup */
|
|
gGraph *createGraph(QString code, QString name, QString units = "", YTickerType yttype = YT_Number);
|
|
gGraph *AHI, *AHIHR, *UC, *FL, *SA, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2,
|
|
// gGraph *AHI, *AHIHR, *UC, *FL, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2,
|
|
*WEIGHT, *ZOMBIE, *BMI, *TGMV, *TOTLK;
|
|
SummaryChart *bc, *uc, *fl, *sa, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2,
|
|
// SummaryChart *bc, *uc, *fl, *us, *pr, *lk, *npb, *set, *ses, *rr, *mv, *tv, *ptb, *pulse, *spo2,
|
|
*weight, *zombie, *bmi, *ahihr, *tgmv, *totlk;
|
|
|
|
//! \breif List of SummaryCharts shown on the overview page
|
|
QVector<SummaryChart *> OverviewCharts;
|
|
|
|
void updateGraphCombo();
|
|
void ResetGraph(QString name);
|
|
|
|
public slots:
|
|
// ! \brief Print button down the bottom, does the same as File->Print
|
|
//void on_printButton_clicked();
|
|
|
|
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(); */
|
|
|
|
//! \brief Resets the graph view because the Start date has been changed
|
|
void on_dateStart_dateChanged(const QDate &date);
|
|
|
|
//! \brief Resets the graph view because the End date has been changed
|
|
void on_dateEnd_dateChanged(const QDate &date);
|
|
|
|
//! \brief Updates the calendar highlighting when changing to a new month
|
|
void dateStart_currentPageChanged(int year, int month);
|
|
|
|
//! \brief Updates the calendar highlighting when changing to a new month
|
|
void dateEnd_currentPageChanged(int year, int month);
|
|
|
|
//! \brief Resets view to currently shown start & end dates
|
|
void on_toolButton_clicked();
|
|
|
|
//void on_printDailyButton_clicked();
|
|
|
|
void on_rangeCombo_activated(int index);
|
|
|
|
void on_graphCombo_activated(int index);
|
|
|
|
void on_toggleVisibility_clicked(bool checked);
|
|
|
|
private:
|
|
Ui::Overview *ui;
|
|
gGraphView *GraphView;
|
|
MyScrollBar *scrollbar;
|
|
QHBoxLayout *layout;
|
|
gGraphView *m_shared;
|
|
QIcon *icon_on;
|
|
QIcon *icon_off;
|
|
|
|
//! \brief Updates the calendar highlighting for the calendar object for this date.
|
|
void UpdateCalendarDay(QDateEdit *calendar, QDate date);
|
|
void updateCube();
|
|
|
|
//SessionTimes *session_times;
|
|
//,*PRESSURE,*LEAK,*SESSTIMES;
|
|
|
|
//Layer *prmax,*prmin,*iap,*eap,*pr,*sesstime;
|
|
|
|
Day *day; // dummy in this case
|
|
|
|
};
|
|
|
|
#endif // OVERVIEW_H
|