OSCAR-code/oscar/overview.h
LoudSnorer 6b81db5bbb Problem
*CSR pinned on overview tab disappears on the first paint.
Cause
*Charts are automatically permanently disabled for charts that are initially empty
*This problem impacts any chart that is enabled in File => Preferences.
Details
*gGraph does not display layers (paint) when the layer is empty.
*gSummaryChart (layer) initializes empty to false and calculates empty during painting.
Causing empty charts to be permanently disabled.
*Once a chart has been displayed, it will always be displayed even if empty.
Solution
*Enabled painting charts when the DayRange is increased, triggering the empty flag to be recalculated
New non-empty charts will now be permanently displayed
*Overview maintains the largest DayRange used and list of empty charts.
*Overview receive these signals and calls recalculates when largest DayRange is increased.
*gSummaryChart implement recalculate method.
*gSummaryChart implement emit signal when empty flag changes.
*gGraphView implement emit signal when day range changes. (XBounds)
**** IMPORTANT MUST Rebuild makefiles.****
*Remove two Makefiles and execute qmake. (works for linux version).
2022-02-22 07:48:30 -05:00

160 lines
4.8 KiB
C++

/* Overview GUI Headers
*
* Copyright (c) 2019-2022 The OSCAR Team
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.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 source code
* for more details. */
#ifndef OVERVIEW_H
#define OVERVIEW_H
#include <QWidget>
#ifndef BROKEN_OPENGL_BUILD
#include <QGLContext>
#endif
#include <QHBoxLayout>
#include <QDateEdit>
#include "SleepLib/profiles.h"
#include "Graphs/gGraphView.h"
#include "Graphs/gSummaryChart.h"
#include "Graphs/gSessionTimesChart.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();
//! \brief Returns Overview gGraphView object containing it's graphs
gGraphView *graphView() { return GraphView; }
//! \brief Recalculates Overview chart info
void ReloadGraphs();
//! \brief Resets font in date display
void ResetFont();
//! \brief Recalculates Overview chart info, but keeps the date set
//void ResetGraphs();
//! \brief Reset graphs to uniform heights
void ResetGraphLayout();
/*! \fn ResetGraphOrder()
\brief Resets all graphs in the main gGraphView back to their initial order.
*/
void ResetGraphOrder(int type);
//! \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,bool updateGraphs=true);
/*! \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, *NLL,
*WEIGHT, *ZOMBIE, *BMI, *TGMV, *TOTLK, *STG, *SN, *TTIA;
SummaryChart *bc, *sa, *us, *pr, *set, *ses, *ptb, *pulse, *spo2,
*weight, *zombie, *bmi, *ahihr, *tgmv, *totlk;
gSummaryChart * stg, *uc, *ahi, * pres, *lk, *npb, *rr, *mv, *tv, *nll, *sn, *ttia;
void RebuildGraphs(bool reset = true);
public slots:
void onRebuildGraphs() { RebuildGraphs(true); }
//! \brief Resets view to currently shown start & end dates
void on_zoomButton_clicked();
private slots:
void updateGraphCombo();
void on_XBoundsChanged(qint64 ,qint64);
void on_summaryChartEmpty(gSummaryChart*,qint64,qint64,bool);
//! \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);
//void on_printDailyButton_clicked();
void on_rangeCombo_activated(int index);
void on_graphCombo_activated(int index);
void on_toggleVisibility_clicked(bool checked);
void on_LineCursorUpdate(double time);
void on_RangeUpdate(double minx, double maxx);
void setGraphText ();
private:
void CreateAllGraphs();
void timedUpdateOverview(int ms=0);
Ui::Overview *ui;
gGraphView *GraphView;
MyScrollBar *scrollbar;
QHBoxLayout *layout;
gGraphView *m_shared;
QIcon *icon_on;
QIcon *icon_off;
QIcon *icon_up_down;
QIcon *icon_warning;
MyLabel *dateLabel;
bool customMode=false;
//! \brief Updates the calendar highlighting for the calendar object for this date.
void UpdateCalendarDay(QDateEdit *calendar, QDate date);
void updateCube();
Day *day; // dummy in this case
bool checkRangeChanged(QDate& first, QDate& last);
void connectgSummaryCharts() ;
void disconnectgSummaryCharts() ;
void SetXBounds(qint64 minx, qint64 maxx, short group = 0, bool refresh = true);
// Start and of dates of the current graph display
QDate displayStartDate;
QDate displayEndDate;
// min / max dates of the graph Range
QDate minRangeStartDate;
QDate maxRangeEndDate;
QHash<gSummaryChart*,gGraph*> chartsToBeMonitored;
QHash<gSummaryChart*,gGraph* > chartsEmpty;
};
#endif // OVERVIEW_H