2014-04-09 21:01:57 +00:00
|
|
|
/* -*- 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. */
|
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"
|
2011-09-17 12:39:00 +00:00
|
|
|
#include "Graphs/gSummaryChart.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-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
|
|
|
|
\author Mark Watkins <jedimark_at_users.sourceforge.net>
|
|
|
|
\brief Overview tab, showing overall summary data
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class Overview : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-10-05 07:41:56 +00:00
|
|
|
explicit Overview(QWidget *parent, gGraphView *shared=NULL);
|
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
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
//! \brief Recalculates Overview chart info, but keeps the date set
|
|
|
|
void ResetGraphs();
|
|
|
|
|
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
|
|
|
|
|
|
|
//! \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
|
|
|
|
void setRange(QDate start, QDate end);
|
|
|
|
|
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 */
|
2011-12-21 04:25:01 +00:00
|
|
|
gGraph * createGraph(QString name,QString units="",YTickerType yttype=YT_Number);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2012-11-12 07:24:18 +00:00
|
|
|
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, *us, *pr,*lk,*npb,*set,*ses,*rr,*mv,*tv,*ptb,*pulse,*spo2,*weight,*zombie, *bmi, *ahihr, *tgmv, *totlk;
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \breif List of SummaryCharts shown on the overview page
|
2011-10-31 11:55:25 +00:00
|
|
|
QVector<SummaryChart *> OverviewCharts;
|
|
|
|
|
2012-01-03 11:12:13 +00:00
|
|
|
void updateGraphCombo();
|
2012-01-05 15:17:50 +00:00
|
|
|
void ResetGraph(QString name);
|
2012-01-03 11:12:13 +00:00
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
public slots:
|
2011-12-25 13:27:47 +00:00
|
|
|
// ! \brief Print button down the bottom, does the same as File->Print
|
|
|
|
//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-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-18 16:39:36 +00:00
|
|
|
//! \brief Resets view to currently shown start & end dates
|
2011-09-11 06:16:45 +00:00
|
|
|
void on_toolButton_clicked();
|
|
|
|
|
2012-01-05 04:37:22 +00:00
|
|
|
//void on_printDailyButton_clicked();
|
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);
|
|
|
|
|
2012-01-03 14:59:15 +00:00
|
|
|
void on_toggleVisibility_clicked(bool checked);
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
private:
|
|
|
|
Ui::Overview *ui;
|
2011-09-07 08:35:55 +00:00
|
|
|
gGraphView *GraphView;
|
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
QHBoxLayout *layout;
|
|
|
|
gGraphView * m_shared;
|
2012-01-03 11:12:13 +00:00
|
|
|
QIcon * icon_on;
|
|
|
|
QIcon * icon_off;
|
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.
|
2011-09-12 03:07:57 +00:00
|
|
|
void UpdateCalendarDay(QDateEdit * calendar,QDate date);
|
2012-01-03 14:59:15 +00:00
|
|
|
void updateCube();
|
2011-09-12 16:10:18 +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
|