2018-06-14 07:25:54 +00:00
/* Daily Panel
2014-04-09 21:01:57 +00:00
*
2019-08-18 21:27:21 +00:00
* Copyright ( c ) 2019 The OSCAR Team
2018-03-28 07:10:52 +00:00
* Copyright ( c ) 2011 - 2018 Mark Watkins < mark @ jedimark . net >
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
# include <QTextCharFormat>
2011-08-20 07:38:50 +00:00
# include <QPalette>
2011-06-26 08:30:44 +00:00
# include <QTextBlock>
# include <QColorDialog>
2011-07-28 11:09:53 +00:00
# include <QSpacerItem>
2011-06-26 08:30:44 +00:00
# include <QBuffer>
# include <QPixmap>
2011-07-27 09:21:53 +00:00
# include <QMessageBox>
2011-07-28 11:09:53 +00:00
# include <QResizeEvent>
2011-08-20 08:20:22 +00:00
# include <QScrollBar>
2011-12-01 06:06:13 +00:00
# include <QSpacerItem>
2013-10-13 08:07:43 +00:00
# include <QFontMetrics>
2013-10-10 17:36:53 +00:00
# include <QLabel>
2018-05-08 08:12:32 +00:00
# include <QMutexLocker>
2013-10-10 17:36:53 +00:00
2011-12-02 13:48:05 +00:00
# include <cmath>
2011-06-26 08:30:44 +00:00
2011-11-27 22:36:38 +00:00
# include "daily.h"
# include "ui_daily.h"
2011-11-15 21:22:08 +00:00
# include "common_gui.h"
2011-10-05 07:41:56 +00:00
# include "SleepLib/profiles.h"
2011-06-26 08:30:44 +00:00
# include "SleepLib/session.h"
# include "Graphs/graphdata_custom.h"
# include "Graphs/gLineOverlay.h"
# include "Graphs/gFlagsLine.h"
# include "Graphs/gFooBar.h"
# include "Graphs/gXAxis.h"
# include "Graphs/gYAxis.h"
2011-07-28 17:15:15 +00:00
# include "Graphs/gSegmentChart.h"
2011-08-30 08:46:24 +00:00
# include "Graphs/gStatsLine.h"
2014-08-09 17:12:37 +00:00
# include "Graphs/gdailysummary.h"
2014-08-11 18:29:44 +00:00
# include "Graphs/MinutesAtPressure.h"
2011-06-26 08:30:44 +00:00
2011-12-18 10:53:51 +00:00
extern MainWindow * mainwin ;
2011-12-01 15:40:32 +00:00
2019-07-19 05:39:08 +00:00
QString htmlLeftHeader ;
QString htmlLeftAHI ;
QString htmlLeftMachineInfo ;
QString htmlLeftSleepTime ;
QString htmlLeftIndices ;
QString htmlLeftPieChart = " " ;
QString htmlLeftNoHours = " " ;
QString htmlLeftStatistics ;
QString htmlLeftOximeter ;
QString htmlLeftMachineSettings ;
QString htmlLeftSessionInfo ;
QString htmlLeftFooter ;
2020-04-22 20:52:21 +00:00
extern ChannelID PRS1_PeakFlow ;
2019-07-19 05:39:08 +00:00
2014-05-13 08:14:20 +00:00
// This was Sean Stangl's idea.. but I couldn't apply that patch.
inline QString channelInfo ( ChannelID code ) {
return schema : : channel [ code ] . fullname ( ) + " \n " + schema : : channel [ code ] . description ( ) + " \n ( " + schema : : channel [ code ] . units ( ) + " ) " ;
2019-07-05 17:29:57 +00:00
// return schema::channel[code].fullname()+"\n"+schema::channel[code].description()
// + (schema::channel[code].units() != "0" ? "\n("+schema::channel[code].units()+")" : "");
2014-05-13 08:14:20 +00:00
}
2019-09-07 05:16:35 +00:00
// Charts displayed on the Daily page are defined in the Daily::Daily constructor. They consist of some hard-coded charts and a table
// of channel codes for which charts are generated. If the list of channel codes is changed, the graph order lists below will need to
// be changed correspondingly.
//
// Note that "graph codes" are strings used to identify graphs and are not the same as "channel codes." The mapping between channel codes
// and graph codes is found in schema.cpp. (What we here call 'graph cdoes' are called 'lookup codes' in schema.cpp.)
//
2019-09-03 19:56:10 +00:00
//
// List here the graph codes in the order they are to be displayed.
// Do NOT list a code twice, or Oscar will crash when the profile is closed!
//
2019-09-02 05:14:36 +00:00
// Standard graph order
const QList < QString > standardGraphOrder = { STR_GRAPH_SleepFlags , STR_GRAPH_FlowRate , STR_GRAPH_Pressure , STR_GRAPH_LeakRate , STR_GRAPH_FlowLimitation ,
STR_GRAPH_Snore , STR_GRAPH_TidalVolume , STR_GRAPH_MaskPressure , STR_GRAPH_RespRate , STR_GRAPH_MinuteVent ,
STR_GRAPH_PTB , STR_GRAPH_RespEvent , STR_GRAPH_Ti , STR_GRAPH_Te ,
2020-01-23 17:51:58 +00:00
STR_GRAPH_SleepStage , STR_GRAPH_Inclination , STR_GRAPH_Orientation , STR_GRAPH_Motion , STR_GRAPH_TestChan1 ,
2019-09-02 05:14:36 +00:00
STR_GRAPH_Oxi_Pulse , STR_GRAPH_Oxi_SPO2 , STR_GRAPH_Oxi_Perf , STR_GRAPH_Oxi_Plethy ,
STR_GRAPH_AHI , STR_GRAPH_TAP
} ;
// Advanced graph order
const QList < QString > advancedGraphOrder = { STR_GRAPH_SleepFlags , STR_GRAPH_FlowRate , STR_GRAPH_MaskPressure , STR_GRAPH_TidalVolume , STR_GRAPH_MinuteVent ,
STR_GRAPH_Ti , STR_GRAPH_Te , STR_GRAPH_FlowLimitation , STR_GRAPH_Pressure , STR_GRAPH_LeakRate , STR_GRAPH_Snore ,
STR_GRAPH_RespRate , STR_GRAPH_PTB , STR_GRAPH_RespEvent ,
2020-01-23 17:51:58 +00:00
STR_GRAPH_SleepStage , STR_GRAPH_Inclination , STR_GRAPH_Orientation , STR_GRAPH_Motion , STR_GRAPH_TestChan1 ,
2019-09-02 05:14:36 +00:00
STR_GRAPH_Oxi_Pulse , STR_GRAPH_Oxi_SPO2 , STR_GRAPH_Oxi_Perf , STR_GRAPH_Oxi_Plethy ,
STR_GRAPH_AHI , STR_GRAPH_TAP
} ;
// CPAP modes that should have Advanced graphs
const QList < int > useAdvancedGraphs = { MODE_ASV , MODE_ASV_VARIABLE_EPAP , MODE_AVAPS } ;
2019-09-01 00:56:53 +00:00
2014-08-04 21:28:27 +00:00
void Daily : : setCalendarVisible ( bool visible )
{
on_calButton_toggled ( visible ) ;
}
void Daily : : setSidebarVisible ( bool visible )
{
QList < int > a ;
2018-04-22 12:06:48 +00:00
int panel_width = visible ? AppSetting - > dailyPanelWidth ( ) : 0 ;
2019-01-30 21:59:08 +00:00
qDebug ( ) < < " Daily Left Panel Width is " < < panel_width ;
2014-08-04 21:28:27 +00:00
a . push_back ( panel_width ) ;
a . push_back ( this - > width ( ) - panel_width ) ;
ui - > splitter_2 - > setStretchFactor ( 1 , 1 ) ;
ui - > splitter_2 - > setSizes ( a ) ;
ui - > splitter_2 - > setStretchFactor ( 1 , 1 ) ;
}
2011-12-18 10:53:51 +00:00
Daily : : Daily ( QWidget * parent , gGraphView * shared )
: QWidget ( parent ) , ui ( new Ui : : Daily )
2011-06-26 08:30:44 +00:00
{
2019-03-10 16:03:19 +00:00
qDebug ( ) < < " Creating new Daily object " ;
2011-06-26 08:30:44 +00:00
ui - > setupUi ( this ) ;
2020-01-23 01:10:43 +00:00
ui - > JournalNotesBold - > setShortcut ( QKeySequence : : Bold ) ;
ui - > JournalNotesItalic - > setShortcut ( QKeySequence : : Italic ) ;
ui - > JournalNotesUnderline - > setShortcut ( QKeySequence : : Underline ) ;
2011-10-05 12:43:34 +00:00
// Remove Incomplete Extras Tab
2011-12-02 11:40:47 +00:00
//ui->tabWidget->removeTab(3);
2011-10-05 12:43:34 +00:00
2011-12-03 09:26:59 +00:00
ZombieMeterMoved = false ;
BookmarksChanged = false ;
2014-04-23 13:19:56 +00:00
lastcpapday = nullptr ;
2013-10-22 11:42:57 +00:00
2014-08-05 11:17:03 +00:00
setSidebarVisible ( true ) ;
2011-06-26 08:30:44 +00:00
2014-06-16 00:16:49 +00:00
layout = new QHBoxLayout ( ) ;
2011-08-25 06:11:44 +00:00
layout - > setSpacing ( 0 ) ;
layout - > setMargin ( 0 ) ;
layout - > setContentsMargins ( 0 , 0 , 0 , 0 ) ;
2013-10-10 17:36:53 +00:00
2014-08-17 12:56:05 +00:00
dateDisplay = new MyLabel ( this ) ;
2013-10-12 08:07:57 +00:00
dateDisplay - > setAlignment ( Qt : : AlignCenter ) ;
2014-08-17 12:56:05 +00:00
QFont font = dateDisplay - > font ( ) ;
font . setPointSizeF ( font . pointSizeF ( ) * 1.3F ) ;
dateDisplay - > setFont ( font ) ;
QPalette palette = dateDisplay - > palette ( ) ;
palette . setColor ( QPalette : : Base , Qt : : blue ) ;
dateDisplay - > setPalette ( palette ) ;
//dateDisplay->setTextFormat(Qt::RichText);
2013-10-12 08:07:57 +00:00
ui - > sessionBarLayout - > addWidget ( dateDisplay , 1 ) ;
2013-10-12 07:40:45 +00:00
// const bool sessbar_under_graphs=false;
// if (sessbar_under_graphs) {
// ui->sessionBarLayout->addWidget(sessbar,1);
// } else {
// ui->splitter->insertWidget(2,sessbar);
// sessbar->setMaximumHeight(sessbar->height());
// sessbar->setMinimumHeight(sessbar->height());
// }
2013-10-10 17:36:53 +00:00
2014-05-17 11:33:33 +00:00
ui - > calNavWidget - > setMaximumHeight ( ui - > calNavWidget - > height ( ) ) ;
ui - > calNavWidget - > setMinimumHeight ( ui - > calNavWidget - > height ( ) ) ;
2018-05-07 22:09:59 +00:00
QWidget * widget = new QWidget ( ui - > tabWidget ) ;
sessionbar = new SessionBar ( widget ) ;
sessionbar - > setMinimumHeight ( 25 ) ;
sessionbar - > setMouseTracking ( true ) ;
connect ( sessionbar , SIGNAL ( sessionClicked ( Session * ) ) , this , SLOT ( doToggleSession ( Session * ) ) ) ;
QVBoxLayout * layout2 = new QVBoxLayout ( ) ;
layout2 - > setMargin ( 0 ) ;
widget - > setLayout ( layout2 ) ;
2018-05-08 08:12:32 +00:00
webView = new MyTextBrowser ( widget ) ;
2018-05-07 22:09:59 +00:00
webView - > setOpenLinks ( false ) ;
layout2 - > insertWidget ( 0 , webView , 1 ) ;
layout2 - > insertWidget ( 1 , sessionbar , 0 ) ;
// add the sessionbar after it.
2018-06-14 07:25:54 +00:00
ui - > tabWidget - > insertTab ( 0 , widget , QIcon ( ) , tr ( " Details " ) ) ;
2013-10-12 07:40:45 +00:00
2014-05-17 11:33:33 +00:00
ui - > graphFrame - > setLayout ( layout ) ;
2011-08-25 06:11:44 +00:00
//ui->graphMainArea->setLayout(layout);
ui - > graphMainArea - > setAutoFillBackground ( false ) ;
2014-05-17 11:33:33 +00:00
GraphView = new gGraphView ( ui - > graphFrame , shared ) ;
2019-03-10 16:03:19 +00:00
// qDebug() << "New GraphView object created in Daily";
// sleep(3);
2011-08-25 06:11:44 +00:00
GraphView - > setSizePolicy ( QSizePolicy : : Expanding , QSizePolicy : : Expanding ) ;
2019-04-16 17:12:26 +00:00
GraphView - > setEmptyImage ( QPixmap ( " :/icons/logo-md.png " ) ) ;
2019-03-10 16:03:19 +00:00
2014-08-20 17:17:13 +00:00
snapGV = new gGraphView ( GraphView ) ;
2011-09-21 14:10:10 +00:00
snapGV - > setMinimumSize ( 172 , 172 ) ;
snapGV - > hideSplitter ( ) ;
snapGV - > hide ( ) ;
2011-12-08 14:47:10 +00:00
2014-05-17 11:33:33 +00:00
scrollbar = new MyScrollBar ( ui - > graphFrame ) ;
2011-08-25 06:11:44 +00:00
scrollbar - > setOrientation ( Qt : : Vertical ) ;
scrollbar - > setSizePolicy ( QSizePolicy : : Maximum , QSizePolicy : : Expanding ) ;
scrollbar - > setMaximumWidth ( 20 ) ;
2011-12-02 11:40:47 +00:00
ui - > bookmarkTable - > setColumnCount ( 2 ) ;
ui - > bookmarkTable - > setColumnWidth ( 0 , 70 ) ;
//ui->bookmarkTable->setEditTriggers(QAbstractItemView::SelectedClicked);
//ui->bookmarkTable->setColumnHidden(2,true);
//ui->bookmarkTable->setColumnHidden(3,true);
2011-08-25 06:11:44 +00:00
GraphView - > setScrollBar ( scrollbar ) ;
layout - > addWidget ( GraphView , 1 ) ;
layout - > addWidget ( scrollbar , 0 ) ;
2011-07-29 14:58:44 +00:00
2018-04-22 12:06:48 +00:00
int default_height = AppSetting - > graphHeight ( ) ;
2014-04-05 02:27:47 +00:00
2014-05-13 08:14:20 +00:00
gGraph * GAHI = nullptr ,
// *TAP = nullptr,
* SF = nullptr ,
* AHI = nullptr ;
2019-09-01 00:56:53 +00:00
// const QString STR_GRAPH_DailySummary = "DailySummary";
2014-08-09 17:12:37 +00:00
2014-08-19 10:26:44 +00:00
// gGraph * SG;
2018-06-14 07:25:54 +00:00
// graphlist[STR_GRAPH_DailySummary] = SG = new gGraph(STR_GRAPH_DailySummary, GraphView, tr("Summary"), tr("Summary of this daily information"), default_height);
2014-08-19 10:26:44 +00:00
// SG->AddLayer(new gLabelArea(nullptr),LayerLeft,gYAxis::Margin);
2014-09-01 04:49:05 +00:00
// SG->AddLayer(new gDailySummary());
2014-08-09 17:12:37 +00:00
2014-07-16 17:12:52 +00:00
graphlist [ STR_GRAPH_SleepFlags ] = SF = new gGraph ( STR_GRAPH_SleepFlags , GraphView , STR_TR_EventFlags , STR_TR_EventFlags , default_height ) ;
2014-04-05 01:28:07 +00:00
SF - > setPinned ( true ) ;
2011-12-24 05:55:44 +00:00
2019-09-03 19:56:10 +00:00
//============================================
// Create graphs from 'interesting' CPAP codes
//
// If this list of codes is changed, you must
// also adjust the standard and advanced graph
// order at the beginning of daily.cpp.
//============================================
2019-09-03 05:10:36 +00:00
const ChannelID cpapcodes [ ] = {
2019-07-13 02:29:33 +00:00
CPAP_FlowRate , CPAP_Pressure , CPAP_Leak , CPAP_FLG , CPAP_Snore , CPAP_TidalVolume ,
2020-04-22 20:52:21 +00:00
CPAP_MaskPressure , CPAP_RespRate , CPAP_MinuteVent , CPAP_PTB , PRS1_PeakFlow , CPAP_RespEvent , CPAP_Ti , CPAP_Te ,
2020-01-27 00:50:18 +00:00
/* CPAP_IE, */ ZEO_SleepStage , POS_Inclination , POS_Orientation , POS_Movement , CPAP_Test1
2014-05-13 08:14:20 +00:00
} ;
2019-09-01 00:56:53 +00:00
// Create graphs from the cpap code list
2014-05-13 08:14:20 +00:00
int cpapsize = sizeof ( cpapcodes ) / sizeof ( ChannelID ) ;
for ( int i = 0 ; i < cpapsize ; + + i ) {
ChannelID code = cpapcodes [ i ] ;
2014-08-03 13:00:13 +00:00
graphlist [ schema : : channel [ code ] . code ( ) ] = new gGraph ( schema : : channel [ code ] . code ( ) , GraphView , schema : : channel [ code ] . label ( ) , channelInfo ( code ) , default_height ) ;
2019-09-03 05:10:36 +00:00
// qDebug() << "Creating graph for code" << code << schema::channel[code].code();
2014-05-13 08:14:20 +00:00
}
2019-09-03 19:56:10 +00:00
const ChannelID oximetercodes [ ] = {
OXI_Pulse , OXI_SPO2 , OXI_Perf , OXI_Plethy
} ;
2019-09-01 00:56:53 +00:00
// Add graphs from the Oximeter code list
2019-07-31 02:59:01 +00:00
int oxisize = sizeof ( oximetercodes ) / sizeof ( ChannelID ) ;
2014-09-29 14:41:31 +00:00
//int oxigrp=p_profile->ExistsAndTrue("SyncOximetry") ? 0 : 1; // Contemplating killing this setting...
2014-05-13 08:14:20 +00:00
for ( int i = 0 ; i < oxisize ; + + i ) {
2019-07-31 02:59:01 +00:00
ChannelID code = oximetercodes [ i ] ;
2014-09-29 14:41:31 +00:00
graphlist [ schema : : channel [ code ] . code ( ) ] = new gGraph ( schema : : channel [ code ] . code ( ) , GraphView , schema : : channel [ code ] . label ( ) , channelInfo ( code ) , default_height ) ;
2014-05-13 08:14:20 +00:00
}
2011-12-24 05:55:44 +00:00
2019-09-01 00:56:53 +00:00
// Check for some impossible conditions
2019-03-10 16:03:19 +00:00
if ( p_profile = = nullptr ) {
qDebug ( ) < < " In daily, p_profile is NULL " ;
return ;
}
else if ( p_profile - > general = = nullptr ) {
qDebug ( ) < < " In daily, p_profile->general is NULL " ;
return ;
}
2019-09-01 00:56:53 +00:00
// Decide whether we are using AHI or RDI and create graph for the one we are using
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > calculateRDI ( ) ) {
2019-09-01 00:56:53 +00:00
AHI = new gGraph ( STR_GRAPH_AHI , GraphView , STR_TR_RDI , channelInfo ( CPAP_RDI ) , default_height ) ;
2014-05-13 08:14:20 +00:00
} else {
2019-09-01 00:56:53 +00:00
AHI = new gGraph ( STR_GRAPH_AHI , GraphView , STR_TR_AHI , channelInfo ( CPAP_AHI ) , default_height ) ;
2014-05-13 08:14:20 +00:00
}
2019-09-01 00:56:53 +00:00
graphlist [ STR_GRAPH_AHI ] = AHI ;
2014-05-13 08:14:20 +00:00
2019-09-01 00:56:53 +00:00
// Event breakdown graph
2014-07-16 17:12:52 +00:00
graphlist [ STR_GRAPH_EventBreakdown ] = GAHI = new gGraph ( STR_GRAPH_EventBreakdown , snapGV , tr ( " Breakdown " ) , tr ( " events " ) , 172 ) ;
2011-09-21 14:10:10 +00:00
gSegmentChart * evseg = new gSegmentChart ( GST_Pie ) ;
2013-09-10 15:09:09 +00:00
evseg - > AddSlice ( CPAP_Hypopnea , QColor ( 0x40 , 0x40 , 0xff , 0xff ) , STR_TR_H ) ;
evseg - > AddSlice ( CPAP_Apnea , QColor ( 0x20 , 0x80 , 0x20 , 0xff ) , STR_TR_UA ) ;
evseg - > AddSlice ( CPAP_Obstructive , QColor ( 0x40 , 0xaf , 0xbf , 0xff ) , STR_TR_OA ) ;
evseg - > AddSlice ( CPAP_ClearAirway , QColor ( 0xb2 , 0x54 , 0xcd , 0xff ) , STR_TR_CA ) ;
evseg - > AddSlice ( CPAP_RERA , QColor ( 0xff , 0xff , 0x80 , 0xff ) , STR_TR_RE ) ;
evseg - > AddSlice ( CPAP_NRI , QColor ( 0x00 , 0x80 , 0x40 , 0xff ) , STR_TR_NR ) ;
evseg - > AddSlice ( CPAP_FlowLimit , QColor ( 0x40 , 0x40 , 0x40 , 0xff ) , STR_TR_FL ) ;
2014-05-15 03:51:32 +00:00
evseg - > AddSlice ( CPAP_SensAwake , QColor ( 0x40 , 0xC0 , 0x40 , 0xff ) , STR_TR_SA ) ;
2018-04-22 12:06:48 +00:00
if ( AppSetting - > userEventPieChart ( ) ) {
2014-07-20 09:22:31 +00:00
evseg - > AddSlice ( CPAP_UserFlag1 , QColor ( 0xe0 , 0xe0 , 0xe0 , 0xff ) , tr ( " UF1 " ) ) ;
evseg - > AddSlice ( CPAP_UserFlag2 , QColor ( 0xc0 , 0xc0 , 0xe0 , 0xff ) , tr ( " UF2 " ) ) ;
}
2011-09-21 14:10:10 +00:00
2014-08-28 08:01:25 +00:00
GAHI - > AddLayer ( evseg ) ;
2011-09-21 14:10:10 +00:00
GAHI - > setMargins ( 0 , 0 , 0 , 0 ) ;
2019-09-01 00:56:53 +00:00
// Add event flags to the event flags graph
2011-08-25 06:11:44 +00:00
gFlagsGroup * fg = new gFlagsGroup ( ) ;
2014-08-28 08:01:25 +00:00
SF - > AddLayer ( fg ) ;
2014-08-23 06:21:50 +00:00
2011-08-25 08:02:04 +00:00
SF - > setBlockZoom ( true ) ;
2011-08-25 09:00:19 +00:00
SF - > AddLayer ( new gShadowArea ( ) ) ;
2013-10-25 10:39:30 +00:00
2014-08-12 10:44:05 +00:00
SF - > AddLayer ( new gLabelArea ( fg ) , LayerLeft , gYAxis : : Margin ) ;
2014-08-23 06:21:50 +00:00
2011-08-27 05:06:08 +00:00
//SF->AddLayer(new gFooBar(),LayerBottom,0,1);
2014-08-29 04:02:16 +00:00
SF - > AddLayer ( new gXAxis ( COLOR_Text , false ) , LayerBottom , 0 , gXAxis : : Margin ) ;
2011-08-25 06:11:44 +00:00
2019-09-01 00:56:53 +00:00
// Now take care of xgrid/yaxis labels for all graphs
2014-05-13 08:14:20 +00:00
// The following list contains graphs that don't have standard xgrid/yaxis labels
QStringList skipgraph ;
2014-08-09 17:12:37 +00:00
skipgraph . push_back ( STR_GRAPH_EventBreakdown ) ;
skipgraph . push_back ( STR_GRAPH_SleepFlags ) ;
2019-09-01 00:56:53 +00:00
// skipgraph.push_back(STR_GRAPH_DailySummary);
2014-08-11 18:29:44 +00:00
skipgraph . push_back ( STR_GRAPH_TAP ) ;
2014-05-13 08:14:20 +00:00
QHash < QString , gGraph * > : : iterator it ;
for ( it = graphlist . begin ( ) ; it ! = graphlist . end ( ) ; + + it ) {
if ( skipgraph . contains ( it . key ( ) ) ) continue ;
it . value ( ) - > AddLayer ( new gXGrid ( ) ) ;
}
2011-08-25 06:11:44 +00:00
gLineChart * l ;
2014-08-17 15:36:53 +00:00
l = new gLineChart ( CPAP_FlowRate , false , false ) ;
2014-05-13 08:14:20 +00:00
2014-08-03 13:00:13 +00:00
gGraph * FRW = graphlist [ schema : : channel [ CPAP_FlowRate ] . code ( ) ] ;
2014-05-13 08:14:20 +00:00
// Then the graph itself
2011-08-25 06:11:44 +00:00
FRW - > AddLayer ( l ) ;
2014-05-13 08:14:20 +00:00
2011-11-28 13:16:50 +00:00
2014-08-23 06:21:50 +00:00
// FRW->AddLayer(AddOXI(new gLineOverlayBar(OXI_SPO2Drop, COLOR_SPO2Drop, STR_TR_O2)));
2011-08-25 06:11:44 +00:00
2018-04-22 12:06:48 +00:00
bool square = AppSetting - > squareWavePlots ( ) ;
2014-08-17 15:36:53 +00:00
gLineChart * pc = new gLineChart ( CPAP_Pressure , square ) ;
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_Pressure ] . code ( ) ] - > AddLayer ( pc ) ;
2014-08-03 13:00:13 +00:00
2014-08-23 06:21:50 +00:00
// graphlist[schema::channel[CPAP_Pressure].code()]->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Ramp, COLOR_Ramp, schema::channel[CPAP_Ramp].label(), FT_Span)));
2014-08-03 13:00:13 +00:00
2014-08-17 15:36:53 +00:00
pc - > addPlot ( CPAP_EPAP , square ) ;
pc - > addPlot ( CPAP_IPAPLo , square ) ;
pc - > addPlot ( CPAP_IPAP , square ) ;
pc - > addPlot ( CPAP_IPAPHi , square ) ;
2019-10-29 15:14:57 +00:00
pc - > addPlot ( CPAP_PressureSet , false ) ;
pc - > addPlot ( CPAP_EPAPSet , false ) ;
pc - > addPlot ( CPAP_IPAPSet , false ) ;
2011-11-07 04:10:48 +00:00
2019-09-01 00:56:53 +00:00
// Create Timea at Pressure graph
2014-08-11 18:29:44 +00:00
gGraph * TAP2 ;
2018-06-14 07:25:54 +00:00
graphlist [ STR_GRAPH_TAP ] = TAP2 = new gGraph ( STR_GRAPH_TAP , GraphView , tr ( " Time at Pressure " ) , tr ( " Time at Pressure " ) , default_height ) ;
2014-08-12 10:44:05 +00:00
MinutesAtPressure * map ;
2014-08-28 08:01:25 +00:00
TAP2 - > AddLayer ( map = new MinutesAtPressure ( ) ) ;
2016-03-07 15:45:28 +00:00
TAP2 - > AddLayer ( new gLabelArea ( map ) , LayerLeft , gYAxis : : Margin ) ;
2016-03-07 09:10:58 +00:00
TAP2 - > AddLayer ( new gXAxisPressure ( ) , LayerBottom , gXAxisPressure : : Margin ) ;
2014-08-12 06:43:10 +00:00
TAP2 - > setBlockSelect ( true ) ;
2014-08-11 18:29:44 +00:00
2019-09-01 00:56:53 +00:00
// Fill in the AHI graph
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > calculateRDI ( ) ) {
2014-08-28 08:01:25 +00:00
AHI - > AddLayer ( new gLineChart ( CPAP_RDI , square ) ) ;
2012-01-10 10:00:08 +00:00
// AHI->AddLayer(AddCPAP(new AHIChart(QColor("#37a24b"))));
2011-12-24 05:55:44 +00:00
} else {
2014-08-28 08:01:25 +00:00
AHI - > AddLayer ( new gLineChart ( CPAP_AHI , square ) ) ;
2011-12-24 05:55:44 +00:00
}
2011-11-30 06:56:20 +00:00
2014-05-15 19:45:46 +00:00
// this is class wide because the leak redline can be reset in preferences..
// Better way would be having a search for linechart layers in graphlist[...]
2014-08-17 15:36:53 +00:00
gLineChart * leakchart = new gLineChart ( CPAP_Leak , square ) ;
2014-08-23 06:21:50 +00:00
// graphlist[schema::channel[CPAP_Leak].code()]->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_LargeLeak, COLOR_LargeLeak, STR_TR_LL, FT_Span)));
2014-07-15 07:01:47 +00:00
2014-08-17 15:36:53 +00:00
leakchart - > addPlot ( CPAP_LeakTotal , square ) ;
leakchart - > addPlot ( CPAP_MaxLeak , square ) ;
2014-08-19 14:04:29 +00:00
// schema::channel[CPAP_Leak].setUpperThresholdColor(Qt::red);
// schema::channel[CPAP_Leak].setLowerThresholdColor(Qt::green);
2014-05-15 19:45:46 +00:00
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_Leak ] . code ( ) ] - > AddLayer ( leakchart ) ;
2013-09-10 15:09:09 +00:00
//LEAK->AddLayer(AddCPAP(new gLineChart(CPAP_Leak, COLOR_Leak,square)));
//LEAK->AddLayer(AddCPAP(new gLineChart(CPAP_MaxLeak, COLOR_MaxLeak,square)));
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_Snore ] . code ( ) ] - > AddLayer ( new gLineChart ( CPAP_Snore , true ) ) ;
2012-01-09 03:43:42 +00:00
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_PTB ] . code ( ) ] - > AddLayer ( new gLineChart ( CPAP_PTB , square ) ) ;
2020-04-22 20:52:21 +00:00
graphlist [ schema : : channel [ PRS1_PeakFlow ] . code ( ) ] - > AddLayer ( new gLineChart ( PRS1_PeakFlow , square ) ) ;
2018-05-05 07:14:44 +00:00
graphlist [ schema : : channel [ CPAP_Test1 ] . code ( ) ] - > AddLayer ( new gLineChart ( CPAP_Test1 , square ) ) ;
//graphlist[schema::channel[CPAP_Test2].code()]->AddLayer(new gLineChart(CPAP_Test2, square));
2014-05-15 17:56:53 +00:00
2014-05-15 19:45:46 +00:00
gLineChart * lc = nullptr ;
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_MaskPressure ] . code ( ) ] - > AddLayer ( new gLineChart ( CPAP_MaskPressure , false ) ) ;
2018-05-05 07:14:44 +00:00
graphlist [ schema : : channel [ CPAP_RespRate ] . code ( ) ] - > AddLayer ( lc = new gLineChart ( CPAP_RespRate , square ) ) ;
2014-04-15 13:59:24 +00:00
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ POS_Inclination ] . code ( ) ] - > AddLayer ( new gLineChart ( POS_Inclination ) ) ;
graphlist [ schema : : channel [ POS_Orientation ] . code ( ) ] - > AddLayer ( new gLineChart ( POS_Orientation ) ) ;
2020-01-27 00:50:18 +00:00
graphlist [ schema : : channel [ POS_Movement ] . code ( ) ] - > AddLayer ( new gLineChart ( POS_Movement ) ) ;
2012-01-09 03:43:42 +00:00
2018-05-05 07:14:44 +00:00
graphlist [ schema : : channel [ CPAP_MinuteVent ] . code ( ) ] - > AddLayer ( lc = new gLineChart ( CPAP_MinuteVent , square ) ) ;
2014-08-17 15:36:53 +00:00
lc - > addPlot ( CPAP_TgMV , square ) ;
2012-01-09 15:38:41 +00:00
2018-05-05 07:14:44 +00:00
graphlist [ schema : : channel [ CPAP_TidalVolume ] . code ( ) ] - > AddLayer ( lc = new gLineChart ( CPAP_TidalVolume , square ) ) ;
2013-09-10 15:09:09 +00:00
//lc->addPlot(CPAP_Test2,COLOR_DarkYellow,square);
2012-01-09 03:43:42 +00:00
2014-08-17 15:36:53 +00:00
//graphlist[schema::channel[CPAP_TidalVolume].code()]->AddLayer(AddCPAP(new gLineChart("TidalVolume2", square)));
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_FLG ] . code ( ) ] - > AddLayer ( new gLineChart ( CPAP_FLG , true ) ) ;
2014-08-17 15:36:53 +00:00
//graphlist[schema::channel[CPAP_RespiratoryEvent].code()]->AddLayer(AddCPAP(new gLineChart(CPAP_RespiratoryEvent, true)));
2019-04-07 16:51:08 +00:00
// graphlist[schema::channel[CPAP_IE].code()]->AddLayer(lc=new gLineChart(CPAP_IE, false)); // this should be inverse of supplied value
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ CPAP_Te ] . code ( ) ] - > AddLayer ( lc = new gLineChart ( CPAP_Te , false ) ) ;
graphlist [ schema : : channel [ CPAP_Ti ] . code ( ) ] - > AddLayer ( lc = new gLineChart ( CPAP_Ti , false ) ) ;
2013-09-10 15:09:09 +00:00
//lc->addPlot(CPAP_Test2,COLOR:DarkYellow,square);
2011-11-28 22:49:43 +00:00
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ ZEO_SleepStage ] . code ( ) ] - > AddLayer ( new gLineChart ( ZEO_SleepStage , true ) ) ;
2012-01-11 13:55:46 +00:00
2014-08-20 09:31:14 +00:00
// gLineOverlaySummary *los1=new gLineOverlaySummary(STR_UNIT_EventsPerHour,5,-4);
// gLineOverlaySummary *los2=new gLineOverlaySummary(STR_UNIT_EventsPerHour,5,-4);
// graphlist[schema::channel[OXI_Pulse].code()]->AddLayer(AddOXI(los1->add(new gLineOverlayBar(OXI_PulseChange, COLOR_PulseChange, STR_TR_PC,FT_Span))));
// graphlist[schema::channel[OXI_Pulse].code()]->AddLayer(AddOXI(los1));
// graphlist[schema::channel[OXI_SPO2].code()]->AddLayer(AddOXI(los2->add(new gLineOverlayBar(OXI_SPO2Drop, COLOR_SPO2Drop, STR_TR_O2,FT_Span))));
// graphlist[schema::channel[OXI_SPO2].code()]->AddLayer(AddOXI(los2));
2011-11-28 22:49:43 +00:00
2014-08-28 08:01:25 +00:00
graphlist [ schema : : channel [ OXI_Pulse ] . code ( ) ] - > AddLayer ( new gLineChart ( OXI_Pulse , square ) ) ;
graphlist [ schema : : channel [ OXI_SPO2 ] . code ( ) ] - > AddLayer ( new gLineChart ( OXI_SPO2 , true ) ) ;
graphlist [ schema : : channel [ OXI_Perf ] . code ( ) ] - > AddLayer ( new gLineChart ( OXI_Perf , false ) ) ;
graphlist [ schema : : channel [ OXI_Plethy ] . code ( ) ] - > AddLayer ( new gLineChart ( OXI_Plethy , false ) ) ;
2011-08-26 03:26:53 +00:00
2014-05-13 08:14:20 +00:00
// Fix me
2014-08-20 09:31:14 +00:00
// gLineOverlaySummary *los3=new gLineOverlaySummary(STR_UNIT_EventsPerHour,5,-4);
// graphlist["INTPULSE"]->AddLayer(AddCPAP(los3->add(new gLineOverlayBar(OXI_PulseChange, COLOR_PulseChange, STR_TR_PC,FT_Span))));
// graphlist["INTPULSE"]->AddLayer(AddCPAP(los3));
2014-08-21 14:16:23 +00:00
// graphlist["INTPULSE"]->AddLayer(AddCPAP(new gLineChart(OXI_Pulse, square)));
2014-08-20 09:31:14 +00:00
// gLineOverlaySummary *los4=new gLineOverlaySummary(STR_UNIT_EventsPerHour,5,-4);
// graphlist["INTSPO2"]->AddLayer(AddCPAP(los4->add(new gLineOverlayBar(OXI_SPO2Drop, COLOR_SPO2Drop, STR_TR_O2,FT_Span))));
// graphlist["INTSPO2"]->AddLayer(AddCPAP(los4));
2014-08-21 14:16:23 +00:00
// graphlist["INTSPO2"]->AddLayer(AddCPAP(new gLineChart(OXI_SPO2, true)));
2013-10-13 17:33:43 +00:00
2014-08-03 13:00:13 +00:00
graphlist [ schema : : channel [ CPAP_PTB ] . code ( ) ] - > setForceMaxY ( 100 ) ;
graphlist [ schema : : channel [ OXI_SPO2 ] . code ( ) ] - > setForceMaxY ( 100 ) ;
2013-10-13 17:33:43 +00:00
2014-05-13 08:14:20 +00:00
for ( it = graphlist . begin ( ) ; it ! = graphlist . end ( ) ; + + it ) {
if ( skipgraph . contains ( it . key ( ) ) ) continue ;
2011-11-27 06:25:27 +00:00
2014-05-13 08:14:20 +00:00
it . value ( ) - > AddLayer ( new gYAxis ( ) , LayerLeft , gYAxis : : Margin ) ;
2014-08-29 04:02:16 +00:00
it . value ( ) - > AddLayer ( new gXAxis ( ) , LayerBottom , 0 , gXAxis : : Margin ) ;
2011-08-29 11:42:40 +00:00
}
2011-08-25 06:11:44 +00:00
2014-07-11 12:09:38 +00:00
if ( p_profile - > cpap - > showLeakRedline ( ) ) {
schema : : channel [ CPAP_Leak ] . setUpperThreshold ( p_profile - > cpap - > leakRedline ( ) ) ;
2014-05-15 22:48:51 +00:00
} else {
schema : : channel [ CPAP_Leak ] . setUpperThreshold ( 0 ) ; // switch it off
}
2011-08-25 06:11:44 +00:00
layout - > layout ( ) ;
2011-08-26 03:26:53 +00:00
QTextCharFormat format = ui - > calendar - > weekdayTextFormat ( Qt : : Saturday ) ;
2013-09-10 15:09:09 +00:00
format . setForeground ( QBrush ( COLOR_Black , Qt : : SolidPattern ) ) ;
2011-08-26 03:26:53 +00:00
ui - > calendar - > setWeekdayTextFormat ( Qt : : Saturday , format ) ;
ui - > calendar - > setWeekdayTextFormat ( Qt : : Sunday , format ) ;
2011-11-15 21:22:08 +00:00
Qt : : DayOfWeek dow = firstDayOfWeekFromLocale ( ) ;
ui - > calendar - > setFirstDayOfWeek ( dow ) ;
2011-08-26 03:26:53 +00:00
2018-05-07 22:09:59 +00:00
ui - > tabWidget - > setCurrentWidget ( widget ) ;
2011-10-05 10:44:41 +00:00
2018-05-07 22:09:59 +00:00
connect ( webView , SIGNAL ( anchorClicked ( QUrl ) ) , this , SLOT ( Link_clicked ( QUrl ) ) ) ;
2011-11-27 07:41:00 +00:00
2014-07-11 12:09:38 +00:00
int ews = p_profile - > general - > eventWindowSize ( ) ;
2011-11-27 07:41:00 +00:00
ui - > evViewSlider - > setValue ( ews ) ;
ui - > evViewLCD - > display ( ews ) ;
2014-04-05 01:28:07 +00:00
2012-01-03 16:29:35 +00:00
icon_on = new QIcon ( " :/icons/session-on.png " ) ;
icon_off = new QIcon ( " :/icons/session-off.png " ) ;
2011-12-23 14:12:04 +00:00
ui - > splitter - > setVisible ( false ) ;
2011-12-01 06:06:13 +00:00
2019-05-01 16:05:01 +00:00
if ( p_profile - > general - > unitSystem ( ) = = US_English ) {
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_POUND ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setDecimals ( 0 ) ;
ui - > ouncesSpinBox - > setVisible ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > ouncesSpinBox - > setSuffix ( STR_UNIT_OUNCE ) ;
2011-12-21 11:09:50 +00:00
} else {
ui - > ouncesSpinBox - > setVisible ( false ) ;
2019-07-25 13:23:24 +00:00
ui - > weightSpinBox - > setDecimals ( 1 ) ;
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_KG ) ;
2011-12-02 13:48:05 +00:00
}
2019-03-10 16:03:19 +00:00
2019-04-16 17:12:26 +00:00
GraphView - > setEmptyImage ( QPixmap ( " :/icons/logo-md.png " ) ) ;
2014-08-21 08:04:25 +00:00
GraphView - > setEmptyText ( STR_Empty_NoData ) ;
2012-01-25 22:34:21 +00:00
previous_date = QDate ( ) ;
2014-08-06 20:10:40 +00:00
2019-05-08 21:18:00 +00:00
ui - > calButton - > setChecked ( AppSetting - > calendarVisible ( ) ? true : false ) ;
2018-04-22 12:06:48 +00:00
on_calButton_toggled ( AppSetting - > calendarVisible ( ) ) ;
2014-08-06 20:10:40 +00:00
2014-08-11 04:52:14 +00:00
GraphView - > resetLayout ( ) ;
2019-07-31 02:59:01 +00:00
GraphView - > SaveDefaultSettings ( ) ;
2014-08-11 04:52:14 +00:00
GraphView - > LoadSettings ( " Daily " ) ;
2014-08-17 12:56:05 +00:00
connect ( GraphView , SIGNAL ( updateCurrentTime ( double ) ) , this , SLOT ( on_LineCursorUpdate ( double ) ) ) ;
connect ( GraphView , SIGNAL ( updateRange ( double , double ) ) , this , SLOT ( on_RangeUpdate ( double , double ) ) ) ;
2014-08-29 11:34:21 +00:00
connect ( GraphView , SIGNAL ( GraphsChanged ( ) ) , this , SLOT ( updateGraphCombo ( ) ) ) ;
2021-03-28 03:22:31 +00:00
// Watch for focusOut events on the JournalNotes widget
ui - > JournalNotes - > installEventFilter ( this ) ;
2019-03-10 16:03:19 +00:00
// qDebug() << "Finished making new Daily object";
// sleep(3);
2011-10-30 03:09:43 +00:00
}
2011-06-26 08:30:44 +00:00
Daily : : ~ Daily ( )
{
2018-06-07 21:53:09 +00:00
disconnect ( GraphView , SIGNAL ( updateCurrentTime ( double ) ) , this , SLOT ( on_LineCursorUpdate ( double ) ) ) ;
disconnect ( GraphView , SIGNAL ( updateRange ( double , double ) ) , this , SLOT ( on_RangeUpdate ( double , double ) ) ) ;
disconnect ( GraphView , SIGNAL ( GraphsChanged ( ) ) , this , SLOT ( updateGraphCombo ( ) ) ) ;
2018-05-07 22:09:59 +00:00
disconnect ( sessionbar , SIGNAL ( sessionClicked ( Session * ) ) , this , SLOT ( doToggleSession ( Session * ) ) ) ;
2019-01-30 21:59:08 +00:00
disconnect ( webView , SIGNAL ( anchorClicked ( QUrl ) ) , this , SLOT ( Link_clicked ( QUrl ) ) ) ;
2021-03-28 03:22:31 +00:00
ui - > JournalNotes - > removeEventFilter ( this ) ;
2011-11-27 16:07:28 +00:00
2021-03-28 03:22:31 +00:00
if ( previous_date . isValid ( ) ) {
2018-06-07 21:53:09 +00:00
Unload ( previous_date ) ;
2021-03-28 03:22:31 +00:00
}
2018-06-07 21:53:09 +00:00
// Save graph orders and pin status, etc...
GraphView - > SaveSettings ( " Daily " ) ;
2011-06-26 08:30:44 +00:00
delete ui ;
2012-01-03 16:29:35 +00:00
delete icon_on ;
delete icon_off ;
2011-06-26 08:30:44 +00:00
}
2013-10-10 17:36:53 +00:00
2014-05-15 21:48:53 +00:00
void Daily : : showEvent ( QShowEvent * )
{
2019-03-10 16:03:19 +00:00
// qDebug() << "Start showEvent in Daily object";
// sleep(3);
2014-05-15 21:48:53 +00:00
RedrawGraphs ( ) ;
2019-03-10 16:03:19 +00:00
// qDebug() << "Finished showEvent Daily object";
// sleep(3);
2014-05-15 21:48:53 +00:00
}
2013-10-10 17:36:53 +00:00
void Daily : : doToggleSession ( Session * sess )
{
2014-05-25 07:07:08 +00:00
sess - > setEnabled ( ! sess - > enabled ( ) ) ;
2014-08-20 17:17:13 +00:00
LoadDate ( previous_date ) ;
2014-09-14 15:29:07 +00:00
mainwin - > getOverview ( ) - > graphView ( ) - > dataChanged ( ) ;
2013-10-10 17:36:53 +00:00
}
2011-12-03 08:52:24 +00:00
void Daily : : Link_clicked ( const QUrl & url )
2011-11-24 23:03:33 +00:00
{
QString code = url . toString ( ) . section ( " = " , 0 , 0 ) . toLower ( ) ;
QString data = url . toString ( ) . section ( " = " , 1 ) ;
int sid = data . toInt ( ) ;
2014-04-23 13:19:56 +00:00
Day * day = nullptr ;
2014-08-20 17:17:13 +00:00
2011-12-28 12:03:48 +00:00
if ( code = = " togglecpapsession " ) { // Enable/Disable CPAP session
2014-07-11 12:09:38 +00:00
day = p_profile - > GetDay ( previous_date , MT_CPAP ) ;
2014-08-20 17:17:13 +00:00
if ( ! day ) return ;
2020-11-05 04:12:05 +00:00
Session * sess = day - > find ( sid , MT_CPAP ) ;
2011-12-27 13:21:10 +00:00
if ( ! sess )
return ;
2018-05-07 22:09:59 +00:00
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
2011-12-28 12:03:48 +00:00
sess - > setEnabled ( ! sess - > enabled ( ) ) ;
// Reload day
2014-08-20 17:17:13 +00:00
LoadDate ( previous_date ) ;
2018-05-07 22:09:59 +00:00
// webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
2011-12-28 12:03:48 +00:00
} else if ( code = = " toggleoxisession " ) { // Enable/Disable Oximetry session
2014-07-11 12:09:38 +00:00
day = p_profile - > GetDay ( previous_date , MT_OXIMETER ) ;
2020-11-05 04:12:05 +00:00
Session * sess = day - > find ( sid , MT_OXIMETER ) ;
2011-12-28 12:03:48 +00:00
if ( ! sess )
return ;
2018-05-07 22:09:59 +00:00
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
2011-12-28 12:03:48 +00:00
sess - > setEnabled ( ! sess - > enabled ( ) ) ;
2014-08-20 17:17:13 +00:00
2011-12-28 12:03:48 +00:00
// Reload day
2014-08-20 17:17:13 +00:00
LoadDate ( previous_date ) ;
2018-05-07 22:09:59 +00:00
// webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
2011-12-27 13:21:10 +00:00
} else if ( code = = " cpap " ) {
2014-07-11 12:09:38 +00:00
day = p_profile - > GetDay ( previous_date , MT_CPAP ) ;
2014-08-20 17:17:13 +00:00
if ( day ) {
Session * sess = day - > machine ( MT_CPAP ) - > sessionlist [ sid ] ;
if ( sess & & sess - > enabled ( ) ) {
GraphView - > SetXBounds ( sess - > first ( ) , sess - > last ( ) ) ;
}
}
2011-11-24 23:03:33 +00:00
} else if ( code = = " oxi " ) {
2014-08-20 17:17:13 +00:00
day = p_profile - > GetDay ( previous_date , MT_OXIMETER ) ;
if ( day ) {
Session * sess = day - > machine ( MT_OXIMETER ) - > sessionlist [ sid ] ;
if ( sess & & sess - > enabled ( ) ) {
GraphView - > SetXBounds ( sess - > first ( ) , sess - > last ( ) ) ;
}
}
2011-11-24 23:03:33 +00:00
} else if ( code = = " event " ) {
2013-10-26 05:06:56 +00:00
QList < QTreeWidgetItem * > list = ui - > treeWidget - > findItems ( schema : : channel [ sid ] . fullname ( ) , Qt : : MatchContains ) ;
2011-11-24 23:03:33 +00:00
if ( list . size ( ) > 0 ) {
2011-11-24 23:14:17 +00:00
ui - > treeWidget - > collapseAll ( ) ;
ui - > treeWidget - > expandItem ( list . at ( 0 ) ) ;
QTreeWidgetItem * wi = list . at ( 0 ) - > child ( 0 ) ;
ui - > treeWidget - > setCurrentItem ( wi ) ;
2011-11-24 23:03:33 +00:00
ui - > tabWidget - > setCurrentIndex ( 1 ) ;
2011-12-03 08:52:24 +00:00
} else {
2013-10-26 05:06:56 +00:00
mainwin - > Notify ( tr ( " No %1 events are recorded this day " ) . arg ( schema : : channel [ sid ] . fullname ( ) ) , " " , 1500 ) ;
2011-11-24 23:03:33 +00:00
}
2011-12-03 03:43:23 +00:00
} else if ( code = = " graph " ) {
qDebug ( ) < < " Select graph " < < data ;
2011-11-24 23:03:33 +00:00
} else {
qDebug ( ) < < " Clicked on " < < code < < data ;
}
}
2011-07-04 11:37:26 +00:00
2011-06-26 08:30:44 +00:00
void Daily : : ReloadGraphs ( )
{
2019-03-10 16:03:19 +00:00
// qDebug() << "Start ReloadGraphs Daily object";
// sleep(3);
2014-05-19 07:30:10 +00:00
GraphView - > setDay ( nullptr ) ;
2011-12-23 14:12:04 +00:00
ui - > splitter - > setVisible ( true ) ;
2011-12-06 14:39:14 +00:00
QDate d ;
2012-01-05 04:37:22 +00:00
2011-12-06 14:39:14 +00:00
if ( previous_date . isValid ( ) ) {
d = previous_date ;
2014-09-17 06:12:38 +00:00
//Unload(d);
2012-01-05 04:37:22 +00:00
}
2014-09-29 15:43:00 +00:00
QDate lastcpap = p_profile - > LastDay ( MT_CPAP ) ;
QDate lastoxi = p_profile - > LastDay ( MT_OXIMETER ) ;
d = qMax ( lastcpap , lastoxi ) ;
2011-06-26 08:30:44 +00:00
if ( ! d . isValid ( ) ) {
d = ui - > calendar - > selectedDate ( ) ;
}
on_calendar_currentPageChanged ( d . year ( ) , d . month ( ) ) ;
2012-01-05 04:37:22 +00:00
// this fires a signal which unloads the old and loads the new
2014-05-19 07:30:10 +00:00
ui - > calendar - > blockSignals ( true ) ;
2011-06-26 08:30:44 +00:00
ui - > calendar - > setSelectedDate ( d ) ;
2014-05-19 07:30:10 +00:00
ui - > calendar - > blockSignals ( false ) ;
Load ( d ) ;
2019-08-08 23:24:30 +00:00
ui - > calButton - > setText ( ui - > calendar - > selectedDate ( ) . toString ( MedDateFormat ) ) ;
2014-05-28 17:45:42 +00:00
graphView ( ) - > redraw ( ) ;
2019-03-10 16:03:19 +00:00
// qDebug() << "Finished ReloadGraphs in Daily object";
// sleep(3);
2011-06-26 08:30:44 +00:00
}
2014-05-19 07:30:10 +00:00
2019-07-24 08:48:18 +00:00
void Daily : : updateLeftSidebar ( ) {
if ( webView & & ! htmlLeftHeader . isEmpty ( ) )
webView - > setHtml ( getLeftSidebar ( true ) ) ;
}
2014-08-09 19:45:46 +00:00
void Daily : : hideSpaceHogs ( )
{
2018-04-22 12:06:48 +00:00
if ( AppSetting - > calendarVisible ( ) ) {
2014-08-09 19:45:46 +00:00
ui - > calendarFrame - > setVisible ( false ) ;
}
2019-07-19 05:39:08 +00:00
if ( AppSetting - > showPieChart ( ) ) {
webView - > setHtml ( getLeftSidebar ( false ) ) ;
}
2014-08-09 19:45:46 +00:00
}
void Daily : : showSpaceHogs ( )
{
2018-04-22 12:06:48 +00:00
if ( AppSetting - > calendarVisible ( ) ) {
2014-08-09 19:45:46 +00:00
ui - > calendarFrame - > setVisible ( true ) ;
}
2019-07-19 05:39:08 +00:00
if ( AppSetting - > showPieChart ( ) ) {
webView - > setHtml ( getLeftSidebar ( true ) ) ;
}
2014-08-09 19:45:46 +00:00
}
2011-06-26 08:30:44 +00:00
void Daily : : on_calendar_currentPageChanged ( int year , int month )
{
QDate d ( year , month , 1 ) ;
int dom = d . daysInMonth ( ) ;
for ( int i = 1 ; i < = dom ; i + + ) {
d = QDate ( year , month , i ) ;
this - > UpdateCalendarDay ( d ) ;
}
}
2014-05-19 07:30:10 +00:00
2011-06-26 08:30:44 +00:00
void Daily : : UpdateEventsTree ( QTreeWidget * tree , Day * day )
{
tree - > clear ( ) ;
2011-06-27 10:55:55 +00:00
if ( ! day ) return ;
2011-06-26 08:30:44 +00:00
tree - > setColumnCount ( 1 ) ; // 1 visible common.. (1 hidden)
2014-04-23 13:19:56 +00:00
QTreeWidgetItem * root = nullptr ;
2011-07-31 20:24:43 +00:00
QHash < ChannelID , QTreeWidgetItem * > mcroot ;
QHash < ChannelID , int > mccnt ;
2011-07-05 05:33:06 +00:00
int total_events = 0 ;
2012-01-19 15:18:34 +00:00
2014-07-11 12:09:38 +00:00
qint64 drift = 0 , clockdrift = p_profile - > cpap - > clockDrift ( ) * 1000L ;
2014-08-20 18:36:44 +00:00
quint32 chantype = schema : : FLAG | schema : : SPAN | schema : : MINOR_FLAG ;
if ( p_profile - > general - > showUnknownFlags ( ) ) chantype | = schema : : UNKNOWN ;
QList < ChannelID > chans = day - > getSortedMachineChannels ( chantype ) ;
2019-08-30 01:47:25 +00:00
// Go through all the enabled sessions of the day
2013-10-22 11:42:57 +00:00
for ( QList < Session * > : : iterator s = day - > begin ( ) ; s ! = day - > end ( ) ; + + s ) {
2014-08-20 18:36:44 +00:00
Session * sess = * s ;
if ( ! sess - > enabled ( ) ) continue ;
2011-06-26 08:30:44 +00:00
2019-08-30 01:47:25 +00:00
// For each session, go through all the channels
2011-07-31 20:24:43 +00:00
QHash < ChannelID , QVector < EventList * > > : : iterator m ;
2014-08-20 18:36:44 +00:00
for ( int c = 0 ; c < chans . size ( ) ; + + c ) {
ChannelID code = chans . at ( c ) ;
m = sess - > eventlist . find ( code ) ;
if ( m = = sess - > eventlist . end ( ) ) continue ;
2011-06-26 08:30:44 +00:00
2014-09-17 06:12:38 +00:00
drift = ( sess - > type ( ) = = MT_CPAP ) ? clockdrift : 0 ;
2012-01-06 16:07:54 +00:00
2019-08-30 01:47:25 +00:00
// Prepare title for this code, if there are any events
2011-06-26 08:30:44 +00:00
QTreeWidgetItem * mcr ;
if ( mcroot . find ( code ) = = mcroot . end ( ) ) {
2011-07-05 05:33:06 +00:00
int cnt = day - > count ( code ) ;
2012-01-14 07:41:50 +00:00
if ( ! cnt ) continue ; // If no events than don't bother showing..
2011-07-05 05:33:06 +00:00
total_events + = cnt ;
2013-10-26 05:06:56 +00:00
QString st = schema : : channel [ code ] . fullname ( ) ;
2011-06-26 08:30:44 +00:00
if ( st . isEmpty ( ) ) {
2013-10-09 15:56:46 +00:00
st = QString ( " Fixme %1 " ) . arg ( code ) ;
2011-06-26 08:30:44 +00:00
}
2011-12-21 11:09:50 +00:00
st + = " " ;
if ( cnt = = 1 ) st + = tr ( " %1 event " ) . arg ( cnt ) ;
else st + = tr ( " %1 events " ) . arg ( cnt ) ;
2011-06-26 08:30:44 +00:00
QStringList l ( st ) ;
l . append ( " " ) ;
mcroot [ code ] = mcr = new QTreeWidgetItem ( root , l ) ;
mccnt [ code ] = 0 ;
} else {
mcr = mcroot [ code ] ;
}
2012-01-11 04:58:46 +00:00
2019-08-30 01:47:25 +00:00
// number of digits required for count depends on total for day
int numDigits = ceil ( log10 ( day - > count ( code ) + 1 ) ) ;
// Now we go through the event list for the *session* (not for the day)
2011-07-31 20:24:43 +00:00
for ( int z = 0 ; z < m . value ( ) . size ( ) ; z + + ) {
2012-01-11 04:58:46 +00:00
EventList & ev = * ( m . value ( ) [ z ] ) ;
for ( quint32 o = 0 ; o < ev . count ( ) ; o + + ) {
2012-01-19 15:18:34 +00:00
qint64 t = ev . time ( o ) + drift ;
2011-07-30 03:52:29 +00:00
2016-02-27 03:37:56 +00:00
if ( ( code = = CPAP_CSR ) | | ( code = = CPAP_PB ) ) { // center it in the middle of span
t - = float ( ev . raw ( o ) / 2.0 ) * 1000.0 ;
2011-07-27 09:21:53 +00:00
}
QStringList a ;
2016-03-08 12:10:42 +00:00
QDateTime d = QDateTime : : fromMSecsSinceEpoch ( t ) ; // Localtime
2019-08-29 14:21:19 +00:00
QString s = QString ( " #%1: %2 " ) . arg ( ( int ) ( + + mccnt [ code ] ) , ( int ) numDigits , ( int ) 10 , QChar ( ' 0 ' ) ) . arg ( d . toString ( " HH:mm:ss " ) ) ;
2019-07-05 17:29:57 +00:00
if ( m . value ( ) [ z ] - > raw ( o ) > 0 )
s + = QString ( " (%3) " ) . arg ( m . value ( ) [ z ] - > raw ( o ) ) ;
2011-07-27 09:21:53 +00:00
a . append ( s ) ;
2011-12-25 05:05:12 +00:00
QTreeWidgetItem * item = new QTreeWidgetItem ( a ) ;
item - > setData ( 0 , Qt : : UserRole , t ) ;
mcr - > addChild ( item ) ;
2011-06-26 08:30:44 +00:00
}
2011-07-30 03:52:29 +00:00
}
}
2011-06-26 08:30:44 +00:00
}
int cnt = 0 ;
2011-07-31 20:24:43 +00:00
for ( QHash < ChannelID , QTreeWidgetItem * > : : iterator m = mcroot . begin ( ) ; m ! = mcroot . end ( ) ; m + + ) {
tree - > insertTopLevelItem ( cnt + + , m . value ( ) ) ;
2011-06-26 08:30:44 +00:00
}
2014-05-31 21:25:07 +00:00
2014-09-30 05:25:11 +00:00
if ( day - > hasMachine ( MT_CPAP ) | | day - > hasMachine ( MT_OXIMETER ) | | day - > hasMachine ( MT_POSITION ) ) {
QTreeWidgetItem * start = new QTreeWidgetItem ( QStringList ( tr ( " Session Start Times " ) ) ) ;
QTreeWidgetItem * end = new QTreeWidgetItem ( QStringList ( tr ( " Session End Times " ) ) ) ;
tree - > insertTopLevelItem ( cnt + + , start ) ;
tree - > insertTopLevelItem ( cnt + + , end ) ;
for ( QList < Session * > : : iterator s = day - > begin ( ) ; s ! = day - > end ( ) ; + + s ) {
2016-03-08 12:10:42 +00:00
QDateTime st = QDateTime : : fromMSecsSinceEpoch ( ( * s ) - > first ( ) ) ; // Localtime
QDateTime et = QDateTime : : fromMSecsSinceEpoch ( ( * s ) - > last ( ) ) ; // Localtime
2014-09-30 05:25:11 +00:00
QTreeWidgetItem * item = new QTreeWidgetItem ( QStringList ( st . toString ( " HH:mm:ss " ) ) ) ;
item - > setData ( 0 , Qt : : UserRole , ( * s ) - > first ( ) ) ;
start - > addChild ( item ) ;
item = new QTreeWidgetItem ( QStringList ( et . toString ( " HH:mm:ss " ) ) ) ;
item - > setData ( 0 , Qt : : UserRole , ( * s ) - > last ( ) ) ;
end - > addChild ( item ) ;
}
}
2011-07-05 05:33:06 +00:00
//tree->insertTopLevelItem(cnt++,new QTreeWidgetItem(QStringList("[Total Events ("+QString::number(total_events)+")]")));
2011-06-26 08:30:44 +00:00
tree - > sortByColumn ( 0 , Qt : : AscendingOrder ) ;
//tree->expandAll();
}
2011-12-01 06:06:13 +00:00
2011-06-26 08:30:44 +00:00
void Daily : : UpdateCalendarDay ( QDate date )
{
2011-12-11 09:45:28 +00:00
QTextCharFormat nodata ;
QTextCharFormat cpaponly ;
QTextCharFormat cpapjour ;
2011-07-03 12:08:30 +00:00
QTextCharFormat oxiday ;
2011-12-11 09:45:28 +00:00
QTextCharFormat oxicpap ;
2011-12-02 14:18:47 +00:00
QTextCharFormat jourday ;
2012-01-11 14:49:22 +00:00
QTextCharFormat stageday ;
2011-12-11 09:45:28 +00:00
2013-09-10 15:09:09 +00:00
cpaponly . setForeground ( QBrush ( COLOR_Blue , Qt : : SolidPattern ) ) ;
2011-12-11 09:45:28 +00:00
cpaponly . setFontWeight ( QFont : : Normal ) ;
2013-09-10 15:09:09 +00:00
cpapjour . setForeground ( QBrush ( COLOR_Blue , Qt : : SolidPattern ) ) ;
2011-12-11 09:45:28 +00:00
cpapjour . setFontWeight ( QFont : : Bold ) ;
2019-09-03 05:10:36 +00:00
// cpapjour.setFontUnderline(true);
2013-09-10 15:09:09 +00:00
oxiday . setForeground ( QBrush ( COLOR_Red , Qt : : SolidPattern ) ) ;
2011-12-11 09:45:28 +00:00
oxiday . setFontWeight ( QFont : : Normal ) ;
2013-09-10 15:09:09 +00:00
oxicpap . setForeground ( QBrush ( COLOR_Red , Qt : : SolidPattern ) ) ;
2011-12-11 09:45:28 +00:00
oxicpap . setFontWeight ( QFont : : Bold ) ;
2013-09-10 15:09:09 +00:00
stageday . setForeground ( QBrush ( COLOR_Magenta , Qt : : SolidPattern ) ) ;
2012-01-11 14:49:22 +00:00
stageday . setFontWeight ( QFont : : Bold ) ;
2014-09-29 15:43:00 +00:00
jourday . setForeground ( QBrush ( COLOR_DarkYellow , Qt : : SolidPattern ) ) ;
2011-12-02 14:18:47 +00:00
jourday . setFontWeight ( QFont : : Bold ) ;
2013-09-10 15:09:09 +00:00
nodata . setForeground ( QBrush ( COLOR_Black , Qt : : SolidPattern ) ) ;
2011-12-11 09:45:28 +00:00
nodata . setFontWeight ( QFont : : Normal ) ;
2011-12-02 14:18:47 +00:00
2014-09-29 15:43:00 +00:00
bool hascpap = p_profile - > FindDay ( date , MT_CPAP ) ! = nullptr ;
bool hasoxi = p_profile - > FindDay ( date , MT_OXIMETER ) ! = nullptr ;
bool hasjournal = p_profile - > FindDay ( date , MT_JOURNAL ) ! = nullptr ;
bool hasstage = p_profile - > FindDay ( date , MT_SLEEPSTAGE ) ! = nullptr ;
bool haspos = p_profile - > FindDay ( date , MT_POSITION ) ! = nullptr ;
2011-07-03 12:08:30 +00:00
if ( hascpap ) {
if ( hasoxi ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , oxicpap ) ;
2011-12-02 14:18:47 +00:00
} else if ( hasjournal ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , cpapjour ) ;
2014-04-15 13:59:24 +00:00
} else if ( hasstage | | haspos ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , stageday ) ;
2011-07-03 12:08:30 +00:00
} else {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , cpaponly ) ;
2011-07-03 12:08:30 +00:00
}
2011-12-11 09:45:28 +00:00
} else if ( hasoxi ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , oxiday ) ;
2011-12-11 09:45:28 +00:00
} else if ( hasjournal ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , jourday ) ;
2014-04-15 13:59:24 +00:00
} else if ( hasstage ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , oxiday ) ;
2014-04-15 13:59:24 +00:00
} else if ( haspos ) {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , oxiday ) ;
2011-06-26 08:30:44 +00:00
} else {
2014-09-29 15:43:00 +00:00
ui - > calendar - > setDateTextFormat ( date , nodata ) ;
2011-06-26 08:30:44 +00:00
}
2019-09-03 05:10:36 +00:00
// if (hasjournal) {
// ui->calendar->setDateTextFormat(date, cpapjour);
// }
2011-06-26 08:30:44 +00:00
ui - > calendar - > setHorizontalHeaderFormat ( QCalendarWidget : : ShortDayNames ) ;
}
2011-10-28 03:45:31 +00:00
void Daily : : LoadDate ( QDate date )
{
2014-07-25 07:53:48 +00:00
if ( ! date . isValid ( ) ) {
qDebug ( ) < < " LoadDate called with invalid date " ;
return ;
}
2011-12-26 04:58:02 +00:00
ui - > calendar - > blockSignals ( true ) ;
2011-12-26 18:26:06 +00:00
if ( date . month ( ) ! = previous_date . month ( ) ) {
on_calendar_currentPageChanged ( date . year ( ) , date . month ( ) ) ;
}
2011-10-28 03:45:31 +00:00
ui - > calendar - > setSelectedDate ( date ) ;
2011-12-26 04:58:02 +00:00
ui - > calendar - > blockSignals ( false ) ;
on_calendar_selectionChanged ( ) ;
2011-10-28 03:45:31 +00:00
}
2011-06-26 08:30:44 +00:00
void Daily : : on_calendar_selectionChanged ( )
2014-08-07 22:47:34 +00:00
{
QTimer : : singleShot ( 0 , this , SLOT ( on_ReloadDay ( ) ) ) ;
}
void Daily : : on_ReloadDay ( )
2011-06-26 08:30:44 +00:00
{
2018-05-08 08:12:32 +00:00
static volatile bool inReload = false ;
if ( inReload ) {
qDebug ( ) < < " attempt to renter on_ReloadDay() " ;
}
inReload = true ;
2014-07-20 10:30:33 +00:00
graphView ( ) - > releaseKeyboard ( ) ;
2012-01-05 04:37:22 +00:00
QTime time ;
time_t unload_time , load_time , other_time ;
time . start ( ) ;
2011-06-26 08:30:44 +00:00
2012-01-05 04:37:22 +00:00
this - > setCursor ( Qt : : BusyCursor ) ;
2011-12-20 11:12:52 +00:00
if ( previous_date . isValid ( ) ) {
2011-12-25 16:38:37 +00:00
// GraphView->fadeOut();
2011-12-20 11:12:52 +00:00
Unload ( previous_date ) ;
}
2012-01-05 04:37:22 +00:00
unload_time = time . restart ( ) ;
2012-01-02 15:34:17 +00:00
//bool fadedir=previous_date < ui->calendar->selectedDate();
2011-12-02 11:40:47 +00:00
ZombieMeterMoved = false ;
2011-06-26 08:30:44 +00:00
Load ( ui - > calendar - > selectedDate ( ) ) ;
2012-01-05 04:37:22 +00:00
load_time = time . restart ( ) ;
2011-12-25 16:38:37 +00:00
//GraphView->fadeIn(fadedir);
2011-12-25 16:58:22 +00:00
GraphView - > redraw ( ) ;
2019-08-08 23:24:30 +00:00
ui - > calButton - > setText ( ui - > calendar - > selectedDate ( ) . toString ( MedDateFormat ) ) ;
2011-10-30 04:35:55 +00:00
ui - > calendar - > setFocus ( Qt : : ActiveWindowFocusReason ) ;
2011-12-02 13:48:05 +00:00
2019-05-01 16:05:01 +00:00
if ( p_profile - > general - > unitSystem ( ) = = US_English ) {
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_POUND ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setDecimals ( 0 ) ;
ui - > ouncesSpinBox - > setVisible ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > ouncesSpinBox - > setSuffix ( STR_UNIT_OUNCE ) ;
2011-12-21 11:09:50 +00:00
} else {
ui - > ouncesSpinBox - > setVisible ( false ) ;
2019-07-25 13:23:24 +00:00
ui - > weightSpinBox - > setDecimals ( 1 ) ;
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_KG ) ;
2011-12-02 13:48:05 +00:00
}
2011-12-25 16:38:37 +00:00
this - > setCursor ( Qt : : ArrowCursor ) ;
2012-01-05 04:37:22 +00:00
other_time = time . restart ( ) ;
qDebug ( ) < < " Page change time (in ms): Unload = " < < unload_time < < " Load = " < < load_time < < " Other = " < < other_time ;
2018-05-08 08:12:32 +00:00
inReload = false ;
2011-06-26 08:30:44 +00:00
}
2011-07-28 14:20:59 +00:00
void Daily : : ResetGraphLayout ( )
{
2011-09-12 17:47:37 +00:00
GraphView - > resetLayout ( ) ;
2011-07-28 14:20:59 +00:00
}
2019-09-29 03:15:16 +00:00
void Daily : : ResetGraphOrder ( int type )
2019-07-31 02:59:01 +00:00
{
2019-09-29 03:15:16 +00:00
if ( type = = 0 ) { // Auto order
Day * day = p_profile - > GetDay ( previous_date , MT_CPAP ) ;
2019-09-02 05:14:36 +00:00
2019-09-29 03:15:16 +00:00
int cpapMode = day - > getCPAPMode ( ) ;
// qDebug() << "Daily::ResetGraphOrder cpapMode" << cpapMode;
2019-09-02 05:14:36 +00:00
2019-09-29 03:15:16 +00:00
if ( useAdvancedGraphs . contains ( cpapMode ) )
GraphView - > resetGraphOrder ( true , advancedGraphOrder ) ;
else
GraphView - > resetGraphOrder ( true , standardGraphOrder ) ;
} else if ( type = = 2 ) { // Advanced order
2019-09-02 05:14:36 +00:00
GraphView - > resetGraphOrder ( true , advancedGraphOrder ) ;
2019-09-29 03:15:16 +00:00
} else { // type == 1, standard order
2019-09-02 05:14:36 +00:00
GraphView - > resetGraphOrder ( true , standardGraphOrder ) ;
2019-09-29 03:15:16 +00:00
}
2019-08-09 22:32:37 +00:00
// Enable all graphs (make them not hidden)
for ( int i = 0 ; i < ui - > graphCombo - > count ( ) ; i + + ) {
// If disabled, emulate a click to enable the graph
if ( ! ui - > graphCombo - > itemData ( i , Qt : : UserRole ) . toBool ( ) ) {
2019-09-03 05:10:36 +00:00
// qDebug() << "resetting graph" << i;
2019-08-09 22:32:37 +00:00
Daily : : on_graphCombo_activated ( i ) ;
}
}
// Mark all events as active
for ( int i = 0 ; i < ui - > eventsCombo - > count ( ) ; i + + ) {
// If disabled, emulate a click to enable the event
ChannelID code = ui - > eventsCombo - > itemData ( i , Qt : : UserRole ) . toUInt ( ) ;
schema : : Channel * chan = & schema : : channel [ code ] ;
if ( ! chan - > enabled ( ) ) {
2019-09-03 05:10:36 +00:00
// qDebug() << "resetting event" << i;
2019-08-09 22:32:37 +00:00
Daily : : on_eventsCombo_activated ( i ) ;
}
}
// Reset graph heights (and repaint)
2019-07-31 02:59:01 +00:00
ResetGraphLayout ( ) ;
}
2011-12-03 08:52:24 +00:00
void Daily : : graphtogglebutton_toggled ( bool b )
2011-12-01 06:06:13 +00:00
{
2011-12-03 08:52:24 +00:00
Q_UNUSED ( b )
2011-12-01 06:06:13 +00:00
for ( int i = 0 ; i < GraphView - > size ( ) ; i + + ) {
QString title = ( * GraphView ) [ i ] - > title ( ) ;
( * GraphView ) [ i ] - > setVisible ( GraphToggles [ title ] - > isChecked ( ) ) ;
}
GraphView - > updateScale ( ) ;
2011-12-20 11:12:52 +00:00
GraphView - > redraw ( ) ;
2011-12-01 06:06:13 +00:00
}
2013-10-12 07:40:45 +00:00
2014-08-20 17:17:13 +00:00
QString Daily : : getSessionInformation ( Day * day )
2013-10-13 16:35:53 +00:00
{
QString html ;
2014-08-20 17:17:13 +00:00
if ( ! day ) return html ;
2013-10-13 16:35:53 +00:00
html = " <table cellpadding=0 cellspacing=0 border=0 width=100%> " ;
html + = QString ( " <tr><td colspan=5 align=center><b> " + tr ( " Session Information " ) + " </b></td></tr> " ) ;
html + = " <tr><td colspan=5 align=center> </td></tr> " ;
QFontMetrics FM ( * defaultfont ) ;
2018-06-05 22:08:12 +00:00
// QRect r=FM.boundingRect('@');
2014-08-20 17:17:13 +00:00
2018-06-05 22:08:12 +00:00
// Machine * cpap = day->machine(MT_CPAP);
2014-08-20 17:17:13 +00:00
2013-10-13 16:35:53 +00:00
QDateTime fd , ld ;
2020-03-24 17:50:30 +00:00
//bool corrupted_waveform=false;
2013-10-13 16:35:53 +00:00
QString type ;
2014-08-20 17:17:13 +00:00
QHash < MachineType , Machine * > : : iterator mach_end = day - > machines . end ( ) ;
QHash < MachineType , Machine * > : : iterator mi ;
for ( mi = day - > machines . begin ( ) ; mi ! = mach_end ; + + mi ) {
if ( mi . key ( ) = = MT_JOURNAL ) continue ;
html + = " <tr><td colspan=5 align=center><i> " ;
switch ( mi . key ( ) ) {
case MT_CPAP : type = " cpap " ;
html + = tr ( " CPAP Sessions " ) ;
break ;
case MT_OXIMETER : type = " oxi " ;
2018-06-04 20:48:38 +00:00
html + = tr ( " Oximetry Sessions " ) ;
2014-08-20 17:17:13 +00:00
break ;
case MT_SLEEPSTAGE : type = " stage " ;
html + = tr ( " Sleep Stage Sessions " ) ;
break ;
case MT_POSITION : type = " stage " ;
html + = tr ( " Position Sensor Sessions " ) ;
break ;
default :
type = " unknown " ;
html + = tr ( " Unknown Session " ) ;
break ;
2013-10-13 16:35:53 +00:00
}
html + = " </i></td></tr> \n " ;
2014-08-17 12:56:05 +00:00
html + = QString ( " <tr> "
2014-08-21 05:46:14 +00:00
" <td> " + STR_TR_On + " </td> "
" <td> " + STR_TR_Date + " </td> "
" <td> " + STR_TR_Start + " </td> "
" <td> " + STR_TR_End + " </td> "
" <td> " + tr ( " Duration " ) + " </td></tr> " ) ;
2013-10-13 16:35:53 +00:00
2014-08-21 05:46:14 +00:00
QList < Session * > sesslist = day - > getSessions ( mi . key ( ) , true ) ;
2014-08-20 17:17:13 +00:00
for ( QList < Session * > : : iterator s = sesslist . begin ( ) ; s ! = sesslist . end ( ) ; + + s ) {
2020-03-24 17:50:30 +00:00
/*
2014-09-17 06:12:38 +00:00
if ( ( ( * s ) - > type ( ) = = MT_CPAP ) & &
2014-08-20 17:17:13 +00:00
( ( * s ) - > settings . find ( CPAP_BrokenWaveform ) ! = ( * s ) - > settings . end ( ) ) )
2013-10-13 16:35:53 +00:00
corrupted_waveform = true ;
2020-03-24 17:50:30 +00:00
*/
2013-10-13 16:35:53 +00:00
fd = QDateTime : : fromTime_t ( ( * s ) - > first ( ) / 1000L ) ;
ld = QDateTime : : fromTime_t ( ( * s ) - > last ( ) / 1000L ) ;
int len = ( * s ) - > length ( ) / 1000L ;
int h = len / 3600 ;
int m = ( len / 60 ) % 60 ;
int s1 = len % 60 ;
Session * sess = * s ;
2014-09-01 04:49:05 +00:00
2018-06-14 07:25:54 +00:00
QString tooltip = tr ( " Click to %1 this session. " ) . arg ( sess - > enabled ( ) ? tr ( " disable " ) : tr ( " enable " ) ) ;
2018-05-07 22:09:59 +00:00
html + = QString ( " <tr><td colspan=5 align=center>%2</td></tr> "
" <tr> "
2018-05-08 08:12:32 +00:00
" <td width=26> "
# ifdef DITCH_ICONS
" [<a href='toggle " + type + " session=%1'><b title=' " + tooltip + " '>%4</b></a>] "
# else
" <a href='toggle " + type + " session=%1'><img src='qrc:/icons/session-%4.png' title= \" " + tooltip + " \" ></a> "
# endif
" </td> "
2014-08-21 05:46:14 +00:00
" <td align=left>%5</td> "
" <td align=left>%6</td> "
" <td align=left>%7</td> "
2014-08-17 12:56:05 +00:00
" <td align=left>%3</td></tr> "
)
2013-10-13 16:35:53 +00:00
. arg ( ( * s ) - > session ( ) )
2018-06-14 07:25:54 +00:00
. arg ( tr ( " %1 Session #%2 " ) . arg ( ( * s ) - > machine ( ) - > loaderName ( ) ) . arg ( ( * s ) - > session ( ) , 8 , 10 , QChar ( ' 0 ' ) ) )
. arg ( tr ( " %1h %2m %3s " ) . arg ( h , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( m , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( s1 , 2 , 10 , QChar ( ' 0 ' ) ) )
2014-10-11 00:44:30 +00:00
. arg ( ( sess - > enabled ( ) ? " on " : " off " ) )
2013-10-13 16:35:53 +00:00
. arg ( fd . date ( ) . toString ( Qt : : SystemLocaleShortDate ) )
2014-08-27 09:00:55 +00:00
. arg ( fd . toString ( " HH:mm:ss " ) )
. arg ( ld . toString ( " HH:mm:ss " ) ) ;
2014-09-01 04:49:05 +00:00
# ifdef SESSION_DEBUG
for ( int i = 0 ; i < sess - > session_files . size ( ) ; + + i ) {
html + = QString ( " <tr><td colspan=5 align=center>%1</td></tr> " ) . arg ( sess - > session_files [ i ] . section ( " / " , - 1 ) ) ;
}
# endif
2013-10-13 16:35:53 +00:00
}
}
2020-03-24 17:50:30 +00:00
/*
2013-10-13 16:35:53 +00:00
if ( corrupted_waveform ) {
2018-06-14 08:58:06 +00:00
html + = QString ( " <tr><td colspan=5 align=center><i>%1</i></td></tr> " ) . arg ( tr ( " One or more waveform record(s) for this session had faulty source data. Some waveform overlay points may not match up correctly. " ) ) ;
2013-10-13 16:35:53 +00:00
}
2020-03-24 17:50:30 +00:00
*/
2013-10-13 16:35:53 +00:00
html + = " </table> " ;
return html ;
}
2014-08-20 17:17:13 +00:00
QString Daily : : getMachineSettings ( Day * day ) {
2013-10-13 16:35:53 +00:00
QString html ;
2014-08-20 17:17:13 +00:00
Machine * cpap = day - > machine ( MT_CPAP ) ;
if ( cpap & & day - > hasEnabledSessions ( MT_CPAP ) ) {
2013-10-13 16:35:53 +00:00
html = " <table cellpadding=0 cellspacing=0 border=0 width=100%> " ;
html + = QString ( " <tr><td colspan=5 align=center><b>%1</b></td></tr> " ) . arg ( tr ( " Machine Settings " ) ) ;
2014-07-02 14:32:01 +00:00
2020-07-06 17:46:08 +00:00
if ( day - > noSettings ( cpap ) ) {
2020-07-05 18:19:19 +00:00
html + = " <tr><td colspan=5 align=center><i><font color='red'> " + tr ( " <b>Please Note:</b> All settings shown below are based on assumptions that nothing has changed since previous days. " ) + " </font></i></td></tr> \n " ;
2020-07-06 17:46:08 +00:00
} else {
html + = " <tr><td colspan=5> </td></tr> " ;
}
2020-03-24 17:50:30 +00:00
/*
2018-05-06 16:59:50 +00:00
} else if ( ( day - > settingExists ( CPAP_BrokenSummary ) ) ) {
2014-07-02 14:32:01 +00:00
html + = " <tr><td colspan=5 align=center><i> " + tr ( " Machine Settings Unavailable " ) + " </i></td></tr></table><hr/> \n " ;
return html ;
}
2020-07-06 17:46:08 +00:00
*/
2014-07-02 14:32:01 +00:00
2014-08-04 19:57:48 +00:00
QMap < QString , QString > other ;
2014-08-20 17:17:13 +00:00
Session * sess = day - > firstSession ( MT_CPAP ) ;
QHash < ChannelID , QVariant > : : iterator it ;
QHash < ChannelID , QVariant > : : iterator it_end ;
if ( sess ) {
it_end = sess - > settings . end ( ) ;
it = sess - > settings . begin ( ) ;
}
2014-08-04 19:57:48 +00:00
QMap < int , QString > first ;
2014-08-20 17:17:13 +00:00
2014-09-01 04:49:05 +00:00
CPAPLoader * loader = qobject_cast < CPAPLoader * > ( cpap - > loader ( ) ) ;
ChannelID cpapmode = loader - > CPAPModeChannel ( ) ;
schema : : Channel & chan = schema : : channel [ cpapmode ] ;
2019-05-21 22:12:42 +00:00
first [ cpapmode ] = QString ( " <tr><td><p title='%2'>%1</p></td><td colspan=4>%3</td></tr> " )
2014-09-14 15:29:07 +00:00
. arg ( chan . label ( ) )
. arg ( chan . description ( ) )
2019-09-02 05:14:36 +00:00
. arg ( day - > getCPAPModeStr ( ) ) ;
2014-09-01 04:49:05 +00:00
2020-01-13 01:17:07 +00:00
// The order in which to present pressure settings, which will appear first.
QVector < ChannelID > first_channels = { cpapmode , CPAP_Pressure , CPAP_PressureMin , CPAP_PressureMax , CPAP_EPAP , CPAP_EPAPLo , CPAP_EPAPHi , CPAP_IPAP , CPAP_IPAPLo , CPAP_IPAPHi , CPAP_PS , CPAP_PSMin , CPAP_PSMax } ;
2014-08-20 17:17:13 +00:00
if ( sess ) for ( ; it ! = it_end ; + + it ) {
2014-08-04 19:57:48 +00:00
ChannelID code = it . key ( ) ;
2014-09-01 11:39:38 +00:00
if ( ( code < = 1 ) | | ( code = = RMS9_MaskOnTime ) | | ( code = = CPAP_Mode ) | | ( code = = cpapmode ) | | ( code = = CPAP_SummaryOnly ) ) continue ;
2014-08-04 19:57:48 +00:00
schema : : Channel & chan = schema : : channel [ code ] ;
QString data ;
if ( chan . datatype ( ) = = schema : : LOOKUP ) {
2020-03-25 23:17:39 +00:00
int value = it . value ( ) . toInt ( ) ;
data = chan . option ( value ) ;
if ( data . isEmpty ( ) ) {
data = QString ( ) . number ( value ) + " " + chan . units ( ) ; ;
}
2014-08-04 19:57:48 +00:00
} else if ( chan . datatype ( ) = = schema : : BOOL ) {
data = ( it . value ( ) . toBool ( ) ? STR_TR_Yes : STR_TR_No ) ;
} else if ( chan . datatype ( ) = = schema : : DOUBLE ) {
2016-03-02 21:32:22 +00:00
data = QString ( ) . number ( it . value ( ) . toDouble ( ) , ' f ' , 2 ) + " " + chan . units ( ) ;
} else if ( chan . datatype ( ) = = schema : : DEFAULT ) {
2020-12-30 01:23:37 +00:00
// Check for any options that override the default numeric display.
int value = it . value ( ) . toInt ( ) ;
data = chan . option ( value ) ;
if ( data . isEmpty ( ) ) {
data = QString ( ) . number ( it . value ( ) . toDouble ( ) , ' f ' , 2 ) + " " + chan . units ( ) ;
}
2014-08-04 19:57:48 +00:00
} else {
2016-03-02 21:32:22 +00:00
2014-08-04 19:57:48 +00:00
data = it . value ( ) . toString ( ) + " " + chan . units ( ) ;
}
2019-05-21 22:12:42 +00:00
if ( code = = 0xe202 ) // Format EPR relief correctly
data = formatRelief ( data ) ;
2018-05-07 22:09:59 +00:00
QString tmp = QString ( " <tr><td><p title='%2'>%1</p></td><td colspan=4>%3</td></tr> " )
2014-08-04 19:57:48 +00:00
. arg ( schema : : channel [ code ] . label ( ) )
. arg ( schema : : channel [ code ] . description ( ) )
. arg ( data ) ;
2020-01-13 01:17:07 +00:00
if ( first_channels . contains ( code ) ) {
2014-08-04 19:57:48 +00:00
first [ code ] = tmp ;
} else {
other [ schema : : channel [ code ] . label ( ) ] = tmp ;
}
}
2020-01-13 01:17:07 +00:00
// Put the pressure settings in order.
for ( auto & code : first_channels ) {
if ( first . contains ( code ) ) html + = first [ code ] ;
2014-08-04 19:57:48 +00:00
}
2020-01-13 01:17:07 +00:00
// TODO: add logical (rather than alphabetical) ordering to this list, preferably driven by loader somehow
2014-08-04 19:57:48 +00:00
for ( QMap < QString , QString > : : iterator it = other . begin ( ) ; it ! = other . end ( ) ; + + it ) {
html + = it . value ( ) ;
}
/* ChannelID pr_level_chan = NoChannel;
2014-08-03 13:00:13 +00:00
ChannelID pr_mode_chan = NoChannel ;
2014-08-04 16:12:49 +00:00
ChannelID hum_stat_chan = NoChannel ;
ChannelID hum_level_chan = NoChannel ;
2014-08-03 13:00:13 +00:00
CPAPLoader * loader = dynamic_cast < CPAPLoader * > ( cpap - > machine - > loader ( ) ) ;
if ( loader ) {
pr_level_chan = loader - > PresReliefLevel ( ) ;
pr_mode_chan = loader - > PresReliefMode ( ) ;
2014-08-04 16:12:49 +00:00
hum_stat_chan = loader - > HumidifierConnected ( ) ;
hum_level_chan = loader - > HumidifierLevel ( ) ;
2014-08-03 13:00:13 +00:00
}
2014-07-06 00:22:50 +00:00
2014-08-03 13:00:13 +00:00
if ( ( pr_level_chan ! = NoChannel ) & & ( cpap - > settingExists ( pr_level_chan ) ) ) {
QString flexstr = cpap - > getPressureRelief ( ) ;
2014-07-06 00:22:50 +00:00
2013-11-19 04:42:10 +00:00
html + = QString ( " <tr><td><a class='info' href='#'>%1<span>%2</span></a></td><td colspan=4>%3</td></tr> " )
2014-08-03 13:00:13 +00:00
. arg ( schema : : channel [ pr_mode_chan ] . label ( ) )
. arg ( schema : : channel [ pr_mode_chan ] . description ( ) )
2013-11-19 04:42:10 +00:00
. arg ( flexstr ) ;
}
2014-08-03 13:00:13 +00:00
2014-08-04 16:12:49 +00:00
if ( cpap - > settingExists ( hum_level_chan ) ) {
int humid = round ( cpap - > settings_wavg ( hum_level_chan ) ) ;
html + = QString ( " <tr><td><a class='info' href='#'> " + schema : : channel [ hum_level_chan ] . label ( ) + " <span>%1</span></a></td><td colspan=4>%2</td></tr> " )
. arg ( schema : : channel [ hum_level_chan ] . description ( ) )
. arg ( humid = = 0 ? STR_GEN_Off : " x " + QString : : number ( humid ) ) ;
2014-08-04 19:57:48 +00:00
} */
2013-10-13 16:35:53 +00:00
html + = " </table> " ;
html + = " <hr/> \n " ;
}
return html ;
}
2014-08-20 17:17:13 +00:00
QString Daily : : getOximeterInformation ( Day * day )
2013-10-13 16:35:53 +00:00
{
QString html ;
2014-08-20 17:17:13 +00:00
Machine * oxi = day - > machine ( MT_OXIMETER ) ;
if ( oxi & & day - > hasEnabledSessions ( MT_OXIMETER ) ) {
2013-10-13 16:35:53 +00:00
html = " <table cellpadding=0 cellspacing=0 border=0 width=100%> " ;
html + = QString ( " <tr><td colspan=5 align=center><b>%1</b></td></tr> \n " ) . arg ( tr ( " Oximeter Information " ) ) ;
html + = " <tr><td colspan=5 align=center> </td></tr> " ;
2014-08-21 17:37:38 +00:00
html + = " <tr><td colspan=5 align=center> " + oxi - > brand ( ) + " " + oxi - > model ( ) + " </td></tr> \n " ;
2013-10-13 16:35:53 +00:00
html + = " <tr><td colspan=5 align=center> </td></tr> " ;
2021-02-21 22:29:12 +00:00
// Include SpO2 and PC drops per hour of Oximetry data in case CPAP data is missing
html + = QString ( " <tr><td colspan=5 align=center>%1: %2 (%3%) %4/h</td></tr> " ) . arg ( tr ( " SpO2 Desaturations " ) ) . arg ( day - > count ( OXI_SPO2Drop ) ) . arg ( ( 100.0 / day - > hours ( MT_OXIMETER ) ) * ( day - > sum ( OXI_SPO2Drop ) / 3600.0 ) , 0 , ' f ' , 2 ) . arg ( ( day - > count ( OXI_SPO2Drop ) / day - > hours ( MT_OXIMETER ) ) , 0 , ' f ' , 2 ) ;
html + = QString ( " <tr><td colspan=5 align=center>%1: %2 (%3%) %4/h</td></tr> " ) . arg ( tr ( " Pulse Change events " ) ) . arg ( day - > count ( OXI_PulseChange ) ) . arg ( ( 100.0 / day - > hours ( MT_OXIMETER ) ) * ( day - > sum ( OXI_PulseChange ) / 3600.0 ) , 0 , ' f ' , 2 ) . arg ( ( day - > count ( OXI_PulseChange ) / day - > hours ( MT_OXIMETER ) ) , 0 , ' f ' , 2 ) ;
2014-08-20 17:17:13 +00:00
html + = QString ( " <tr><td colspan=5 align=center>%1: %2%</td></tr> " ) . arg ( tr ( " SpO2 Baseline Used " ) ) . arg ( day - > settings_wavg ( OXI_SPO2Drop ) , 0 , ' f ' , 2 ) ; // CHECKME: Should this value be wavg OXI_SPO2 isntead?
2013-10-13 16:35:53 +00:00
html + = " </table> \n " ;
html + = " <hr/> \n " ;
}
return html ;
}
2014-08-20 17:17:13 +00:00
QString Daily : : getCPAPInformation ( Day * day )
2013-10-13 16:35:53 +00:00
{
QString html ;
2014-08-20 17:17:13 +00:00
if ( ! day )
2013-10-13 16:35:53 +00:00
return html ;
2014-08-20 17:17:13 +00:00
Machine * cpap = day - > machine ( MT_CPAP ) ;
if ( ! cpap ) return html ;
MachineInfo info = cpap - > getInfo ( ) ;
2013-10-13 16:35:53 +00:00
html = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
2018-05-07 22:09:59 +00:00
QString tooltip = tr ( " Model %1 - %2 " ) . arg ( info . modelnumber ) . arg ( info . serial ) ;
2013-10-13 16:35:53 +00:00
tooltip = tooltip . replace ( " " , " " ) ;
2019-08-18 21:27:21 +00:00
html + = " <tr><td align=center><p title= \" " + tooltip + " \" > " + info . brand + " <br/> " + info . model + " </p></td></tr> \n " ;
2014-07-28 17:10:26 +00:00
html + = " <tr><td align=center> " ;
2013-11-19 04:42:10 +00:00
2019-09-02 05:14:36 +00:00
html + = tr ( " PAP Mode: %1 " ) . arg ( day - > getCPAPModeStr ( ) ) + " <br/> " ;
2014-08-20 17:17:13 +00:00
html + = day - > getPressureSettings ( ) ;
2013-11-19 04:42:10 +00:00
html + = " </td></tr> \n " ;
2020-07-06 17:46:08 +00:00
if ( day - > noSettings ( cpap ) ) {
html + = QString ( " <tr><td align=center><font color='red'><i>%1</i></font></td></tr> " ) . arg ( tr ( " (Mode and Pressure settings missing; yesterday's shown.) " ) ) ;
}
2014-07-02 14:32:01 +00:00
2013-10-13 16:35:53 +00:00
html + = " </table> \n " ;
2013-11-19 04:42:10 +00:00
html + = " <hr/> \n " ;
2013-10-13 16:35:53 +00:00
return html ;
}
2014-08-20 17:17:13 +00:00
QString Daily : : getStatisticsInfo ( Day * day )
2013-10-13 16:35:53 +00:00
{
2018-03-28 06:22:42 +00:00
if ( day = = nullptr ) return QString ( ) ;
2013-10-13 16:35:53 +00:00
2014-10-02 10:02:33 +00:00
Machine * cpap = day - > machine ( MT_CPAP ) ;
// *oxi = day->machine(MT_OXIMETER),
// *pos = day->machine(MT_POSITION);
2013-10-13 16:35:53 +00:00
2014-07-11 12:09:38 +00:00
int mididx = p_profile - > general - > prefCalcMiddle ( ) ;
2018-03-28 06:22:42 +00:00
SummaryType ST_mid = ST_AVG ;
2013-10-13 16:35:53 +00:00
if ( mididx = = 0 ) ST_mid = ST_PERC ;
if ( mididx = = 1 ) ST_mid = ST_WAVG ;
if ( mididx = = 2 ) ST_mid = ST_AVG ;
2014-07-11 12:09:38 +00:00
float percentile = p_profile - > general - > prefCalcPercentile ( ) / 100.0 ;
2013-10-13 16:35:53 +00:00
2014-07-11 12:09:38 +00:00
SummaryType ST_max = p_profile - > general - > prefCalcMax ( ) ? ST_PERC : ST_MAX ;
2016-03-04 00:52:26 +00:00
const EventDataType maxperc = 0.995F ;
2013-10-13 16:35:53 +00:00
QString midname ;
2014-05-17 08:34:16 +00:00
if ( ST_mid = = ST_WAVG ) midname = STR_TR_WAvg ;
else if ( ST_mid = = ST_AVG ) midname = STR_TR_Avg ;
else if ( ST_mid = = ST_PERC ) midname = STR_TR_Med ;
2013-10-13 16:35:53 +00:00
QString html ;
html + = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
html + = QString ( " <tr><td colspan=5 align=center><b>%1</b></td></tr> \n " ) . arg ( tr ( " Statistics " ) ) ;
html + = QString ( " <tr><td><b>%1</b></td><td><b>%2</b></td><td><b>%3</b></td><td><b>%4</b></td><td><b>%5</b></td></tr> " )
. arg ( STR_TR_Channel )
. arg ( STR_TR_Min )
. arg ( midname )
2014-05-17 08:34:16 +00:00
. arg ( tr ( " %1%2 " ) . arg ( percentile * 100 , 0 , ' f ' , 0 ) . arg ( STR_UNIT_Percentage ) )
2021-02-22 15:59:44 +00:00
. arg ( ST_max = = ST_MAX ? STR_TR_Max : tr ( " 99.5% " ) ) ;
2013-10-13 16:35:53 +00:00
ChannelID chans [ ] = {
2020-01-27 19:28:25 +00:00
CPAP_Pressure , CPAP_PressureSet , CPAP_EPAP , CPAP_EPAPSet , CPAP_IPAP , CPAP_IPAPSet , CPAP_PS , CPAP_PTB ,
2020-04-22 20:52:21 +00:00
PRS1_PeakFlow ,
2013-10-13 16:35:53 +00:00
CPAP_MinuteVent , CPAP_RespRate , CPAP_RespEvent , CPAP_FLG ,
2019-04-07 16:51:08 +00:00
CPAP_Leak , CPAP_LeakTotal , CPAP_Snore , /* CPAP_IE, */ CPAP_Ti , CPAP_Te , CPAP_TgMV ,
2020-01-27 00:50:18 +00:00
CPAP_TidalVolume , OXI_Pulse , OXI_SPO2 , POS_Inclination , POS_Orientation , POS_Movement
2013-10-13 16:35:53 +00:00
} ;
int numchans = sizeof ( chans ) / sizeof ( ChannelID ) ;
int ccnt = 0 ;
EventDataType tmp , med , perc , mx , mn ;
2014-08-20 17:17:13 +00:00
for ( int i = 0 ; i < numchans ; i + + ) {
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
ChannelID code = chans [ i ] ;
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
if ( ! day - > channelHasData ( code ) )
2013-10-13 16:35:53 +00:00
continue ;
2014-08-20 17:17:13 +00:00
QString tooltip = schema : : channel [ code ] . description ( ) ;
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
if ( ! schema : : channel [ code ] . units ( ) . isEmpty ( ) ) tooltip + = " ( " + schema : : channel [ code ] . units ( ) + " ) " ;
2019-07-05 17:29:57 +00:00
// if (!schema::channel[code].units().isEmpty() && schema::channel[code].units() != "0")
// tooltip+=" ("+schema::channel[code].units()+")";
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
if ( ST_max = = ST_MAX ) {
mx = day - > Max ( code ) ;
} else {
mx = day - > percentile ( code , maxperc ) ;
}
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
mn = day - > Min ( code ) ;
perc = day - > percentile ( code , percentile ) ;
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
if ( ST_mid = = ST_PERC ) {
med = day - > percentile ( code , 0.5 ) ;
tmp = day - > wavg ( code ) ;
if ( tmp > 0 | | mx = = 0 ) {
tooltip + = QString ( " <br/> " + STR_TR_WAvg + " : %1 " ) . arg ( tmp , 0 , ' f ' , 2 ) ;
2013-10-13 16:35:53 +00:00
}
2014-08-20 17:17:13 +00:00
} else if ( ST_mid = = ST_WAVG ) {
med = day - > wavg ( code ) ;
tmp = day - > percentile ( code , 0.5 ) ;
if ( tmp > 0 | | mx = = 0 ) {
tooltip + = QString ( " <br/> " + STR_TR_Median + " : %1 " ) . arg ( tmp , 0 , ' f ' , 2 ) ;
}
} else if ( ST_mid = = ST_AVG ) {
med = day - > avg ( code ) ;
tmp = day - > percentile ( code , 0.5 ) ;
if ( tmp > 0 | | mx = = 0 ) {
tooltip + = QString ( " <br/> " + STR_TR_Median + " : %1 " ) . arg ( tmp , 0 , ' f ' , 2 ) ;
2013-10-13 16:35:53 +00:00
}
}
2014-08-20 17:17:13 +00:00
2020-09-21 02:05:22 +00:00
// QString oldtip = tooltip;
tooltip . replace ( " ' " , " ' " ) ;
// qDebug() << schema::channel[code].label() << "old tooltip" << oldtip << "tooltip" << tooltip ;
2018-05-07 22:09:59 +00:00
html + = QString ( " <tr><td align=left title='%6'>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td></tr> " )
2014-08-20 17:17:13 +00:00
. arg ( schema : : channel [ code ] . label ( ) )
. arg ( mn , 0 , ' f ' , 2 )
. arg ( med , 0 , ' f ' , 2 )
. arg ( perc , 0 , ' f ' , 2 )
. arg ( mx , 0 , ' f ' , 2 )
. arg ( tooltip ) ;
ccnt + + ;
2013-10-13 16:35:53 +00:00
}
2014-07-02 14:32:01 +00:00
2014-08-20 17:17:13 +00:00
if ( GraphView - > isEmpty ( ) & & ( ( ccnt > 0 ) | | ( cpap & & day - > summaryOnly ( ) ) ) ) {
2013-10-13 16:35:53 +00:00
html + = " <tr><td colspan=5> </td></tr> \n " ;
2020-07-06 17:46:08 +00:00
html + = QString ( " <tr><td colspan=5 align=center><i>%1</i></td></tr> " ) . arg ( " <b> " + STR_MessageBox_PleaseNote + " </b> " +
2019-03-27 15:24:51 +00:00
tr ( " This day just contains summary data, only limited information is available. " ) ) ;
2014-08-07 21:54:32 +00:00
} else if ( cpap ) {
2014-05-15 20:48:05 +00:00
html + = " <tr><td colspan=5> </td></tr> " ;
2014-08-20 17:17:13 +00:00
if ( ( cpap - > loaderName ( ) = = STR_MACH_ResMed ) | | ( ( cpap - > loaderName ( ) = = STR_MACH_PRS1 ) & & ( p_profile - > cpap - > resyncFromUserFlagging ( ) ) ) ) {
int ttia = day - > sum ( CPAP_Obstructive ) + day - > sum ( CPAP_ClearAirway ) + day - > sum ( CPAP_Apnea ) + day - > sum ( CPAP_Hypopnea ) ;
2014-08-07 21:54:32 +00:00
int h = ttia / 3600 ;
int m = ttia / 60 % 60 ;
int s = ttia % 60 ;
if ( ttia > 0 ) {
2019-03-27 15:24:51 +00:00
html + = " <tr><td colspan=3 align='left' bgcolor='white'><b> " + tr ( " Total time in apnea " ) +
QString ( " </b></td><td colspan=2 bgcolor='white'>%1</td></tr> " ) . arg ( QString ( ) . sprintf ( " %02i:%02i:%02i " , h , m , s ) ) ;
2014-08-07 21:54:32 +00:00
}
}
2014-08-20 17:17:13 +00:00
float hours = day - > hours ( MT_CPAP ) ;
2014-08-07 21:54:32 +00:00
if ( p_profile - > cpap - > showLeakRedline ( ) ) {
2014-08-20 17:17:13 +00:00
float rlt = day - > timeAboveThreshold ( CPAP_Leak , p_profile - > cpap - > leakRedline ( ) ) / 60.0 ;
float pc = 100.0 / hours * rlt ;
2014-08-07 21:54:32 +00:00
html + = " <tr><td colspan=3 align='left' bgcolor='white'><b> " + tr ( " Time over leak redline " ) +
QString ( " </b></td><td colspan=2 bgcolor='white'>%1%</td></tr> " ) . arg ( pc , 0 , ' f ' , 3 ) ;
}
2014-08-20 17:17:13 +00:00
int l = day - > sum ( CPAP_Ramp ) ;
2014-07-30 17:14:28 +00:00
if ( l > 0 ) {
2014-07-30 20:25:06 +00:00
html + = " <tr><td colspan=3 align='left' bgcolor='white'> " + tr ( " Total ramp time " ) +
QString ( " </td><td colspan=2 bgcolor='white'>%1:%2:%3</td></tr> " ) . arg ( l / 3600 , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( ( l / 60 ) % 60 , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( l % 60 , 2 , 10 , QChar ( ' 0 ' ) ) ;
2014-08-20 17:17:13 +00:00
float v = ( hours - ( float ( l ) / 3600.0 ) ) ;
2014-07-30 17:14:28 +00:00
int q = v * 3600.0 ;
2014-07-30 20:25:06 +00:00
html + = " <tr><td colspan=3 align='left' bgcolor='white'> " + tr ( " Time outside of ramp " ) +
QString ( " </td><td colspan=2 bgcolor='white'>%1:%2:%3</td></tr> " ) . arg ( q / 3600 , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( ( q / 60 ) % 60 , 2 , 10 , QChar ( ' 0 ' ) ) . arg ( q % 60 , 2 , 10 , QChar ( ' 0 ' ) ) ;
2014-07-30 17:14:28 +00:00
2014-09-14 15:29:07 +00:00
// EventDataType hc = day->count(CPAP_Hypopnea) - day->countInsideSpan(CPAP_Ramp, CPAP_Hypopnea);
// EventDataType oc = day->count(CPAP_Obstructive) - day->countInsideSpan(CPAP_Ramp, CPAP_Obstructive);
2014-07-30 17:14:28 +00:00
2014-09-14 15:29:07 +00:00
//EventDataType tc = day->count(CPAP_Hypopnea) + day->count(CPAP_Obstructive);
// EventDataType ahi = (hc+oc) / v;
2014-08-20 17:17:13 +00:00
// Not sure if i was trying to be funny, and left on my replication of Devilbiss's bug here... :P
2014-09-14 15:29:07 +00:00
// html+="<tr><td colspan=3 align='left' bgcolor='white'>"+tr("AHI excluding ramp")+
// QString("</td><td colspan=2 bgcolor='white'>%1</td></tr>").arg(ahi, 0, 'f', 2);
2014-07-28 17:10:26 +00:00
}
2014-07-28 13:56:29 +00:00
}
2013-10-13 16:35:53 +00:00
html + = " </table> \n " ;
html + = " <hr/> \n " ;
return html ;
}
QString Daily : : getEventBreakdown ( Day * cpap )
2011-06-26 08:30:44 +00:00
{
2013-10-26 13:59:37 +00:00
Q_UNUSED ( cpap )
2013-10-13 16:35:53 +00:00
QString html ;
html + = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
html + = " </table> " ;
return html ;
}
2014-08-20 17:17:13 +00:00
QString Daily : : getSleepTime ( Day * day )
2013-10-13 16:35:53 +00:00
{
2014-08-20 17:17:13 +00:00
//cpap, Day * oxi
2013-10-13 16:35:53 +00:00
QString html ;
2014-08-20 17:17:13 +00:00
if ( ! day | | ( day - > hours ( ) < 0.0000001 ) )
2013-10-13 16:35:53 +00:00
return html ;
2014-08-20 17:17:13 +00:00
2013-10-13 16:35:53 +00:00
html + = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
2018-06-14 08:58:06 +00:00
html + = " <tr><td align='center'><b> " + STR_TR_Date + " </b></td><td align='center'><b> " + tr ( " Start " ) + " </b></td><td align='center'><b> " + tr ( " End " ) + " </b></td><td align='center'><b> " + STR_UNIT_Hours + " </b></td></tr> " ;
2020-07-24 18:29:19 +00:00
int tt = qint64 ( day - > total_time ( MT_CPAP ) ) / 1000L ;
2013-10-13 16:35:53 +00:00
QDateTime date = QDateTime : : fromTime_t ( day - > first ( ) / 1000L ) ;
QDateTime date2 = QDateTime : : fromTime_t ( day - > last ( ) / 1000L ) ;
int h = tt / 3600 ;
int m = ( tt / 60 ) % 60 ;
int s = tt % 60 ;
html + = QString ( " <tr><td align='center'>%1</td><td align='center'>%2</td><td align='center'>%3</td><td align='center'>%4</td></tr> \n " )
. arg ( date . date ( ) . toString ( Qt : : SystemLocaleShortDate ) )
2014-08-27 09:00:55 +00:00
. arg ( date . toString ( " HH:mm:ss " ) )
. arg ( date2 . toString ( " HH:mm:ss " ) )
2013-10-13 16:35:53 +00:00
. arg ( QString ( ) . sprintf ( " %02i:%02i:%02i " , h , m , s ) ) ;
html + = " </table> \n " ;
// html+="<hr/>";
return html ;
}
2019-07-19 05:39:08 +00:00
QString Daily : : getPieChart ( float values , Day * day ) {
2019-09-03 05:10:36 +00:00
// qDebug() << "Daily:getPieChart, values" << values;
2019-07-19 05:39:08 +00:00
QString html = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> " ;
if ( values > 0 ) {
// html += "<tr><td align=center> </td></tr>";
html + = QString ( " <tr><td align=center><b>%1</b></td></tr> " ) . arg ( tr ( " Event Breakdown " ) ) ;
eventBreakdownPie ( ) - > setShowTitle ( false ) ;
int w = 155 ;
int h = 155 ;
QPixmap pixmap = eventBreakdownPie ( ) - > renderPixmap ( w , h , false ) ;
if ( ! pixmap . isNull ( ) ) {
QByteArray byteArray ;
QBuffer buffer ( & byteArray ) ; // use buffer to store pixmap into byteArray
buffer . open ( QIODevice : : WriteOnly ) ;
pixmap . save ( & buffer , " PNG " ) ;
html + = " <tr><td align=center><img src= \" data:image/png;base64, " + byteArray . toBase64 ( ) + " \" ></td></tr> \n " ;
} else {
html + = " <tr><td align=center> " + tr ( " Unable to display Pie Chart on this system " ) + " </td></tr> \n " ;
}
} else if ( day - > channelHasData ( CPAP_Obstructive )
| | day - > channelHasData ( CPAP_Hypopnea )
| | day - > channelHasData ( CPAP_ClearAirway )
| | day - > channelHasData ( CPAP_RERA )
| | day - > channelHasData ( CPAP_Apnea )
| | day - > channelHasData ( CPAP_FlowLimit )
| | day - > channelHasData ( CPAP_SensAwake )
) {
html + = " <tr><td align=center><img src= \" qrc:/docs/0.0.gif \" ></td></tr> \n " ;
}
html + = " </table> \n " ;
html + = " <hr/> \n " ;
return html ;
}
// honorPieChart true - show pie chart if it is enabled. False, do not show pie chart
QString Daily : : getLeftSidebar ( bool honorPieChart ) {
QString html = htmlLeftHeader
+ htmlLeftAHI
+ htmlLeftMachineInfo
+ htmlLeftSleepTime
+ htmlLeftIndices ;
// Include pie chart if wanted and enabled.
if ( honorPieChart & & AppSetting - > showPieChart ( ) )
html + = htmlLeftPieChart ;
html + = htmlLeftNoHours
+ htmlLeftStatistics
+ htmlLeftOximeter
+ htmlLeftMachineSettings
+ htmlLeftSessionInfo
+ htmlLeftFooter ;
return html ;
}
2018-05-08 08:12:32 +00:00
QVariant MyTextBrowser : : loadResource ( int type , const QUrl & url )
{
2018-06-08 05:43:03 +00:00
if ( type = = QTextDocument : : ImageResource & & url . scheme ( ) . compare ( QLatin1String ( " data " ) , Qt : : CaseInsensitive ) = = 0 ) {
static QRegularExpression re ( " ^image/[^;]+;base64,.+={0,2}$ " ) ;
QRegularExpressionMatch match = re . match ( url . path ( ) ) ;
if ( match . hasMatch ( ) )
return QVariant ( ) ;
}
return QTextBrowser : : loadResource ( type , url ) ;
2018-05-08 08:12:32 +00:00
}
2013-10-13 10:13:14 +00:00
2014-08-07 20:27:23 +00:00
2013-10-13 16:35:53 +00:00
void Daily : : Load ( QDate date )
{
2021-01-16 01:20:36 +00:00
qDebug ( ) < < " Daily::Load called for " < < date . toString ( ) < < " using " < < QApplication : : font ( ) . toString ( ) ;
qDebug ( ) < < " Setting App font in Daily::Load " ;
setApplicationFont ( ) ;
2013-10-12 08:07:57 +00:00
dateDisplay - > setText ( " <i> " + date . toString ( Qt : : SystemLocaleLongDate ) + " </i> " ) ;
2011-06-26 08:30:44 +00:00
previous_date = date ;
2014-08-20 17:17:13 +00:00
Day * day = p_profile - > GetDay ( date ) ;
Machine * cpap = nullptr ,
* oxi = nullptr ,
2014-10-02 10:02:33 +00:00
//*stage = nullptr,
2014-08-20 17:17:13 +00:00
* posit = nullptr ;
if ( day ) {
cpap = day - > machine ( MT_CPAP ) ;
oxi = day - > machine ( MT_OXIMETER ) ;
2014-10-02 10:02:33 +00:00
// stage = day->machine(MT_SLEEPSTAGE);
2014-08-20 17:17:13 +00:00
posit = day - > machine ( MT_POSITION ) ;
}
2011-06-26 08:30:44 +00:00
2018-04-22 12:06:48 +00:00
if ( ! AppSetting - > cacheSessions ( ) ) {
2013-10-22 11:42:57 +00:00
// Getting trashed on purge last day...
2014-05-18 17:06:58 +00:00
// lastcpapday can get purged and be invalid
2014-08-20 17:17:13 +00:00
if ( lastcpapday & & ( lastcpapday ! = day ) ) {
2014-08-28 08:01:25 +00:00
for ( QMap < QDate , Day * > : : iterator di = p_profile - > daylist . begin ( ) ; di ! = p_profile - > daylist . end ( ) ; + + di ) {
Day * d = di . value ( ) ;
if ( d - > eventsLoaded ( ) ) {
if ( d - > useCounter ( ) = = 0 ) {
2014-09-11 14:23:08 +00:00
d - > CloseEvents ( ) ;
2014-08-28 08:01:25 +00:00
}
}
2011-07-28 07:32:02 +00:00
}
2011-07-27 10:47:50 +00:00
}
}
2011-12-03 08:52:24 +00:00
2014-08-20 17:17:13 +00:00
lastcpapday = day ;
2011-12-10 15:50:40 +00:00
2019-07-19 05:39:08 +00:00
// Clear the components of the left sidebar prior to recreating them
htmlLeftAHI . clear ( ) ;
htmlLeftMachineInfo . clear ( ) ;
htmlLeftSleepTime . clear ( ) ;
htmlLeftIndices . clear ( ) ;
htmlLeftPieChart . clear ( ) ;
htmlLeftNoHours . clear ( ) ;
htmlLeftStatistics . clear ( ) ;
htmlLeftOximeter . clear ( ) ;
htmlLeftMachineSettings . clear ( ) ;
htmlLeftSessionInfo . clear ( ) ;
htmlLeftHeader = " <html><head> "
2011-07-05 05:33:06 +00:00
" </head> "
2013-10-13 16:35:53 +00:00
" <body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0> " ;
2012-01-06 16:07:54 +00:00
2014-08-20 17:17:13 +00:00
if ( day ) {
day - > OpenEvents ( ) ;
}
GraphView - > setDay ( day ) ;
UpdateEventsTree ( ui - > treeWidget , day ) ;
2011-12-22 10:29:12 +00:00
2014-04-28 03:27:33 +00:00
// FIXME:
// Generating entire statistics because bookmarks may have changed.. (This updates the side panel too)
mainwin - > GenerateStatistics ( ) ;
2011-12-22 10:29:12 +00:00
2014-08-20 17:17:13 +00:00
snapGV - > setDay ( day ) ;
2012-01-06 05:22:13 +00:00
QString modestr ;
2011-06-26 08:30:44 +00:00
CPAPMode mode = MODE_UNKNOWN ;
QString a ;
2011-12-10 12:14:48 +00:00
bool isBrick = false ;
2011-12-23 10:52:31 +00:00
2012-01-03 16:29:35 +00:00
updateGraphCombo ( ) ;
2014-08-05 11:17:03 +00:00
ui - > eventsCombo - > clear ( ) ;
2013-10-13 16:35:53 +00:00
2014-08-20 17:17:13 +00:00
quint32 chans = schema : : SPAN | schema : : FLAG | schema : : MINOR_FLAG ;
if ( p_profile - > general - > showUnknownFlags ( ) ) chans | = schema : : UNKNOWN ;
2014-08-07 20:27:23 +00:00
2014-08-20 18:46:19 +00:00
QList < ChannelID > available ;
if ( day ) available . append ( day - > getSortedMachineChannels ( chans ) ) ;
2014-08-07 20:27:23 +00:00
2014-08-20 17:17:13 +00:00
for ( int i = 0 ; i < available . size ( ) ; + + i ) {
ChannelID code = available . at ( i ) ;
schema : : Channel & chan = schema : : channel [ code ] ;
ui - > eventsCombo - > addItem ( chan . enabled ( ) ? * icon_on : * icon_off , chan . label ( ) , code ) ;
ui - > eventsCombo - > setItemData ( i , chan . fullname ( ) , Qt : : ToolTipRole ) ;
2014-08-05 11:17:03 +00:00
}
2014-09-01 11:39:38 +00:00
if ( ! cpap ) {
2019-04-16 17:12:26 +00:00
GraphView - > setEmptyImage ( QPixmap ( " :/icons/logo-md.png " ) ) ;
2014-09-01 11:39:38 +00:00
}
2014-08-05 11:17:03 +00:00
if ( cpap ) {
2014-08-20 17:17:13 +00:00
float hours = day - > hours ( MT_CPAP ) ;
2012-01-11 04:58:46 +00:00
if ( GraphView - > isEmpty ( ) & & ( hours > 0 ) ) {
2020-03-26 13:54:55 +00:00
// TODO: Eventually we should get isBrick from the loader, since some summary days
// on a non-brick might legitimately have no graph data.
2014-07-11 12:09:38 +00:00
if ( ! p_profile - > hasChannel ( CPAP_Obstructive ) & & ! p_profile - > hasChannel ( CPAP_Hypopnea ) ) {
2014-09-01 11:39:38 +00:00
GraphView - > setEmptyText ( STR_Empty_Brick ) ;
2011-12-22 10:29:12 +00:00
2014-09-01 11:39:38 +00:00
GraphView - > setEmptyImage ( QPixmap ( " :/icons/sadface.png " ) ) ;
2011-12-30 23:02:45 +00:00
isBrick = true ;
2014-09-01 11:39:38 +00:00
} else {
2019-04-16 17:12:26 +00:00
GraphView - > setEmptyImage ( QPixmap ( " :/icons/logo-md.png " ) ) ;
2011-12-30 23:02:45 +00:00
}
2011-12-10 12:14:48 +00:00
}
2011-12-22 10:29:12 +00:00
2014-08-20 17:17:13 +00:00
mode = ( CPAPMode ) ( int ) day - > settings_max ( CPAP_Mode ) ;
2011-12-14 05:15:13 +00:00
2011-09-17 12:39:00 +00:00
modestr = schema : : channel [ CPAP_Mode ] . m_options [ mode ] ;
2011-07-31 20:24:43 +00:00
2014-08-20 17:17:13 +00:00
EventDataType ahi = ( day - > count ( CPAP_Obstructive ) + day - > count ( CPAP_Hypopnea ) + day - > count ( CPAP_ClearAirway ) + day - > count ( CPAP_Apnea ) ) ;
if ( p_profile - > general - > calculateRDI ( ) ) ahi + = day - > count ( CPAP_RERA ) ;
2012-01-11 04:58:46 +00:00
ahi / = hours ;
2011-12-24 05:55:44 +00:00
2014-09-01 11:39:38 +00:00
if ( hours > 0 ) {
2019-07-19 05:39:08 +00:00
htmlLeftAHI = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
2021-01-16 01:20:36 +00:00
2021-02-22 15:59:44 +00:00
// Show application font, for debugging font issues
2021-02-21 22:29:12 +00:00
// QString appFont = QApplication::font().toString();
// htmlLeftAHI+=QString("<tr><td colspan=5 align=center>%1</td></tr>").arg(appFont);
2021-01-16 01:20:36 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftAHI + = " <tr> " ;
2014-09-01 11:39:38 +00:00
if ( ! isBrick ) {
ChannelID ahichan = CPAP_AHI ;
QString ahiname = STR_TR_AHI ;
if ( p_profile - > general - > calculateRDI ( ) ) {
ahichan = CPAP_RDI ;
ahiname = STR_TR_RDI ;
}
2021-01-16 02:05:04 +00:00
htmlLeftAHI + = QString ( " <td colspan=5 bgcolor='%1' align=center><p title='%4'><font size=+3 color='%2'><b>%3</b></font></p> <font size=+3 color='%2'><b>%5</b></font></td> \n " )
2014-07-28 17:10:26 +00:00
. arg ( " #F88017 " ) . arg ( COLOR_Text . name ( ) ) . arg ( ahiname ) . arg ( schema : : channel [ ahichan ] . fullname ( ) ) . arg ( ahi , 0 , ' f ' , 2 ) ;
2014-09-01 11:39:38 +00:00
} else {
2021-01-16 02:05:04 +00:00
htmlLeftAHI + = QString ( " <td colspan=5 bgcolor='%1' align=center><font size=+3 color='yellow'>%2</font></td> \n " )
2014-09-01 11:39:38 +00:00
. arg ( " #F88017 " ) . arg ( tr ( " BRICK! :( " ) ) ;
}
2019-07-19 05:39:08 +00:00
htmlLeftAHI + = " </tr> \n " ;
htmlLeftAHI + = " </table> \n " ;
2013-10-13 16:35:53 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftMachineInfo = getCPAPInformation ( day ) ;
2013-10-20 16:20:31 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftSleepTime = getSleepTime ( day ) ;
htmlLeftIndices = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
2014-08-07 20:27:23 +00:00
quint32 zchans = schema : : SPAN | schema : : FLAG ;
2019-12-30 05:56:54 +00:00
bool show_minors = false ; // true;
2014-08-07 20:27:23 +00:00
if ( p_profile - > general - > showUnknownFlags ( ) ) zchans | = schema : : UNKNOWN ;
if ( show_minors ) zchans | = schema : : MINOR_FLAG ;
2014-08-20 17:17:13 +00:00
QList < ChannelID > available = day - > getSortedMachineChannels ( zchans ) ;
2014-08-07 20:27:23 +00:00
2014-08-07 22:10:50 +00:00
EventDataType val ;
QHash < ChannelID , EventDataType > values ;
2014-08-07 20:27:23 +00:00
for ( int i = 0 ; i < available . size ( ) ; + + i ) {
ChannelID code = available . at ( i ) ;
schema : : Channel & chan = schema : : channel [ code ] ;
2019-07-24 16:12:05 +00:00
// if (!chan.enabled()) continue;
2014-08-07 20:27:23 +00:00
QString data ;
2021-02-21 22:29:12 +00:00
float channelHours = hours ;
if ( chan . machtype ( ) ! = MT_CPAP ) {
// Use machine type hours (if available) rather than CPAP hours, since
// might have Oximetry (for example) longer or shorter than CPAP
channelHours = day - > hours ( chan . machtype ( ) ) ;
if ( channelHours < = 0 ) {
channelHours = hours ;
}
}
2014-08-07 20:27:23 +00:00
if ( chan . type ( ) = = schema : : SPAN ) {
2021-02-21 22:29:12 +00:00
val = ( 100.0 / channelHours ) * ( day - > sum ( code ) / 3600.0 ) ;
2014-08-07 20:27:23 +00:00
data = QString ( " %1% " ) . arg ( val , 0 , ' f ' , 2 ) ;
2020-05-07 21:36:31 +00:00
} else if ( code = = CPAP_VSnore2 ) { // TODO: This should be generalized rather than special-casing a single channel here.
2021-02-21 22:29:12 +00:00
val = day - > sum ( code ) / channelHours ;
2020-05-07 21:36:31 +00:00
data = QString ( " %1 " ) . arg ( val , 0 , ' f ' , 2 ) ;
2014-08-07 22:10:50 +00:00
} else {
2021-02-21 22:29:12 +00:00
val = day - > count ( code ) / channelHours ;
2014-08-07 20:27:23 +00:00
data = QString ( " %1 " ) . arg ( val , 0 , ' f ' , 2 ) ;
}
2019-06-19 21:50:41 +00:00
// TODO: percentage would be another useful option here for things like
// percentage of patient-triggered breaths, which is much more useful
// than the duration of timed breaths per hour.
2014-08-07 22:10:50 +00:00
values [ code ] = val ;
2014-08-07 20:27:23 +00:00
QColor altcolor = ( brightness ( chan . defaultColor ( ) ) < 0.3 ) ? Qt : : white : Qt : : black ; // pick a contrasting color
2019-07-19 05:39:08 +00:00
htmlLeftIndices + = QString ( " <tr><td align='left' bgcolor='%1'><b><font color='%2'><a href='event=%5' style='text-decoration:none;color:%2'>%3</a></font></b></td><td width=20% bgcolor='%1'><b><font color='%2'>%4</font></b></td></tr> " )
2014-08-07 20:27:23 +00:00
. arg ( chan . defaultColor ( ) . name ( ) ) . arg ( altcolor . name ( ) ) . arg ( chan . fullname ( ) ) . arg ( data ) . arg ( code ) ;
2012-01-09 08:05:20 +00:00
}
2014-08-07 20:27:23 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftIndices + = " </table><hr/> " ;
2011-12-10 12:14:48 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftPieChart = getPieChart ( ( values [ CPAP_Obstructive ] + values [ CPAP_Hypopnea ] +
values [ CPAP_ClearAirway ] + values [ CPAP_Apnea ] + values [ CPAP_RERA ] +
values [ CPAP_FlowLimit ] + values [ CPAP_SensAwake ] ) , day ) ;
2011-12-23 10:52:31 +00:00
2019-07-19 05:39:08 +00:00
} else { // No hours
htmlLeftNoHours + = " <table cellspacing=0 cellpadding=0 border=0 width='100%'> \n " ;
2012-01-11 04:58:46 +00:00
if ( ! isBrick ) {
2019-07-19 05:39:08 +00:00
htmlLeftNoHours + = " <tr><td colspan='5'> </td></tr> \n " ;
2014-08-20 17:17:13 +00:00
if ( day - > size ( ) > 0 ) {
2019-07-19 05:39:08 +00:00
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><font size='+3'> " + tr ( " Sessions all off! " ) + " </font></td></tr> " ;
htmlLeftNoHours + = " <tr><td colspan=5 align='center><img src='qrc:/icons/logo-md.png'></td></tr> " ;
htmlLeftNoHours + = " <tr bgcolor='#89abcd'><td colspan=5 align='center'><i><font color=white size=+1> " + tr ( " Sessions exist for this day but are switched off. " ) + " </font></i></td></tr> \n " ;
2014-08-21 08:04:25 +00:00
GraphView - > setEmptyText ( STR_Empty_NoSessions ) ;
2012-01-11 04:58:46 +00:00
} else {
2019-07-19 05:39:08 +00:00
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><b><h2> " + tr ( " Impossibly short session " ) + " </h2></b></td></tr> " ;
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><i> " + tr ( " Zero hours?? " ) + " </i></td></tr> \n " ;
2012-01-11 04:58:46 +00:00
}
2013-10-13 16:35:53 +00:00
} else { // machine is a brick
2019-07-19 05:39:08 +00:00
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><b><h2> " + tr ( " BRICK :( " ) + " </h2></b></td></tr> " ;
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><i> " + tr ( " Sorry, this machine only provides compliance data. " ) + " </i></td></tr> \n " ;
htmlLeftNoHours + = " <tr><td colspan=5 align='center'><i> " + tr ( " Complain to your Equipment Provider! " ) + " </i></td></tr> \n " ;
2012-01-11 04:58:46 +00:00
}
2019-07-19 05:39:08 +00:00
htmlLeftNoHours + = " <tr><td colspan='5'> </td></tr> \n " ;
htmlLeftNoHours + = " </table> \n " ;
2011-12-23 10:52:31 +00:00
}
} // if (!CPAP)
2019-07-19 05:39:08 +00:00
else htmlLeftSleepTime = getSleepTime ( day ) ;
2012-01-12 23:34:52 +00:00
2014-08-20 17:17:13 +00:00
if ( ( cpap & & ! isBrick & & ( day - > hours ( ) > 0 ) ) | | oxi | | posit ) {
2012-01-12 23:34:52 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftStatistics = getStatisticsInfo ( day ) ;
2014-05-15 20:48:05 +00:00
2011-06-26 08:30:44 +00:00
} else {
2014-08-20 17:17:13 +00:00
if ( cpap & & day - > hours ( MT_CPAP ) < 0.0000001 ) {
2014-09-01 11:39:38 +00:00
} else if ( ! isBrick ) {
2019-07-19 05:39:08 +00:00
htmlLeftStatistics = " <table cellspacing=0 cellpadding=0 border=0 height=100% width=100%> " ;
htmlLeftStatistics + = " <tr height=25%><td align=center></td></tr> " ;
htmlLeftStatistics + = " <tr><td align=center><font size='+3'> " + tr ( " \" Nothing's here! \" " ) + " </font></td></tr> " ;
htmlLeftStatistics + = " <tr><td align=center><img src='qrc:/icons/logo-md.png'></td></tr> " ;
htmlLeftStatistics + = " <tr height=5px><td align=center></td></tr> " ;
htmlLeftStatistics + = " <tr bgcolor='#89abcd'><td align=center><i><font size=+1 color=white> " + tr ( " No data is available for this day. " ) + " </font></i></td></tr> " ;
htmlLeftStatistics + = " <tr height=25%><td align=center></td></tr> " ;
htmlLeftStatistics + = " </table> \n " ;
2012-01-11 04:58:46 +00:00
}
2011-06-26 08:30:44 +00:00
}
2014-08-20 17:17:13 +00:00
if ( day ) {
2019-07-19 05:39:08 +00:00
htmlLeftOximeter = getOximeterInformation ( day ) ;
htmlLeftMachineSettings = getMachineSettings ( day ) ;
htmlLeftSessionInfo = getSessionInformation ( day ) ;
2014-08-20 17:17:13 +00:00
}
2011-12-31 11:36:19 +00:00
2019-07-19 05:39:08 +00:00
htmlLeftFooter = " </body></html> " ;
2011-06-26 08:30:44 +00:00
2019-09-16 18:54:42 +00:00
// SessionBar colors. Colors alternate.
2013-10-12 07:40:45 +00:00
QColor cols [ ] = {
2014-09-11 14:23:08 +00:00
COLOR_Gold ,
2019-09-16 18:54:42 +00:00
// QColor("light blue"),
QColor ( " skyblue " ) ,
2013-10-12 07:40:45 +00:00
} ;
const int maxcolors = sizeof ( cols ) / sizeof ( QColor ) ;
2013-10-22 11:42:57 +00:00
QList < Session * > : : iterator i ;
2013-10-12 07:40:45 +00:00
2019-05-20 00:44:10 +00:00
sessionbar - > clear ( ) ; // clear sessionbar as some days don't have sessions
2013-10-12 07:46:06 +00:00
if ( cpap ) {
int c = 0 ;
2014-08-20 17:17:13 +00:00
for ( i = day - > begin ( ) ; i ! = day - > end ( ) ; + + i ) {
2013-10-12 07:46:06 +00:00
Session * s = * i ;
2014-09-17 06:12:38 +00:00
if ( ( * s ) . type ( ) = = MT_CPAP )
2018-05-07 22:09:59 +00:00
sessionbar - > add ( s , cols [ c % maxcolors ] ) ;
2013-10-12 07:46:06 +00:00
c + + ;
}
2018-05-07 22:09:59 +00:00
}
2013-10-12 07:40:45 +00:00
//sessbar->update();
2018-05-08 08:12:32 +00:00
# ifdef DEBUG_DAILY_HTML
2019-03-25 23:43:04 +00:00
QString name = GetAppData ( ) + " /test.html " ;
2018-05-08 08:12:32 +00:00
QFile file ( name ) ;
if ( file . open ( QFile : : WriteOnly ) ) {
const QByteArray & b = html . toLocal8Bit ( ) ;
file . write ( b . data ( ) , b . size ( ) ) ;
file . close ( ) ;
}
# endif
2019-07-19 05:39:08 +00:00
webView - > setHtml ( getLeftSidebar ( true ) ) ;
2011-06-26 08:30:44 +00:00
2011-09-17 15:41:31 +00:00
ui - > JournalNotes - > clear ( ) ;
2011-12-02 11:40:47 +00:00
2011-12-18 16:39:36 +00:00
ui - > bookmarkTable - > clearContents ( ) ;
2011-12-02 11:40:47 +00:00
ui - > bookmarkTable - > setRowCount ( 0 ) ;
QStringList sl ;
2011-12-18 16:39:36 +00:00
//sl.append(tr("Starts"));
//sl.append(tr("Notes"));
2011-12-02 11:40:47 +00:00
ui - > bookmarkTable - > setHorizontalHeaderLabels ( sl ) ;
2011-12-10 15:24:45 +00:00
ui - > ZombieMeter - > blockSignals ( true ) ;
ui - > weightSpinBox - > blockSignals ( true ) ;
ui - > ouncesSpinBox - > blockSignals ( true ) ;
2011-12-02 11:40:47 +00:00
ui - > weightSpinBox - > setValue ( 0 ) ;
2011-12-02 13:48:05 +00:00
ui - > ouncesSpinBox - > setValue ( 0 ) ;
2011-12-10 12:14:48 +00:00
ui - > ZombieMeter - > setValue ( 5 ) ;
2011-12-10 15:24:45 +00:00
ui - > ouncesSpinBox - > blockSignals ( false ) ;
ui - > weightSpinBox - > blockSignals ( false ) ;
ui - > ZombieMeter - > blockSignals ( false ) ;
2011-12-03 01:05:17 +00:00
ui - > BMI - > display ( 0 ) ;
ui - > BMI - > setVisible ( false ) ;
ui - > BMIlabel - > setVisible ( false ) ;
2019-03-10 16:03:19 +00:00
ui - > toggleGraphs - > setVisible ( false ) ;
ui - > toggleEvents - > setVisible ( false ) ;
2011-12-03 01:05:17 +00:00
2011-12-02 14:18:47 +00:00
BookmarksChanged = false ;
2011-06-26 08:30:44 +00:00
Session * journal = GetJournalSession ( date ) ;
if ( journal ) {
2011-12-02 11:40:47 +00:00
bool ok ;
if ( journal - > settings . contains ( Journal_Notes ) )
ui - > JournalNotes - > setHtml ( journal - > settings [ Journal_Notes ] . toString ( ) ) ;
2011-12-21 05:47:33 +00:00
if ( journal - > settings . contains ( Journal_Weight ) ) {
double kg = journal - > settings [ Journal_Weight ] . toDouble ( & ok ) ;
2011-12-21 11:09:50 +00:00
2014-07-11 12:09:38 +00:00
if ( p_profile - > general - > unitSystem ( ) = = US_Metric ) {
2019-07-25 13:23:24 +00:00
ui - > weightSpinBox - > setDecimals ( 1 ) ;
2011-12-10 15:24:45 +00:00
ui - > weightSpinBox - > blockSignals ( true ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setValue ( kg ) ;
2011-12-10 15:24:45 +00:00
ui - > weightSpinBox - > blockSignals ( false ) ;
2011-12-02 13:48:05 +00:00
ui - > ouncesSpinBox - > setVisible ( false ) ;
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_KG ) ;
2011-12-02 13:48:05 +00:00
} else {
float ounces = ( kg * 1000.0 ) / ounce_convert ;
int pounds = ounces / 16.0 ;
double oz ;
double frac = modf ( ounces , & oz ) ;
ounces = ( int ( ounces ) % 16 ) + frac ;
2011-12-10 15:24:45 +00:00
ui - > weightSpinBox - > blockSignals ( true ) ;
ui - > ouncesSpinBox - > blockSignals ( true ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setValue ( pounds ) ;
ui - > ouncesSpinBox - > setValue ( ounces ) ;
2011-12-10 15:24:45 +00:00
ui - > ouncesSpinBox - > blockSignals ( false ) ;
ui - > weightSpinBox - > blockSignals ( false ) ;
2011-12-02 13:48:05 +00:00
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_POUND ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setDecimals ( 0 ) ;
ui - > ouncesSpinBox - > setVisible ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > ouncesSpinBox - > setSuffix ( STR_UNIT_OUNCE ) ;
2011-12-02 13:48:05 +00:00
}
2014-07-11 12:09:38 +00:00
double height = p_profile - > user - > height ( ) / 100.0 ;
2011-12-03 01:05:17 +00:00
if ( height > 0 & & kg > 0 ) {
2011-12-14 04:54:17 +00:00
double bmi = kg / ( height * height ) ;
2011-12-03 01:05:17 +00:00
ui - > BMI - > setVisible ( true ) ;
ui - > BMIlabel - > setVisible ( true ) ;
2011-12-14 04:54:17 +00:00
ui - > BMI - > display ( bmi ) ;
2011-12-03 01:05:17 +00:00
}
2011-12-02 13:48:05 +00:00
}
2011-12-02 11:40:47 +00:00
2011-12-21 05:47:33 +00:00
if ( journal - > settings . contains ( Journal_ZombieMeter ) ) {
2011-12-10 15:24:45 +00:00
ui - > ZombieMeter - > blockSignals ( true ) ;
2011-12-21 05:47:33 +00:00
ui - > ZombieMeter - > setValue ( journal - > settings [ Journal_ZombieMeter ] . toDouble ( & ok ) ) ;
2011-12-10 15:24:45 +00:00
ui - > ZombieMeter - > blockSignals ( false ) ;
}
2011-12-02 11:40:47 +00:00
2011-12-21 05:47:33 +00:00
if ( journal - > settings . contains ( Bookmark_Start ) ) {
QVariantList start = journal - > settings [ Bookmark_Start ] . toList ( ) ;
QVariantList end = journal - > settings [ Bookmark_End ] . toList ( ) ;
QStringList notes = journal - > settings [ Bookmark_Notes ] . toStringList ( ) ;
2011-12-02 11:40:47 +00:00
2011-12-11 13:57:07 +00:00
ui - > bookmarkTable - > blockSignals ( true ) ;
2012-01-19 15:18:34 +00:00
2014-07-11 12:09:38 +00:00
qint64 clockdrift = p_profile - > cpap - > clockDrift ( ) * 1000L , drift ;
Day * dday = p_profile - > GetDay ( previous_date , MT_CPAP ) ;
2014-04-23 13:19:56 +00:00
drift = ( dday ! = nullptr ) ? clockdrift : 0 ;
2012-01-19 15:18:34 +00:00
2011-12-02 11:40:47 +00:00
bool ok ;
for ( int i = 0 ; i < start . size ( ) ; i + + ) {
2012-01-19 15:18:34 +00:00
qint64 st = start . at ( i ) . toLongLong ( & ok ) + drift ;
qint64 et = end . at ( i ) . toLongLong ( & ok ) + drift ;
2011-12-02 11:40:47 +00:00
QDateTime d = QDateTime : : fromTime_t ( st / 1000L ) ;
//int row=ui->bookmarkTable->rowCount();
ui - > bookmarkTable - > insertRow ( i ) ;
QTableWidgetItem * tw = new QTableWidgetItem ( notes . at ( i ) ) ;
QTableWidgetItem * dw = new QTableWidgetItem ( d . time ( ) . toString ( " HH:mm:ss " ) ) ;
dw - > setFlags ( Qt : : ItemIsSelectable | Qt : : ItemIsEnabled ) ;
ui - > bookmarkTable - > setItem ( i , 0 , dw ) ;
ui - > bookmarkTable - > setItem ( i , 1 , tw ) ;
tw - > setData ( Qt : : UserRole , st ) ;
tw - > setData ( Qt : : UserRole + 1 , et ) ;
2011-12-23 10:52:31 +00:00
} // for (int i
2011-12-11 13:57:07 +00:00
ui - > bookmarkTable - > blockSignals ( false ) ;
2011-12-23 10:52:31 +00:00
} // if (journal->settings.contains(Bookmark_Start))
} // if (journal)
2011-06-26 08:30:44 +00:00
}
2011-12-02 13:48:05 +00:00
void Daily : : UnitsChanged ( )
{
double kg ;
2019-05-01 16:05:01 +00:00
if ( p_profile - > general - > unitSystem ( ) = = US_English ) {
2011-12-02 13:48:05 +00:00
kg = ui - > weightSpinBox - > value ( ) ;
float ounces = ( kg * 1000.0 ) / ounce_convert ;
int pounds = ounces / 16 ;
float oz = fmodf ( ounces , 16 ) ;
ui - > weightSpinBox - > setValue ( pounds ) ;
ui - > ouncesSpinBox - > setValue ( oz ) ;
ui - > weightSpinBox - > setDecimals ( 0 ) ;
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_POUND ) ;
2011-12-02 13:48:05 +00:00
ui - > ouncesSpinBox - > setVisible ( true ) ;
2011-12-21 12:47:47 +00:00
ui - > ouncesSpinBox - > setSuffix ( STR_UNIT_OUNCE ) ;
2011-12-02 13:48:05 +00:00
} else {
kg = ( ui - > weightSpinBox - > value ( ) * ( ounce_convert * 16.0 ) ) + ( ui - > ouncesSpinBox - > value ( ) * ounce_convert ) ;
kg / = 1000.0 ;
2019-07-25 13:23:24 +00:00
ui - > weightSpinBox - > setDecimals ( 1 ) ;
2011-12-02 13:48:05 +00:00
ui - > weightSpinBox - > setValue ( kg ) ;
ui - > ouncesSpinBox - > setVisible ( false ) ;
2011-12-21 12:47:47 +00:00
ui - > weightSpinBox - > setSuffix ( STR_UNIT_KG ) ;
2011-12-02 13:48:05 +00:00
}
}
2013-10-22 11:42:57 +00:00
void Daily : : clearLastDay ( )
{
2014-04-23 13:19:56 +00:00
lastcpapday = nullptr ;
2013-10-22 11:42:57 +00:00
}
2011-06-26 08:30:44 +00:00
void Daily : : Unload ( QDate date )
{
2014-07-25 07:53:48 +00:00
if ( ! date . isValid ( ) ) {
date = getDate ( ) ;
if ( ! date . isValid ( ) ) {
graphView ( ) - > setDay ( nullptr ) ;
return ;
}
}
2014-08-07 22:47:34 +00:00
2018-05-08 08:12:32 +00:00
// Update the journal notes
Session * journal = GetJournalSession ( date ) ;
2011-06-26 08:30:44 +00:00
2018-05-08 08:12:32 +00:00
bool editorHasContent = ! ui - > JournalNotes - > toPlainText ( ) . isEmpty ( ) ; // have a look as plaintext to see if really empty.
if ( ! journal & & editorHasContent ) {
journal = CreateJournalSession ( date ) ;
2011-06-26 08:30:44 +00:00
}
2011-12-02 11:40:47 +00:00
2011-06-26 08:30:44 +00:00
if ( journal ) {
2018-05-08 08:12:32 +00:00
auto jit = journal - > settings . find ( Journal_Notes ) ;
if ( jit ! = journal - > settings . end ( ) ) {
// we do have a journal_notes record
if ( editorHasContent ) {
const QString & html = ui - > JournalNotes - > toHtml ( ) ;
if ( jit . value ( ) ! = html ) { // has the content of it changed?
jit . value ( ) = html ;
journal - > SetChanged ( true ) ;
}
} else {
// empty, so don't need this notes setting anymore
journal - > settings . erase ( jit ) ;
journal - > SetChanged ( true ) ;
2011-12-02 11:48:02 +00:00
}
2018-05-08 08:12:32 +00:00
} else if ( editorHasContent ) {
// Create the note
journal - > settings [ Journal_Notes ] = ui - > JournalNotes - > toHtml ( ) ;
journal - > SetChanged ( true ) ;
2011-12-02 11:48:02 +00:00
}
2018-05-08 08:12:32 +00:00
2011-12-02 13:48:05 +00:00
if ( journal - > IsChanged ( ) ) {
2018-05-08 08:12:32 +00:00
journal - > settings [ LastUpdated ] = QDateTime : : currentDateTime ( ) ;
2018-05-30 08:51:43 +00:00
journal - > machine ( ) - > SaveSummaryCache ( ) ;
2018-05-08 08:12:32 +00:00
journal - > SetChanged ( false ) ; // save summary doesn't automatically do this
2011-12-02 13:48:05 +00:00
}
2011-09-17 15:41:31 +00:00
}
2011-06-26 08:30:44 +00:00
UpdateCalendarDay ( date ) ;
}
void Daily : : on_JournalNotesItalic_clicked ( )
{
QTextCursor cursor = ui - > JournalNotes - > textCursor ( ) ;
if ( ! cursor . hasSelection ( ) )
cursor . select ( QTextCursor : : WordUnderCursor ) ;
QTextCharFormat format = cursor . charFormat ( ) ;
format . setFontItalic ( ! format . fontItalic ( ) ) ;
cursor . mergeCharFormat ( format ) ;
//ui->JournalNotes->mergeCurrentCharFormat(format);
}
void Daily : : on_JournalNotesBold_clicked ( )
{
QTextCursor cursor = ui - > JournalNotes - > textCursor ( ) ;
if ( ! cursor . hasSelection ( ) )
cursor . select ( QTextCursor : : WordUnderCursor ) ;
QTextCharFormat format = cursor . charFormat ( ) ;
int fw = format . fontWeight ( ) ;
if ( fw ! = QFont : : Bold )
format . setFontWeight ( QFont : : Bold ) ;
else
format . setFontWeight ( QFont : : Normal ) ;
cursor . mergeCharFormat ( format ) ;
//ui->JournalNotes->mergeCurrentCharFormat(format);
}
void Daily : : on_JournalNotesFontsize_activated ( int index )
{
QTextCursor cursor = ui - > JournalNotes - > textCursor ( ) ;
if ( ! cursor . hasSelection ( ) )
cursor . select ( QTextCursor : : WordUnderCursor ) ;
QTextCharFormat format = cursor . charFormat ( ) ;
QFont font = format . font ( ) ;
int fontsize = 10 ;
if ( index = = 1 ) fontsize = 15 ;
else if ( index = = 2 ) fontsize = 25 ;
font . setPointSize ( fontsize ) ;
format . setFont ( font ) ;
cursor . mergeCharFormat ( format ) ;
}
void Daily : : on_JournalNotesColour_clicked ( )
{
2013-09-10 15:09:09 +00:00
QColor col = QColorDialog : : getColor ( COLOR_Black , this , tr ( " Pick a Colour " ) ) ; //,QColorDialog::NoButtons);
2011-06-26 08:30:44 +00:00
if ( ! col . isValid ( ) ) return ;
QTextCursor cursor = ui - > JournalNotes - > textCursor ( ) ;
if ( ! cursor . hasSelection ( ) )
cursor . select ( QTextCursor : : WordUnderCursor ) ;
QBrush b ( col ) ;
QPalette newPalette = palette ( ) ;
newPalette . setColor ( QPalette : : ButtonText , col ) ;
ui - > JournalNotesColour - > setPalette ( newPalette ) ;
QTextCharFormat format = cursor . charFormat ( ) ;
format . setForeground ( b ) ;
cursor . setCharFormat ( format ) ;
}
Session * Daily : : CreateJournalSession ( QDate date )
{
2014-08-20 17:17:13 +00:00
Machine * m = p_profile - > GetMachine ( MT_JOURNAL ) ;
2011-06-26 08:30:44 +00:00
if ( ! m ) {
2018-06-05 22:08:12 +00:00
m = new Machine ( p_profile , 0 ) ;
2014-07-28 13:56:29 +00:00
MachineInfo info ;
info . loadername = " Journal " ;
info . serial = m - > hexid ( ) ;
info . brand = " Journal " ;
info . type = MT_JOURNAL ;
m - > setInfo ( info ) ;
2014-08-20 17:17:13 +00:00
m - > setType ( MT_JOURNAL ) ;
2014-07-11 12:09:38 +00:00
p_profile - > AddMachine ( m ) ;
2011-06-26 08:30:44 +00:00
}
2014-08-20 17:17:13 +00:00
2011-06-26 08:30:44 +00:00
Session * sess = new Session ( m , 0 ) ;
2011-12-25 05:05:12 +00:00
qint64 st , et ;
2014-08-20 17:17:13 +00:00
2014-08-20 21:23:33 +00:00
Day * cday = p_profile - > GetDay ( date ) ;
2011-12-25 05:05:12 +00:00
if ( cday ) {
st = cday - > first ( ) ;
et = cday - > last ( ) ;
} else {
QDateTime dt ( date , QTime ( 20 , 0 ) ) ;
st = qint64 ( dt . toTime_t ( ) ) * 1000L ;
2014-08-07 17:20:52 +00:00
et = st + 3600000L ;
2011-12-25 05:05:12 +00:00
}
2014-08-20 21:23:33 +00:00
sess - > SetSessionID ( st / 1000L ) ;
2011-12-25 05:05:12 +00:00
sess - > set_first ( st ) ;
sess - > set_last ( et ) ;
2014-07-11 12:09:38 +00:00
m - > AddSession ( sess ) ;
2011-06-26 08:30:44 +00:00
return sess ;
}
Session * Daily : : GetJournalSession ( QDate date ) // Get the first journal session
{
2014-08-20 21:23:33 +00:00
Day * day = p_profile - > GetDay ( date , MT_JOURNAL ) ;
if ( day ) {
Session * session = day - > firstSession ( MT_JOURNAL ) ;
if ( ! session ) {
session = CreateJournalSession ( date ) ;
}
return session ;
2014-08-20 17:17:13 +00:00
}
2014-08-20 21:23:33 +00:00
return nullptr ;
2011-06-26 08:30:44 +00:00
}
2011-06-27 07:45:59 +00:00
void Daily : : RedrawGraphs ( )
{
2014-05-15 19:45:46 +00:00
// setting this here, because it needs to be done when preferences change
2014-07-11 12:09:38 +00:00
if ( p_profile - > cpap - > showLeakRedline ( ) ) {
schema : : channel [ CPAP_Leak ] . setUpperThreshold ( p_profile - > cpap - > leakRedline ( ) ) ;
2014-05-15 19:45:46 +00:00
} else {
2014-05-15 21:48:53 +00:00
schema : : channel [ CPAP_Leak ] . setUpperThreshold ( 0 ) ; // switch it off
2014-05-15 19:45:46 +00:00
}
2019-07-02 15:01:20 +00:00
QFont appFont = QApplication : : font ( ) ;
dateDisplay - > setFont ( appFont ) ;
2011-12-20 11:12:52 +00:00
GraphView - > redraw ( ) ;
2011-06-27 07:45:59 +00:00
}
2011-06-26 08:30:44 +00:00
2014-08-17 12:56:05 +00:00
void Daily : : on_LineCursorUpdate ( double time )
{
2014-08-21 14:16:23 +00:00
if ( time > 1 ) {
2015-08-11 20:04:30 +00:00
// use local time since this string is displayed to the user
QDateTime dt = QDateTime : : fromMSecsSinceEpoch ( time , Qt : : LocalTime ) ;
2014-08-27 09:55:31 +00:00
QString txt = dt . toString ( " MMM dd HH:mm:ss.zzz " ) ;
2014-08-21 14:16:23 +00:00
dateDisplay - > setText ( txt ) ;
} else dateDisplay - > setText ( QString ( GraphView - > emptyText ( ) ) ) ;
2014-08-17 12:56:05 +00:00
}
2014-10-02 10:02:33 +00:00
void Daily : : on_RangeUpdate ( double minx , double /*maxx*/ )
2014-08-17 12:56:05 +00:00
{
2014-08-21 14:16:23 +00:00
if ( minx > 1 ) {
2014-08-17 12:56:05 +00:00
dateDisplay - > setText ( GraphView - > getRangeString ( ) ) ;
2014-08-21 14:16:23 +00:00
} else {
dateDisplay - > setText ( QString ( GraphView - > emptyText ( ) ) ) ;
}
2014-08-17 12:56:05 +00:00
}
2011-11-27 22:36:38 +00:00
void Daily : : on_treeWidget_itemClicked ( QTreeWidgetItem * item , int column )
2011-06-26 08:30:44 +00:00
{
2011-12-02 14:36:40 +00:00
Q_UNUSED ( column ) ;
2011-06-26 08:30:44 +00:00
QDateTime d ;
2011-12-25 05:05:12 +00:00
if ( ! item - > data ( 0 , Qt : : UserRole ) . isNull ( ) ) {
2014-07-11 12:09:38 +00:00
qint64 winsize = qint64 ( p_profile - > general - > eventWindowSize ( ) ) * 60000L ;
2011-12-25 05:05:12 +00:00
qint64 t = item - > data ( 0 , Qt : : UserRole ) . toLongLong ( ) ;
double st = t - ( winsize / 2 ) ;
double et = t + ( winsize / 2 ) ;
2014-07-19 06:18:54 +00:00
gGraph * g = GraphView - > findGraph ( STR_GRAPH_SleepFlags ) ;
2011-11-27 22:36:38 +00:00
if ( ! g ) return ;
if ( st < g - > rmin_x ) {
st = g - > rmin_x ;
2011-12-25 05:05:12 +00:00
et = st + winsize ;
2011-11-27 08:31:05 +00:00
}
2011-11-27 22:36:38 +00:00
if ( et > g - > rmax_x ) {
et = g - > rmax_x ;
2011-12-25 05:05:12 +00:00
st = et - winsize ;
2011-11-27 08:31:05 +00:00
}
2011-08-25 06:11:44 +00:00
GraphView - > SetXBounds ( st , et ) ;
2011-06-26 08:30:44 +00:00
}
}
2011-06-28 01:51:21 +00:00
2011-11-27 22:36:38 +00:00
void Daily : : on_treeWidget_itemSelectionChanged ( )
{
if ( ui - > treeWidget - > selectedItems ( ) . size ( ) = = 0 ) return ;
QTreeWidgetItem * item = ui - > treeWidget - > selectedItems ( ) . at ( 0 ) ;
if ( ! item ) return ;
on_treeWidget_itemClicked ( item , 0 ) ;
}
2011-06-28 01:51:21 +00:00
void Daily : : on_JournalNotesUnderline_clicked ( )
{
QTextCursor cursor = ui - > JournalNotes - > textCursor ( ) ;
if ( ! cursor . hasSelection ( ) )
cursor . select ( QTextCursor : : WordUnderCursor ) ;
QTextCharFormat format = cursor . charFormat ( ) ;
format . setFontUnderline ( ! format . fontUnderline ( ) ) ;
cursor . mergeCharFormat ( format ) ;
//ui->JournalNotes->mergeCurrentCharFormat(format);
}
2011-10-30 02:46:17 +00:00
void Daily : : on_prevDayButton_clicked ( )
{
2021-03-28 03:22:31 +00:00
if ( previous_date . isValid ( ) ) {
Unload ( previous_date ) ;
}
2014-07-11 12:09:38 +00:00
if ( ! p_profile - > ExistsAndTrue ( " SkipEmptyDays " ) ) {
2011-10-30 04:51:57 +00:00
LoadDate ( previous_date . addDays ( - 1 ) ) ;
} else {
QDate d = previous_date ;
for ( int i = 0 ; i < 90 ; i + + ) {
d = d . addDays ( - 1 ) ;
2014-07-11 12:09:38 +00:00
if ( p_profile - > GetDay ( d ) ) {
2011-10-30 04:51:57 +00:00
LoadDate ( d ) ;
break ;
}
2011-10-30 04:43:15 +00:00
}
}
2011-10-30 02:46:17 +00:00
}
2021-03-28 03:22:31 +00:00
bool Daily : : eventFilter ( QObject * object , QEvent * event )
{
if ( object = = ui - > JournalNotes & & event - > type ( ) = = QEvent : : FocusOut ) {
// Trigger immediate save of journal when we focus out from it so we never
// lose any journal entry text...
if ( previous_date . isValid ( ) ) {
Unload ( previous_date ) ;
}
}
return false ;
}
2011-10-30 02:46:17 +00:00
void Daily : : on_nextDayButton_clicked ( )
{
2021-03-28 03:22:31 +00:00
if ( previous_date . isValid ( ) ) {
Unload ( previous_date ) ;
}
2014-07-11 12:09:38 +00:00
if ( ! p_profile - > ExistsAndTrue ( " SkipEmptyDays " ) ) {
2011-10-30 04:51:57 +00:00
LoadDate ( previous_date . addDays ( 1 ) ) ;
} else {
QDate d = previous_date ;
for ( int i = 0 ; i < 90 ; i + + ) {
d = d . addDays ( 1 ) ;
2014-07-11 12:09:38 +00:00
if ( p_profile - > GetDay ( d ) ) {
2011-10-30 04:51:57 +00:00
LoadDate ( d ) ;
break ;
}
2011-10-30 04:43:15 +00:00
}
}
2011-10-30 02:46:17 +00:00
}
void Daily : : on_calButton_toggled ( bool checked )
{
2011-10-30 14:23:59 +00:00
bool b = checked ;
2014-05-17 11:33:33 +00:00
ui - > calendarFrame - > setVisible ( b ) ;
2018-04-22 12:06:48 +00:00
AppSetting - > setCalendarVisible ( b ) ;
2014-05-17 11:33:33 +00:00
if ( ! b ) {
ui - > calButton - > setArrowType ( Qt : : DownArrow ) ;
} else {
ui - > calButton - > setArrowType ( Qt : : UpArrow ) ;
}
2011-10-30 02:46:17 +00:00
}
2011-10-30 03:18:20 +00:00
void Daily : : on_todayButton_clicked ( )
{
2021-03-28 03:22:31 +00:00
if ( previous_date . isValid ( ) ) {
Unload ( previous_date ) ;
}
2014-09-29 15:43:00 +00:00
// QDate d=QDate::currentDate();
// if (d > p_profile->LastDay()) {
QDate lastcpap = p_profile - > LastDay ( MT_CPAP ) ;
QDate lastoxi = p_profile - > LastDay ( MT_OXIMETER ) ;
QDate d = qMax ( lastcpap , lastoxi ) ;
// }
2011-10-30 03:18:20 +00:00
LoadDate ( d ) ;
}
2011-11-24 12:47:25 +00:00
2011-11-27 07:41:00 +00:00
void Daily : : on_evViewSlider_valueChanged ( int value )
{
ui - > evViewLCD - > display ( value ) ;
2014-07-11 12:09:38 +00:00
p_profile - > general - > setEventWindowSize ( value ) ;
2011-11-27 08:00:20 +00:00
2011-12-21 12:47:47 +00:00
int winsize = value * 60 ;
2011-11-27 08:31:05 +00:00
2014-07-16 17:12:52 +00:00
gGraph * g = GraphView - > findGraph ( STR_GRAPH_SleepFlags ) ;
2011-12-11 13:57:07 +00:00
if ( ! g ) return ;
qint64 st = g - > min_x ;
qint64 et = g - > max_x ;
qint64 len = et - st ;
qint64 d = st + len / 2.0 ;
st = d - ( winsize / 2 ) * 1000 ;
et = d + ( winsize / 2 ) * 1000 ;
if ( st < g - > rmin_x ) {
st = g - > rmin_x ;
et = st + winsize * 1000 ;
}
if ( et > g - > rmax_x ) {
et = g - > rmax_x ;
st = et - winsize * 1000 ;
2011-11-27 08:00:20 +00:00
}
2011-12-11 13:57:07 +00:00
GraphView - > SetXBounds ( st , et ) ;
2011-11-27 07:41:00 +00:00
}
2011-12-01 15:40:32 +00:00
2011-12-02 11:40:47 +00:00
void Daily : : on_bookmarkTable_itemClicked ( QTableWidgetItem * item )
{
int row = item - > row ( ) ;
qint64 st , et ;
2014-07-11 12:09:38 +00:00
// qint64 clockdrift=p_profile->cpap->clockDrift()*1000L,drift;
// Day * dday=p_profile->GetDay(previous_date,MT_CPAP);
2014-04-23 13:19:56 +00:00
// drift=(dday!=nullptr) ? clockdrift : 0;
2012-01-19 15:18:34 +00:00
2011-12-02 11:40:47 +00:00
QTableWidgetItem * it = ui - > bookmarkTable - > item ( row , 1 ) ;
bool ok ;
st = it - > data ( Qt : : UserRole ) . toLongLong ( & ok ) ;
et = it - > data ( Qt : : UserRole + 1 ) . toLongLong ( & ok ) ;
2012-01-05 12:12:42 +00:00
qint64 st2 = 0 , et2 = 0 , st3 , et3 ;
2014-07-11 12:09:38 +00:00
Day * day = p_profile - > GetGoodDay ( previous_date , MT_CPAP ) ;
2011-12-28 14:21:45 +00:00
if ( day ) {
st2 = day - > first ( ) ;
et2 = day - > last ( ) ;
}
2014-07-11 12:09:38 +00:00
Day * oxi = p_profile - > GetGoodDay ( previous_date , MT_OXIMETER ) ;
2011-12-28 14:21:45 +00:00
if ( oxi ) {
st3 = oxi - > first ( ) ;
et3 = oxi - > last ( ) ;
}
if ( oxi & & day ) {
st2 = qMin ( st2 , st3 ) ;
et2 = qMax ( et2 , et3 ) ;
} else if ( oxi ) {
st2 = st3 ;
et2 = et3 ;
} else if ( ! day ) return ;
if ( ( et < st2 ) | | ( st > et2 ) ) {
2019-08-22 09:17:44 +00:00
mainwin - > Notify ( tr ( " This bookmark is in a currently disabled area.. " ) ) ;
2011-12-28 14:21:45 +00:00
return ;
}
if ( st < st2 ) st = st2 ;
if ( et > et2 ) et = et2 ;
2011-12-02 11:40:47 +00:00
GraphView - > SetXBounds ( st , et ) ;
2011-12-20 11:12:52 +00:00
GraphView - > redraw ( ) ;
2011-12-02 11:40:47 +00:00
}
2014-08-07 17:20:52 +00:00
void Daily : : addBookmark ( qint64 st , qint64 et , QString text )
2011-12-02 11:40:47 +00:00
{
2011-12-11 14:05:07 +00:00
ui - > bookmarkTable - > blockSignals ( true ) ;
2015-08-11 20:52:19 +00:00
QDateTime d = QDateTime : : fromTime_t ( st / 1000L , Qt : : LocalTime ) ;
2011-12-02 11:40:47 +00:00
int row = ui - > bookmarkTable - > rowCount ( ) ;
ui - > bookmarkTable - > insertRow ( row ) ;
2014-08-07 17:20:52 +00:00
QTableWidgetItem * tw = new QTableWidgetItem ( text ) ;
2011-12-02 11:40:47 +00:00
QTableWidgetItem * dw = new QTableWidgetItem ( d . time ( ) . toString ( " HH:mm:ss " ) ) ;
dw - > setFlags ( Qt : : ItemIsSelectable | Qt : : ItemIsEnabled ) ;
ui - > bookmarkTable - > setItem ( row , 0 , dw ) ;
ui - > bookmarkTable - > setItem ( row , 1 , tw ) ;
2014-07-11 12:09:38 +00:00
qint64 clockdrift = p_profile - > cpap - > clockDrift ( ) * 1000L , drift ;
Day * day = p_profile - > GetDay ( previous_date , MT_CPAP ) ;
2014-04-23 13:19:56 +00:00
drift = ( day ! = nullptr ) ? clockdrift : 0 ;
2012-01-19 15:18:34 +00:00
// Counter CPAP clock drift for storage, in case user changes it later on
// This won't fix the text string names..
tw - > setData ( Qt : : UserRole , st - drift ) ;
tw - > setData ( Qt : : UserRole + 1 , et - drift ) ;
2011-12-02 11:40:47 +00:00
2011-12-11 14:05:07 +00:00
ui - > bookmarkTable - > blockSignals ( false ) ;
2011-12-11 13:57:07 +00:00
update_Bookmarks ( ) ;
2011-12-26 04:41:28 +00:00
mainwin - > updateFavourites ( ) ;
2011-12-11 13:57:07 +00:00
2014-08-07 17:20:52 +00:00
}
void Daily : : on_addBookmarkButton_clicked ( )
{
qint64 st , et ;
GraphView - > GetXBounds ( st , et ) ;
2015-08-11 20:52:19 +00:00
QDateTime d = QDateTime : : fromTime_t ( st / 1000L , Qt : : LocalTime ) ;
2014-08-07 17:20:52 +00:00
addBookmark ( st , et , tr ( " Bookmark at %1 " ) . arg ( d . time ( ) . toString ( " HH:mm:ss " ) ) ) ;
2011-12-02 11:40:47 +00:00
}
2011-12-11 13:57:07 +00:00
void Daily : : update_Bookmarks ( )
{
QVariantList start ;
QVariantList end ;
QStringList notes ;
QTableWidgetItem * item ;
for ( int row = 0 ; row < ui - > bookmarkTable - > rowCount ( ) ; row + + ) {
item = ui - > bookmarkTable - > item ( row , 1 ) ;
2011-12-11 14:05:07 +00:00
2011-12-11 13:57:07 +00:00
start . push_back ( item - > data ( Qt : : UserRole ) ) ;
end . push_back ( item - > data ( Qt : : UserRole + 1 ) ) ;
notes . push_back ( item - > text ( ) ) ;
}
Session * journal = GetJournalSession ( previous_date ) ;
if ( ! journal ) {
journal = CreateJournalSession ( previous_date ) ;
}
2011-12-21 05:47:33 +00:00
journal - > settings [ Bookmark_Start ] = start ;
journal - > settings [ Bookmark_End ] = end ;
journal - > settings [ Bookmark_Notes ] = notes ;
2014-08-17 12:56:05 +00:00
journal - > settings [ LastUpdated ] = QDateTime : : currentDateTime ( ) ;
2011-12-11 13:57:07 +00:00
journal - > SetChanged ( true ) ;
BookmarksChanged = true ;
2011-12-26 04:41:28 +00:00
mainwin - > updateFavourites ( ) ;
2011-12-11 13:57:07 +00:00
}
2011-12-02 11:40:47 +00:00
void Daily : : on_removeBookmarkButton_clicked ( )
{
int row = ui - > bookmarkTable - > currentRow ( ) ;
if ( row > = 0 ) {
2011-12-11 14:05:07 +00:00
ui - > bookmarkTable - > blockSignals ( true ) ;
2011-12-02 11:40:47 +00:00
ui - > bookmarkTable - > removeRow ( row ) ;
2011-12-11 14:05:07 +00:00
ui - > bookmarkTable - > blockSignals ( false ) ;
2011-12-11 13:57:07 +00:00
update_Bookmarks ( ) ;
2011-12-02 11:40:47 +00:00
}
2011-12-26 04:41:28 +00:00
mainwin - > updateFavourites ( ) ;
2011-12-02 11:40:47 +00:00
}
2011-12-10 15:24:45 +00:00
void Daily : : on_ZombieMeter_valueChanged ( int action )
2011-12-02 11:40:47 +00:00
{
2011-12-02 14:36:40 +00:00
Q_UNUSED ( action ) ;
2011-12-02 11:40:47 +00:00
ZombieMeterMoved = true ;
2011-12-10 15:24:45 +00:00
Session * journal = GetJournalSession ( previous_date ) ;
if ( ! journal ) {
journal = CreateJournalSession ( previous_date ) ;
}
2011-12-21 05:47:33 +00:00
journal - > settings [ Journal_ZombieMeter ] = ui - > ZombieMeter - > value ( ) ;
2011-12-10 15:24:45 +00:00
journal - > SetChanged ( true ) ;
2011-12-02 11:40:47 +00:00
}
2011-12-02 14:18:47 +00:00
void Daily : : on_bookmarkTable_itemChanged ( QTableWidgetItem * item )
{
Q_UNUSED ( item ) ;
2011-12-11 13:57:07 +00:00
update_Bookmarks ( ) ;
2011-12-02 14:18:47 +00:00
}
2012-01-05 15:17:50 +00:00
2011-12-03 01:05:17 +00:00
void Daily : : on_weightSpinBox_valueChanged ( double arg1 )
{
2021-03-28 03:22:31 +00:00
// This is called if up/down arrows are used, in which case editingFinished is
// never called. So always call editingFinished instead
Q_UNUSED ( arg1 ) ;
this - > on_weightSpinBox_editingFinished ( ) ;
2012-01-05 15:17:50 +00:00
}
void Daily : : on_weightSpinBox_editingFinished ( )
{
double arg1 = ui - > weightSpinBox - > value ( ) ;
2014-07-11 12:09:38 +00:00
double height = p_profile - > user - > height ( ) / 100.0 ;
2011-12-10 15:24:45 +00:00
Session * journal = GetJournalSession ( previous_date ) ;
if ( ! journal ) {
journal = CreateJournalSession ( previous_date ) ;
}
2011-12-03 01:05:17 +00:00
double kg ;
2019-05-01 16:05:01 +00:00
if ( p_profile - > general - > unitSystem ( ) = = US_English ) {
2012-01-05 15:17:50 +00:00
kg = ( ( arg1 * pound_convert ) + ( ui - > ouncesSpinBox - > value ( ) * ounce_convert ) ) / 1000.0 ;
2011-12-21 11:09:50 +00:00
} else {
kg = arg1 ;
2011-12-03 01:05:17 +00:00
}
2021-03-28 03:22:31 +00:00
if ( journal - > settings . contains ( Journal_Weight ) ) {
QVariant old = journal - > settings [ Journal_Weight ] ;
if ( old = = kg & & kg > 0 ) {
// No change to weight - skip
return ;
}
} else if ( kg = = 0 ) {
// Still zero - skip
return ;
}
if ( kg > 0 ) {
journal - > settings [ Journal_Weight ] = kg ;
} else {
// Weight now zero - remove from journal
auto jit = journal - > settings . find ( Journal_Weight ) ;
if ( jit ! = journal - > settings . end ( ) ) {
journal - > settings . erase ( jit ) ;
}
}
2011-12-10 15:24:45 +00:00
gGraphView * gv = mainwin - > getOverview ( ) - > graphView ( ) ;
gGraph * g ;
if ( gv ) {
2014-07-16 17:12:52 +00:00
g = gv - > findGraph ( STR_GRAPH_Weight ) ;
2014-04-23 13:19:56 +00:00
if ( g ) g - > setDay ( nullptr ) ;
2011-12-10 15:24:45 +00:00
}
2011-12-03 01:05:17 +00:00
if ( ( height > 0 ) & & ( kg > 0 ) ) {
double bmi = kg / ( height * height ) ;
ui - > BMI - > display ( bmi ) ;
2011-12-03 05:10:23 +00:00
ui - > BMI - > setVisible ( true ) ;
2019-07-24 08:48:18 +00:00
ui - > BMIlabel - > setVisible ( true ) ;
2011-12-21 05:47:33 +00:00
journal - > settings [ Journal_BMI ] = bmi ;
2019-07-24 08:48:18 +00:00
} else {
2021-03-28 03:22:31 +00:00
// BMI now zero - remove it
auto jit = journal - > settings . find ( Journal_BMI ) ;
if ( jit ! = journal - > settings . end ( ) ) {
journal - > settings . erase ( jit ) ;
}
// And make it invisible
2019-07-24 08:48:18 +00:00
ui - > BMI - > setVisible ( false ) ;
ui - > BMIlabel - > setVisible ( false ) ;
2011-12-03 01:05:17 +00:00
}
2021-03-28 03:22:31 +00:00
if ( gv ) {
g = gv - > findGraph ( STR_GRAPH_BMI ) ;
if ( g ) g - > setDay ( nullptr ) ;
}
2011-12-10 15:24:45 +00:00
journal - > SetChanged ( true ) ;
2011-12-03 01:05:17 +00:00
}
2012-01-05 15:17:50 +00:00
2011-12-03 01:05:17 +00:00
void Daily : : on_ouncesSpinBox_valueChanged ( int arg1 )
{
2021-03-28 03:22:31 +00:00
// This is called if up/down arrows are used, in which case editingFinished is
// never called. So always call editingFinished instead
Q_UNUSED ( arg1 ) ;
this - > on_weightSpinBox_editingFinished ( ) ;
2012-01-05 15:17:50 +00:00
}
void Daily : : on_ouncesSpinBox_editingFinished ( )
{
2021-03-28 03:22:31 +00:00
// This is functionally identical to the weightSpinBox_editingFinished, so just call that
this - > on_weightSpinBox_editingFinished ( ) ;
2011-12-03 01:05:17 +00:00
}
2012-01-05 15:17:50 +00:00
2011-12-12 03:39:00 +00:00
QString Daily : : GetDetailsText ( )
{
2018-05-07 22:09:59 +00:00
QTextDocument * doc = webView - > document ( ) ;
QString content = doc - > toHtml ( ) ;
return content ;
2011-12-12 03:39:00 +00:00
}
2012-01-03 16:29:35 +00:00
void Daily : : on_graphCombo_activated ( int index )
{
if ( index < 0 )
return ;
gGraph * g ;
QString s ;
s = ui - > graphCombo - > currentText ( ) ;
bool b = ! ui - > graphCombo - > itemData ( index , Qt : : UserRole ) . toBool ( ) ;
ui - > graphCombo - > setItemData ( index , b , Qt : : UserRole ) ;
if ( b ) {
ui - > graphCombo - > setItemIcon ( index , * icon_on ) ;
} else {
ui - > graphCombo - > setItemIcon ( index , * icon_off ) ;
}
2014-07-16 17:12:52 +00:00
g = GraphView - > findGraphTitle ( s ) ;
2012-01-03 16:29:35 +00:00
g - > setVisible ( b ) ;
updateCube ( ) ;
GraphView - > updateScale ( ) ;
GraphView - > redraw ( ) ;
}
2019-08-09 22:32:37 +00:00
2012-01-03 16:29:35 +00:00
void Daily : : updateCube ( )
{
//brick..
if ( ( GraphView - > visibleGraphs ( ) = = 0 ) ) {
2019-03-10 16:03:19 +00:00
ui - > toggleGraphs - > setVisible ( false ) ;
// ui->toggleGraphs->setArrowType(Qt::UpArrow);
// ui->toggleGraphs->setToolTip(tr("Show all graphs"));
// ui->toggleGraphs->blockSignals(true);
// ui->toggleGraphs->setChecked(true);
// ui->toggleGraphs->blockSignals(false);
2012-01-03 16:29:35 +00:00
2014-07-13 04:39:26 +00:00
if ( ui - > graphCombo - > count ( ) > 0 ) {
2014-08-21 08:04:25 +00:00
GraphView - > setEmptyText ( STR_Empty_NoGraphs ) ;
2012-01-03 16:29:35 +00:00
} else {
2014-07-13 04:39:26 +00:00
if ( ! p_profile - > GetGoodDay ( getDate ( ) , MT_CPAP )
& & ! p_profile - > GetGoodDay ( getDate ( ) , MT_OXIMETER )
& & ! p_profile - > GetGoodDay ( getDate ( ) , MT_SLEEPSTAGE )
& & ! p_profile - > GetGoodDay ( getDate ( ) , MT_POSITION ) ) {
2014-08-21 08:04:25 +00:00
GraphView - > setEmptyText ( STR_Empty_NoData ) ;
2014-09-01 11:39:38 +00:00
2014-07-13 04:39:26 +00:00
} else {
2014-09-01 11:39:38 +00:00
if ( GraphView - > emptyText ( ) ! = STR_Empty_Brick )
GraphView - > setEmptyText ( STR_Empty_SummaryOnly ) ;
2014-07-13 04:39:26 +00:00
}
2012-01-03 16:29:35 +00:00
}
} else {
2019-03-10 16:03:19 +00:00
ui - > toggleGraphs - > setVisible ( false ) ;
// ui->toggleGraphs->setArrowType(Qt::DownArrow);
// ui->toggleGraphs->setToolTip(tr("Hide all graphs"));
// ui->toggleGraphs->blockSignals(true);
// ui->toggleGraphs->setChecked(false);
// ui->toggleGraphs->blockSignals(false);
2012-01-03 16:29:35 +00:00
}
}
2019-05-08 21:06:17 +00:00
void Daily : : on_toggleGraphs_clicked ( bool /*checked*/ )
2012-01-03 16:29:35 +00:00
{
QString s ;
2019-05-08 21:06:17 +00:00
//QIcon *icon=checked ? icon_off : icon_on;
2019-03-10 16:03:19 +00:00
if ( ui - > graphCombo = = nullptr )
qDebug ( ) < < " ToggleGraphs clicked with null graphCombo ptr " ;
else
qDebug ( ) < < " ToggleGraphs clicked with non-null graphCombo ptr " ;
return ;
/*
2012-01-03 16:29:35 +00:00
for ( int i = 0 ; i < ui - > graphCombo - > count ( ) ; i + + ) {
s = ui - > graphCombo - > itemText ( i ) ;
ui - > graphCombo - > setItemIcon ( i , * icon ) ;
ui - > graphCombo - > setItemData ( i , ! checked , Qt : : UserRole ) ;
}
2012-01-06 05:22:13 +00:00
for ( int i = 0 ; i < GraphView - > size ( ) ; i + + ) {
( * GraphView ) [ i ] - > setVisible ( ! checked ) ;
}
2012-01-03 16:29:35 +00:00
updateCube ( ) ;
GraphView - > updateScale ( ) ;
GraphView - > redraw ( ) ;
2019-03-10 16:03:19 +00:00
*/
2012-01-03 16:29:35 +00:00
}
void Daily : : updateGraphCombo ( )
{
ui - > graphCombo - > clear ( ) ;
gGraph * g ;
for ( int i = 0 ; i < GraphView - > size ( ) ; i + + ) {
g = ( * GraphView ) [ i ] ;
if ( g - > isEmpty ( ) ) continue ;
2014-08-05 11:17:03 +00:00
2012-01-03 16:29:35 +00:00
if ( g - > visible ( ) ) {
ui - > graphCombo - > addItem ( * icon_on , g - > title ( ) , true ) ;
} else {
ui - > graphCombo - > addItem ( * icon_off , g - > title ( ) , false ) ;
}
}
ui - > graphCombo - > setCurrentIndex ( 0 ) ;
2014-08-05 11:17:03 +00:00
2012-01-03 16:29:35 +00:00
updateCube ( ) ;
}
2014-08-05 11:17:03 +00:00
void Daily : : on_eventsCombo_activated ( int index )
{
if ( index < 0 )
return ;
ChannelID code = ui - > eventsCombo - > itemData ( index , Qt : : UserRole ) . toUInt ( ) ;
schema : : Channel * chan = & schema : : channel [ code ] ;
bool b = ! chan - > enabled ( ) ;
chan - > setEnabled ( b ) ;
ui - > eventsCombo - > setItemIcon ( index , b ? * icon_on : * icon_off ) ;
GraphView - > redraw ( ) ;
}
2019-05-08 21:06:17 +00:00
void Daily : : on_toggleEvents_clicked ( bool /*checked*/ )
2014-08-05 11:17:03 +00:00
{
QString s ;
2019-05-08 21:06:17 +00:00
//QIcon *icon=checked ? icon_on : icon_off;
2014-08-05 11:17:03 +00:00
2019-03-10 16:03:19 +00:00
if ( ui - > toggleEvents = = nullptr )
qDebug ( ) < < " ToggleEvents clicked with null toggleEvents ptr " ;
else
qDebug ( ) < < " ToggleEvents clicked with non-null toggleEvents ptr " ;
return ;
/*
2014-08-05 11:17:03 +00:00
ui - > toggleEvents - > setArrowType ( checked ? Qt : : DownArrow : Qt : : UpArrow ) ;
ui - > toggleEvents - > setToolTip ( checked ? tr ( " Hide all events " ) : tr ( " Show all events " ) ) ;
// ui->toggleEvents->blockSignals(true);
// ui->toggleEvents->setChecked(false);
// ui->toggleEvents->blockSignals(false);
for ( int i = 0 ; i < ui - > eventsCombo - > count ( ) ; i + + ) {
// s=ui->eventsCombo->itemText(i);
ui - > eventsCombo - > setItemIcon ( i , * icon ) ;
ChannelID code = ui - > eventsCombo - > itemData ( i ) . toUInt ( ) ;
schema : : channel [ code ] . setEnabled ( checked ) ;
}
updateCube ( ) ;
GraphView - > redraw ( ) ;
2019-03-10 16:03:19 +00:00
*/
2014-08-05 11:17:03 +00:00
}
2014-09-24 01:42:14 +00:00
//void Daily::on_sessionWidget_itemSelectionChanged()
//{
// int row = ui->sessionWidget->currentRow();
// QTableWidgetItem *item = ui->sessionWidget->item(row, 0);
// if (item) {
// QDate date = item->data(Qt::UserRole).toDate();
// LoadDate(date);
// qDebug() << "Clicked.. changing date to" << date;
// // ui->sessionWidget->setCurrentItem(item);
// }
//}
2014-10-02 11:22:30 +00:00
void Daily : : on_splitter_2_splitterMoved ( int , int )
{
int size = ui - > splitter_2 - > sizes ( ) [ 0 ] ;
if ( size = = 0 ) return ;
2019-03-10 16:03:19 +00:00
// qDebug() << "Left Panel width set to " << size;
2018-04-22 12:06:48 +00:00
AppSetting - > setDailyPanelWidth ( size ) ;
2014-10-02 11:22:30 +00:00
}