2022-03-02 16:25:03 +00:00
|
|
|
/* Overview GUI Headers
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef OVERVIEW_H
|
|
|
|
#define OVERVIEW_H
|
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
#include <QWidget>
|
2018-06-14 09:12:49 +00:00
|
|
|
#ifndef BROKEN_OPENGL_BUILD
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <QGLContext>
|
2018-06-14 09:12:49 +00:00
|
|
|
#endif
|
2011-09-07 08:35:55 +00:00
|
|
|
#include <QHBoxLayout>
|
2011-09-12 03:07:57 +00:00
|
|
|
#include <QDateEdit>
|
2022-04-17 23:34:42 +00:00
|
|
|
#include <QTimer>
|
2011-09-07 08:35:55 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
#include "Graphs/gGraphView.h"
|
2022-11-16 19:07:03 +00:00
|
|
|
#ifndef REMOVE_FITNESS
|
|
|
|
#include "Graphs/gOverviewGraph.h"
|
|
|
|
#endif
|
2011-09-17 12:39:00 +00:00
|
|
|
#include "Graphs/gSummaryChart.h"
|
2022-12-28 18:24:01 +00:00
|
|
|
#include "saveGraphLayoutSettings.h"
|
2022-12-27 00:26:23 +00:00
|
|
|
|
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QListWidgetItem>
|
2011-07-12 07:10:34 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
class Overview;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
class Report;
|
2022-04-17 23:34:42 +00:00
|
|
|
class Overview;
|
|
|
|
|
|
|
|
class DateErrorDisplay:QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DateErrorDisplay (Overview* overview) ;
|
|
|
|
~DateErrorDisplay() ;
|
|
|
|
bool visible() {return m_visible;};
|
|
|
|
void cancel();
|
|
|
|
void error(bool startDate,const QDate& date);
|
|
|
|
protected:
|
|
|
|
|
|
|
|
private:
|
|
|
|
QTimer* m_timer;
|
|
|
|
bool m_visible=false;
|
|
|
|
Overview* m_overview;
|
|
|
|
QDate m_startDate;
|
|
|
|
QDate m_endDate;
|
|
|
|
private slots:
|
|
|
|
void timerDone();
|
|
|
|
};
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2011-12-21 04:25:01 +00:00
|
|
|
enum YTickerType { YT_Number, YT_Time, YT_Weight };
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
/*! \class Overview
|
2024-02-01 00:14:19 +00:00
|
|
|
\author Mark Watkins
|
2011-12-18 16:39:36 +00:00
|
|
|
\brief Overview tab, showing overall summary data
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class Overview : public QWidget
|
|
|
|
{
|
2022-04-17 23:34:42 +00:00
|
|
|
friend class DateErrorDisplay;
|
2011-06-26 08:30:44 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2014-04-23 13:19:56 +00:00
|
|
|
explicit Overview(QWidget *parent, gGraphView *shared = nullptr);
|
2011-06-26 08:30:44 +00:00
|
|
|
~Overview();
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Returns Overview gGraphView object containing it's graphs
|
2011-11-27 14:35:25 +00:00
|
|
|
gGraphView *graphView() { return GraphView; }
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Recalculates Overview chart info
|
2011-09-07 08:44:04 +00:00
|
|
|
void ReloadGraphs();
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2019-07-02 15:25:47 +00:00
|
|
|
//! \brief Resets font in date display
|
|
|
|
void ResetFont();
|
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
//! \brief Recalculates Overview chart info, but keeps the date set
|
2021-03-21 20:21:48 +00:00
|
|
|
//void ResetGraphs();
|
2011-12-25 13:27:47 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Reset graphs to uniform heights
|
2011-09-12 17:47:37 +00:00
|
|
|
void ResetGraphLayout();
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2019-07-31 02:59:01 +00:00
|
|
|
/*! \fn ResetGraphOrder()
|
|
|
|
\brief Resets all graphs in the main gGraphView back to their initial order.
|
|
|
|
*/
|
2019-09-29 03:15:16 +00:00
|
|
|
void ResetGraphOrder(int type);
|
2019-07-31 02:59:01 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Calls updateGL to redraw the overview charts
|
2011-09-23 03:54:48 +00:00
|
|
|
void RedrawGraphs();
|
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
//! \brief Sets the currently selected date range of the overview display
|
2022-02-22 12:48:30 +00:00
|
|
|
void setRange(QDate& start, QDate& end,bool updateGraphs=true);
|
2011-12-25 13:27:47 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
/*! \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 */
|
2014-07-16 17:12:52 +00:00
|
|
|
gGraph *createGraph(QString code, QString name, QString units = "", YTickerType yttype = YT_Number);
|
2014-08-06 16:12:55 +00:00
|
|
|
gGraph *AHI, *AHIHR, *UC, *FL, *SA, *US, *PR, *LK, *NPB, *SET, *SES, *RR, *MV, *TV, *PTB, *PULSE, *SPO2, *NLL,
|
2014-09-18 17:58:00 +00:00
|
|
|
*WEIGHT, *ZOMBIE, *BMI, *TGMV, *TOTLK, *STG, *SN, *TTIA;
|
2022-11-16 19:07:03 +00:00
|
|
|
#ifndef REMOVE_FITNESS
|
|
|
|
gOverviewGraph *bc, *sa, *us, *pr, *set, *ses, *ptb, *pulse, *spo2,
|
2014-09-11 14:23:08 +00:00
|
|
|
*weight, *zombie, *bmi, *ahihr, *tgmv, *totlk;
|
2022-11-16 19:07:03 +00:00
|
|
|
#endif
|
2011-12-18 16:39:36 +00:00
|
|
|
|
2014-09-18 17:58:00 +00:00
|
|
|
gSummaryChart * stg, *uc, *ahi, * pres, *lk, *npb, *rr, *mv, *tv, *nll, *sn, *ttia;
|
2014-09-04 02:17:59 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
void RebuildGraphs(bool reset = true);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public slots:
|
2014-09-11 14:23:08 +00:00
|
|
|
void onRebuildGraphs() { RebuildGraphs(true); }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2019-08-14 18:29:26 +00:00
|
|
|
//! \brief Resets view to currently shown start & end dates
|
|
|
|
void on_zoomButton_clicked();
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private slots:
|
2014-08-29 11:34:21 +00:00
|
|
|
void updateGraphCombo();
|
2022-02-22 12:48:30 +00:00
|
|
|
void on_XBoundsChanged(qint64 ,qint64);
|
|
|
|
void on_summaryChartEmpty(gSummaryChart*,qint64,qint64,bool);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Resets the graph view because the Start date has been changed
|
2011-09-12 03:07:57 +00:00
|
|
|
void on_dateStart_dateChanged(const QDate &date);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Resets the graph view because the End date has been changed
|
2011-09-11 06:16:45 +00:00
|
|
|
void on_dateEnd_dateChanged(const QDate &date);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Updates the calendar highlighting when changing to a new month
|
2011-10-05 08:09:57 +00:00
|
|
|
void dateStart_currentPageChanged(int year, int month);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Updates the calendar highlighting when changing to a new month
|
2011-10-05 08:09:57 +00:00
|
|
|
void dateEnd_currentPageChanged(int year, int month);
|
2011-09-11 06:16:45 +00:00
|
|
|
|
2011-12-25 06:24:40 +00:00
|
|
|
void on_rangeCombo_activated(int index);
|
|
|
|
|
2012-01-03 11:12:13 +00:00
|
|
|
void on_graphCombo_activated(int index);
|
|
|
|
|
2014-08-28 15:45:46 +00:00
|
|
|
void on_LineCursorUpdate(double time);
|
|
|
|
void on_RangeUpdate(double minx, double maxx);
|
2021-12-05 18:51:20 +00:00
|
|
|
void setGraphText ();
|
2018-06-07 21:53:09 +00:00
|
|
|
|
2022-12-29 17:54:22 +00:00
|
|
|
void on_layout_clicked();
|
2023-10-15 00:13:50 +00:00
|
|
|
void on_graphHelp_clicked();
|
2022-12-27 00:26:23 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private:
|
2019-08-22 09:26:33 +00:00
|
|
|
void CreateAllGraphs();
|
2022-02-22 12:48:30 +00:00
|
|
|
void timedUpdateOverview(int ms=0);
|
2019-08-22 09:26:33 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
Ui::Overview *ui;
|
2011-09-07 08:35:55 +00:00
|
|
|
gGraphView *GraphView;
|
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
QHBoxLayout *layout;
|
2014-04-17 05:52:25 +00:00
|
|
|
gGraphView *m_shared;
|
|
|
|
QIcon *icon_on;
|
|
|
|
QIcon *icon_off;
|
2021-12-05 18:51:20 +00:00
|
|
|
QIcon *icon_up_down;
|
|
|
|
QIcon *icon_warning;
|
2014-08-28 15:45:46 +00:00
|
|
|
MyLabel *dateLabel;
|
2021-03-21 20:21:48 +00:00
|
|
|
bool customMode=false;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Updates the calendar highlighting for the calendar object for this date.
|
2022-03-02 16:25:03 +00:00
|
|
|
void UpdateCalendarDay(QDateEdit *calendar, QDate date,bool startDateWidget);
|
2012-01-03 14:59:15 +00:00
|
|
|
void updateCube();
|
2011-09-12 16:10:18 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
Day *day; // dummy in this case
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2022-02-22 12:48:30 +00:00
|
|
|
|
|
|
|
bool checkRangeChanged(QDate& first, QDate& last);
|
|
|
|
void connectgSummaryCharts() ;
|
|
|
|
void disconnectgSummaryCharts() ;
|
|
|
|
void SetXBounds(qint64 minx, qint64 maxx, short group = 0, bool refresh = true);
|
2022-03-02 16:25:03 +00:00
|
|
|
void SetXBounds(QDate & start, QDate& end, short group =0 , bool refresh = true);
|
2022-04-17 23:34:42 +00:00
|
|
|
void resetUiDates();
|
|
|
|
DateErrorDisplay* dateErrorDisplay;
|
|
|
|
int calculatePixels(bool startDate,ToolTipAlignment& align);
|
|
|
|
QString shortformat;
|
2022-02-22 12:48:30 +00:00
|
|
|
|
|
|
|
// Start and of dates of the current graph display
|
|
|
|
QDate displayStartDate;
|
|
|
|
QDate displayEndDate;
|
|
|
|
|
2022-11-16 19:07:03 +00:00
|
|
|
// min / max dates of the graph Range
|
2022-02-22 12:48:30 +00:00
|
|
|
QDate minRangeStartDate;
|
|
|
|
QDate maxRangeEndDate;
|
|
|
|
|
|
|
|
QHash<gSummaryChart*,gGraph*> chartsToBeMonitored;
|
|
|
|
QHash<gSummaryChart*,gGraph* > chartsEmpty;
|
|
|
|
|
2022-03-01 13:20:18 +00:00
|
|
|
bool settingsLoaded ;
|
|
|
|
|
2022-03-02 16:25:03 +00:00
|
|
|
// Actual dates displayed in Start/End Widgets.
|
|
|
|
QDate uiStartDate;
|
|
|
|
QDate uiEndDate;
|
|
|
|
|
|
|
|
// Are start and end widgets displaying the same month.
|
|
|
|
bool samePage;
|
|
|
|
|
2022-12-28 18:24:01 +00:00
|
|
|
SaveGraphLayoutSettings* saveGraphLayoutSettings=nullptr;
|
2023-03-04 21:45:57 +00:00
|
|
|
QString STR_HIDE_ALL_GRAPHS =QString(tr("Hide All Graphs"));
|
|
|
|
QString STR_SHOW_ALL_GRAPHS =QString(tr("Show All Graphs"));
|
|
|
|
void showGraph(int index,bool show, bool updateGraph);
|
|
|
|
void showAllGraphs(bool show);
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
2011-09-07 08:35:55 +00:00
|
|
|
|
2022-04-17 23:34:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // OVERVIEW_H
|