2014-04-09 21:01:57 +00:00
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim : set ts = 8 sts = 4 et sw = 4 tw = 99 :
*
* Preferences Dialog
*
* Copyright ( c ) 2011 - 2014 Mark Watkins < jedimark @ users . sourceforge . net >
*
* This file is subject to the terms and conditions of the GNU General Public
* License . See the file COPYING in the main directory of the Linux
* distribution for more details . */
2011-08-03 03:09:57 +00:00
# include <QLabel>
# include <QColorDialog>
2011-10-05 12:38:32 +00:00
# include <QMessageBox>
2011-10-21 05:50:31 +00:00
# include <QStatusBar>
2011-11-07 04:27:49 +00:00
# include <QProcess>
2011-11-07 10:54:47 +00:00
# include <QDesktopServices>
2011-11-20 23:39:55 +00:00
# include <QFileDialog>
# include <QTextStream>
2011-11-30 12:58:41 +00:00
# include <QCalendarWidget>
2014-05-28 16:23:40 +00:00
# include <QMenuBar>
2011-08-02 22:37:15 +00:00
# include "preferencesdialog.h"
2011-11-30 12:58:41 +00:00
# include "common_gui.h"
2011-11-27 14:35:25 +00:00
# include <Graphs/gGraphView.h>
# include <mainwindow.h>
2011-08-02 22:37:15 +00:00
# include "ui_preferencesdialog.h"
2011-08-03 03:09:57 +00:00
# include "SleepLib/machine_common.h"
2011-08-02 22:37:15 +00:00
2014-04-17 05:52:25 +00:00
extern QFont * defaultfont ;
extern QFont * mediumfont ;
extern QFont * bigfont ;
extern MainWindow * mainwin ;
2011-10-05 10:44:41 +00:00
2014-04-10 18:15:14 +00:00
typedef QMessageBox : : StandardButton StandardButton ;
typedef QMessageBox : : StandardButtons StandardButtons ;
2014-04-17 05:52:25 +00:00
MaskProfile masks [ ] = {
{ Mask_Unknown , QObject : : tr ( " Unspecified " ) , { { 4 , 25 } , { 8 , 25 } , { 12 , 25 } , { 16 , 25 } , { 20 , 25 } } } ,
{ Mask_NasalPillows , QObject : : tr ( " Nasal Pillows " ) , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ Mask_Hybrid , QObject : : tr ( " Hybrid F/F Mask " ) , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ Mask_StandardNasal , QObject : : tr ( " Nasal Interface " ) , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ Mask_FullFace , QObject : : tr ( " Full-Face Mask " ) , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
2011-11-30 06:01:38 +00:00
} ;
2014-04-17 05:52:25 +00:00
const int num_masks = sizeof ( masks ) / sizeof ( MaskProfile ) ;
2011-11-30 06:01:38 +00:00
2014-04-17 05:52:25 +00:00
PreferencesDialog : : PreferencesDialog ( QWidget * parent , Profile * _profile ) :
2011-08-02 22:37:15 +00:00
QDialog ( parent ) ,
2011-09-11 06:16:45 +00:00
ui ( new Ui : : PreferencesDialog ) ,
profile ( _profile )
2011-08-02 22:37:15 +00:00
{
ui - > setupUi ( this ) ;
2011-11-30 06:01:38 +00:00
ui - > leakProfile - > setRowCount ( 5 ) ;
ui - > leakProfile - > setColumnCount ( 2 ) ;
ui - > leakProfile - > horizontalHeader ( ) - > setStretchLastSection ( true ) ;
2014-04-17 05:52:25 +00:00
ui - > leakProfile - > setColumnWidth ( 0 , 100 ) ;
2011-11-30 06:01:38 +00:00
ui - > maskTypeCombo - > clear ( ) ;
2012-01-06 16:07:54 +00:00
//ui->customEventGroupbox->setEnabled(false);
2011-12-13 08:51:56 +00:00
2014-04-17 05:52:25 +00:00
QString masktype = tr ( " Nasal Pillows " ) ;
2011-12-21 12:47:47 +00:00
//masktype=PROFILEMaskType
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < num_masks ; i + + ) {
2011-11-30 06:01:38 +00:00
ui - > maskTypeCombo - > addItem ( masks [ i ] . name ) ;
2011-12-02 05:54:25 +00:00
/*if (masktype==masks[i].name) {
2011-11-30 06:01:38 +00:00
ui - > maskTypeCombo - > setCurrentIndex ( i ) ;
on_maskTypeCombo_activated ( i ) ;
2011-12-02 05:54:25 +00:00
} */
2011-11-30 06:01:38 +00:00
}
2014-04-17 05:52:25 +00:00
2014-07-30 20:25:06 +00:00
//#ifdef LOCK_RESMED_SESSIONS
// QList<Machine *> machines = p_profile->GetMachines(MT_CPAP);
// for (QList<Machine *>::iterator it = machines.begin(); it != machines.end(); ++it) {
// const QString & mclass=(*it)->loaderName();
// if (mclass == STR_MACH_ResMed) {
// ui->combineSlider->setEnabled(false);
// ui->IgnoreSlider->setEnabled(false);
// ui->timeEdit->setEnabled(false);
// break;
// }
// }
//#endif
2014-05-04 18:23:38 +00:00
2014-04-17 05:52:25 +00:00
QLocale locale = QLocale : : system ( ) ;
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
2011-11-30 12:58:41 +00:00
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
2014-04-17 05:52:25 +00:00
shortformat . replace ( " yy " , " yyyy " ) ;
2011-11-30 12:58:41 +00:00
}
2014-04-17 05:52:25 +00:00
2011-11-30 12:58:41 +00:00
ui - > startedUsingMask - > setDisplayFormat ( shortformat ) ;
2014-04-17 05:52:25 +00:00
Qt : : DayOfWeek dow = firstDayOfWeekFromLocale ( ) ;
2011-11-30 12:58:41 +00:00
ui - > startedUsingMask - > calendarWidget ( ) - > setFirstDayOfWeek ( dow ) ;
2014-08-06 14:06:44 +00:00
//ui->tabWidget->removeTab(ui->tabWidget->indexOf(ui->colourTab));
2011-11-30 12:58:41 +00:00
// Stop both calendar drop downs highlighting weekends in red
QTextCharFormat format = ui - > startedUsingMask - > calendarWidget ( ) - > weekdayTextFormat ( Qt : : Saturday ) ;
format . setForeground ( QBrush ( Qt : : black , Qt : : SolidPattern ) ) ;
ui - > startedUsingMask - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Saturday , format ) ;
ui - > startedUsingMask - > calendarWidget ( ) - > setWeekdayTextFormat ( Qt : : Sunday , format ) ;
2011-11-30 06:01:38 +00:00
//ui->leakProfile->setColumnWidth(1,ui->leakProfile->width()/2);
2011-10-05 12:43:34 +00:00
2014-04-23 13:19:56 +00:00
Q_ASSERT ( profile ! = nullptr ) ;
2011-10-02 04:23:17 +00:00
ui - > tabWidget - > setCurrentIndex ( 0 ) ;
2011-09-08 09:50:05 +00:00
2011-10-02 04:23:17 +00:00
//i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
//ui->timeZoneCombo->setCurrentIndex(i);
2011-09-08 09:50:05 +00:00
2014-05-15 19:45:46 +00:00
ui - > showLeakRedline - > setChecked ( profile - > cpap - > showLeakRedline ( ) ) ;
ui - > leakRedlineSpinbox - > setValue ( profile - > cpap - > leakRedline ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > spo2Drop - > setValue ( profile - > oxi - > spO2DropPercentage ( ) ) ;
ui - > spo2DropTime - > setValue ( profile - > oxi - > spO2DropDuration ( ) ) ;
ui - > pulseChange - > setValue ( profile - > oxi - > pulseChangeBPM ( ) ) ;
ui - > pulseChangeTime - > setValue ( profile - > oxi - > pulseChangeDuration ( ) ) ;
ui - > oxiDiscardThreshold - > setValue ( profile - > oxi - > oxiDiscardThreshold ( ) ) ;
2011-12-24 05:55:44 +00:00
ui - > AddRERAtoAHI - > setChecked ( profile - > general - > calculateRDI ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > timeEdit - > setTime ( profile - > session - > daySplitTime ( ) ) ;
2014-04-17 05:52:25 +00:00
int val = profile - > session - > combineCloseSessions ( ) ;
2011-09-23 03:54:48 +00:00
ui - > combineSlider - > setValue ( val ) ;
2014-04-17 05:52:25 +00:00
if ( val > 0 ) {
2011-08-05 08:41:45 +00:00
ui - > combineLCD - > display ( val ) ;
2014-04-17 05:52:25 +00:00
} else { ui - > combineLCD - > display ( STR_GEN_Off ) ; }
2011-08-05 08:41:45 +00:00
2014-04-17 05:52:25 +00:00
val = profile - > session - > ignoreShortSessions ( ) ;
2011-09-23 03:54:48 +00:00
ui - > IgnoreSlider - > setValue ( val ) ;
2014-04-17 05:52:25 +00:00
if ( val > 0 ) {
2011-12-21 12:47:47 +00:00
ui - > IgnoreLCD - > display ( val ) ;
2014-04-17 05:52:25 +00:00
} else { ui - > IgnoreLCD - > display ( STR_GEN_Off ) ; }
2011-09-23 03:54:48 +00:00
2014-07-30 20:25:06 +00:00
ui - > LockSummarySessionSplitting - > setChecked ( profile - > session - > lockSummarySessions ( ) ) ;
2011-10-05 10:44:41 +00:00
ui - > applicationFont - > setCurrentFont ( QApplication : : font ( ) ) ;
2011-11-30 06:01:38 +00:00
//ui->applicationFont->setFont(QApplication::font());
2011-10-05 10:44:41 +00:00
ui - > applicationFontSize - > setValue ( QApplication : : font ( ) . pointSize ( ) ) ;
2014-04-17 05:52:25 +00:00
ui - > applicationFontBold - > setChecked ( QApplication : : font ( ) . weight ( ) = = QFont : : Bold ) ;
2011-10-05 10:44:41 +00:00
ui - > applicationFontItalic - > setChecked ( QApplication : : font ( ) . italic ( ) ) ;
ui - > graphFont - > setCurrentFont ( * defaultfont ) ;
2011-11-30 06:01:38 +00:00
//ui->graphFont->setFont(*defaultfont);
2011-10-05 10:44:41 +00:00
ui - > graphFontSize - > setValue ( defaultfont - > pointSize ( ) ) ;
2014-04-17 05:52:25 +00:00
ui - > graphFontBold - > setChecked ( defaultfont - > weight ( ) = = QFont : : Bold ) ;
2011-10-05 10:44:41 +00:00
ui - > graphFontItalic - > setChecked ( defaultfont - > italic ( ) ) ;
ui - > titleFont - > setCurrentFont ( * mediumfont ) ;
2011-11-30 06:01:38 +00:00
//ui->titleFont->setFont(*mediumfont);
2011-10-05 10:44:41 +00:00
ui - > titleFontSize - > setValue ( mediumfont - > pointSize ( ) ) ;
2014-04-17 05:52:25 +00:00
ui - > titleFontBold - > setChecked ( mediumfont - > weight ( ) = = QFont : : Bold ) ;
2011-10-05 10:44:41 +00:00
ui - > titleFontItalic - > setChecked ( mediumfont - > italic ( ) ) ;
ui - > bigFont - > setCurrentFont ( * bigfont ) ;
2011-11-30 06:01:38 +00:00
//ui->bigFont->setFont(*bigfont);
2011-10-05 10:44:41 +00:00
ui - > bigFontSize - > setValue ( bigfont - > pointSize ( ) ) ;
2014-04-17 05:52:25 +00:00
ui - > bigFontBold - > setChecked ( bigfont - > weight ( ) = = QFont : : Bold ) ;
2011-10-05 10:44:41 +00:00
ui - > bigFontItalic - > setChecked ( bigfont - > italic ( ) ) ;
2014-05-10 02:53:50 +00:00
ui - > lineThicknessSlider - > setValue ( profile - > appearance - > lineThickness ( ) * 2 ) ;
2011-12-21 12:47:47 +00:00
ui - > startedUsingMask - > setDate ( profile - > cpap - > maskStartDate ( ) ) ;
2011-12-02 05:54:25 +00:00
2011-12-21 12:47:47 +00:00
ui - > leakModeCombo - > setCurrentIndex ( profile - > cpap - > leakMode ( ) ) ;
2014-04-17 05:52:25 +00:00
int mt = ( int ) profile - > cpap - > maskType ( ) ;
2011-12-02 05:54:25 +00:00
ui - > maskTypeCombo - > setCurrentIndex ( mt ) ;
on_maskTypeCombo_activated ( mt ) ;
2011-11-30 12:58:41 +00:00
2014-07-20 13:25:57 +00:00
ui - > resyncMachineDetectedEvents - > setChecked ( profile - > cpap - > resyncFromUserFlagging ( ) ) ;
2011-11-30 12:58:41 +00:00
2011-12-21 12:47:47 +00:00
ui - > maskDescription - > setText ( profile - > cpap - > maskDescription ( ) ) ;
ui - > useAntiAliasing - > setChecked ( profile - > appearance - > antiAliasing ( ) ) ;
2013-01-18 08:37:17 +00:00
ui - > usePixmapCaching - > setChecked ( profile - > appearance - > usePixmapCaching ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > useSquareWavePlots - > setChecked ( profile - > appearance - > squareWavePlots ( ) ) ;
ui - > enableGraphSnapshots - > setChecked ( profile - > appearance - > graphSnapshots ( ) ) ;
2013-10-26 13:59:37 +00:00
ui - > graphTooltips - > setChecked ( profile - > appearance - > graphTooltips ( ) ) ;
ui - > allowYAxisScaling - > setChecked ( profile - > appearance - > allowYAxisScaling ( ) ) ;
2012-01-12 09:35:50 +00:00
ui - > skipLoginScreen - > setChecked ( PREF [ STR_GEN_SkipLogin ] . toBool ( ) ) ;
ui - > allowEarlyUpdates - > setChecked ( PREF [ STR_PREF_AllowEarlyUpdates ] . toBool ( ) ) ;
2011-11-30 09:08:45 +00:00
2012-01-19 15:18:34 +00:00
ui - > clockDrift - > setValue ( profile - > cpap - > clockDrift ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > skipEmptyDays - > setChecked ( profile - > general - > skipEmptyDays ( ) ) ;
ui - > enableMultithreading - > setChecked ( profile - > session - > multithreading ( ) ) ;
ui - > cacheSessionData - > setChecked ( profile - > session - > cacheSessions ( ) ) ;
ui - > animationsAndTransitionsCheckbox - > setChecked ( profile - > appearance - > animations ( ) ) ;
ui - > complianceGroupbox - > setChecked ( profile - > cpap - > showComplianceInfo ( ) ) ;
ui - > complianceHours - > setValue ( profile - > cpap - > complianceHours ( ) ) ;
2011-12-20 03:22:45 +00:00
2012-01-12 22:46:06 +00:00
ui - > prefCalcMiddle - > setCurrentIndex ( profile - > general - > prefCalcMiddle ( ) ) ;
ui - > prefCalcMax - > setCurrentIndex ( profile - > general - > prefCalcMax ( ) ) ;
2014-04-17 05:52:25 +00:00
float f = profile - > general - > prefCalcPercentile ( ) ;
2012-01-12 22:46:06 +00:00
ui - > prefCalcPercentile - > setValue ( f ) ;
2014-04-17 05:52:25 +00:00
ui - > tooltipTimeoutSlider - > setValue ( profile - > general - > tooltipTimeout ( ) / 50 ) ;
2013-11-09 03:13:15 +00:00
ui - > tooltipMS - > display ( profile - > general - > tooltipTimeout ( ) ) ;
2014-04-17 05:52:25 +00:00
ui - > scrollDampeningSlider - > setValue ( profile - > general - > scrollDampening ( ) / 10 ) ;
2013-11-09 03:13:15 +00:00
2014-04-17 05:52:25 +00:00
if ( profile - > general - > scrollDampening ( ) > 0 ) {
ui - > scrollDampDisplay - > display ( profile - > general - > scrollDampening ( ) ) ;
} else { ui - > scrollDampDisplay - > display ( STR_TR_Off ) ; }
2012-01-12 22:46:06 +00:00
2014-04-17 05:52:25 +00:00
bool bcd = profile - > session - > backupCardData ( ) ;
2012-01-05 04:37:22 +00:00
ui - > createSDBackups - > setChecked ( bcd ) ;
ui - > compressSDBackups - > setEnabled ( bcd ) ;
ui - > compressSDBackups - > setChecked ( profile - > session - > compressBackupData ( ) ) ;
ui - > compressSessionData - > setChecked ( profile - > session - > compressSessionData ( ) ) ;
2014-05-19 07:30:10 +00:00
ui - > ignoreOlderSessionsCheck - > setChecked ( profile - > session - > ignoreOlderSessions ( ) ) ;
ui - > ignoreOlderSessionsDate - > setDate ( profile - > session - > ignoreOlderSessionsDate ( ) . date ( ) ) ;
2012-01-05 04:37:22 +00:00
2011-12-21 12:47:47 +00:00
ui - > graphHeight - > setValue ( profile - > appearance - > graphHeight ( ) ) ;
2011-11-07 04:10:48 +00:00
2011-12-21 14:24:09 +00:00
ui - > automaticallyCheckUpdates - > setChecked ( PREF [ STR_GEN_UpdatesAutoCheck ] . toBool ( ) ) ;
2011-10-21 05:50:31 +00:00
2011-12-21 14:24:09 +00:00
ui - > updateCheckEvery - > setValue ( PREF [ STR_GEN_UpdateCheckFrequency ] . toInt ( ) ) ;
2014-04-17 05:52:25 +00:00
2011-12-21 14:24:09 +00:00
if ( PREF . contains ( STR_GEN_UpdatesLastChecked ) ) {
2011-10-21 05:50:31 +00:00
RefreshLastChecked ( ) ;
2014-04-17 05:52:25 +00:00
} else { ui - > updateLastChecked - > setText ( " Never " ) ; }
2011-10-05 10:44:41 +00:00
2011-11-30 06:01:38 +00:00
2011-12-21 12:47:47 +00:00
ui - > overlayFlagsCombo - > setCurrentIndex ( profile - > appearance - > overlayType ( ) ) ;
2013-11-19 04:42:10 +00:00
ui - > overviewLinecharts - > setCurrentIndex ( profile - > appearance - > overviewLinechartMode ( ) ) ;
2011-11-30 06:01:38 +00:00
2011-12-21 12:47:47 +00:00
ui - > oximetrySync - > setChecked ( profile - > oxi - > syncOximetry ( ) ) ;
2014-04-17 05:52:25 +00:00
int ot = ui - > oximetryType - > findText ( profile - > oxi - > oximeterType ( ) , Qt : : MatchExactly ) ;
if ( ot < 0 ) { ot = 0 ; }
2011-12-03 05:10:23 +00:00
ui - > oximetryType - > setCurrentIndex ( ot ) ;
2011-10-10 22:27:25 +00:00
2012-01-10 06:19:49 +00:00
ui - > ahiGraphWindowSize - > setEnabled ( false ) ;
2012-01-06 16:07:54 +00:00
ui - > ahiGraphWindowSize - > setValue ( profile - > cpap - > AHIWindow ( ) ) ;
ui - > ahiGraphZeroReset - > setChecked ( profile - > cpap - > AHIReset ( ) ) ;
ui - > customEventGroupbox - > setChecked ( profile - > cpap - > userEventFlagging ( ) ) ;
ui - > apneaDuration - > setValue ( profile - > cpap - > userEventDuration ( ) ) ;
ui - > apneaFlowRestriction - > setValue ( profile - > cpap - > userFlowRestriction ( ) ) ;
2014-07-20 05:24:49 +00:00
ui - > apneaDuration2 - > setValue ( profile - > cpap - > userEventDuration2 ( ) ) ;
ui - > apneaFlowRestriction2 - > setValue ( profile - > cpap - > userFlowRestriction2 ( ) ) ;
2012-01-10 23:28:29 +00:00
ui - > userEventDuplicates - > setChecked ( profile - > cpap - > userEventDuplicates ( ) ) ;
ui - > userEventDuplicates - > setVisible ( false ) ;
2012-01-06 16:07:54 +00:00
2014-07-20 09:22:31 +00:00
ui - > showUserFlagsInPie - > setChecked ( profile - > cpap - > userEventPieChart ( ) ) ;
2014-04-17 05:52:25 +00:00
/* QLocale locale=QLocale::system();
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
shortformat . replace ( " yy " , " yyyy " ) ;
} */
graphFilterModel = new MySortFilterProxyModel ( this ) ;
graphModel = new QStandardItemModel ( this ) ;
2011-11-27 14:35:25 +00:00
graphFilterModel - > setSourceModel ( graphModel ) ;
graphFilterModel - > setFilterCaseSensitivity ( Qt : : CaseInsensitive ) ;
graphFilterModel - > setFilterKeyColumn ( 0 ) ;
ui - > graphView - > setModel ( graphFilterModel ) ;
resetGraphModel ( ) ;
2014-07-20 10:30:33 +00:00
2014-08-06 14:06:44 +00:00
chanFilterModel = new MySortFilterProxyModel ( this ) ;
chanModel = new QStandardItemModel ( this ) ;
chanFilterModel - > setSourceModel ( chanModel ) ;
chanFilterModel - > setFilterCaseSensitivity ( Qt : : CaseInsensitive ) ;
chanFilterModel - > setFilterKeyColumn ( 0 ) ;
ui - > chanView - > setModel ( chanFilterModel ) ;
2011-08-05 07:52:32 +00:00
2014-08-06 14:06:44 +00:00
InitChanInfo ( ) ;
2011-08-02 22:37:15 +00:00
}
2011-08-03 03:09:57 +00:00
2014-08-06 14:06:44 +00:00
void PreferencesDialog : : InitChanInfo ( )
2011-08-03 03:09:57 +00:00
{
2014-08-06 14:06:44 +00:00
QHash < schema : : ChanType , int > toprows ;
2014-04-17 05:52:25 +00:00
2014-08-06 14:06:44 +00:00
chanModel - > clear ( ) ;
toplevel . clear ( ) ;
toprows . clear ( ) ;
2014-04-17 05:52:25 +00:00
2014-08-06 14:06:44 +00:00
QStandardItem * hdr = nullptr ;
toplevel [ schema : : SPAN ] = hdr = new QStandardItem ( tr ( " Span Events " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
toplevel [ schema : : FLAG ] = hdr = new QStandardItem ( tr ( " Flags " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
toplevel [ schema : : MINOR_FLAG ] = hdr = new QStandardItem ( tr ( " Minor Flags " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
toplevel [ schema : : WAVEFORM ] = hdr = new QStandardItem ( tr ( " Waveforms " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
toplevel [ schema : : DATA ] = hdr = new QStandardItem ( tr ( " Data Channels " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
toplevel [ schema : : SETTING ] = hdr = new QStandardItem ( tr ( " Settings Channels " ) ) ;
hdr - > setEditable ( false ) ;
chanModel - > appendRow ( hdr ) ;
ui - > chanView - > setAlternatingRowColors ( true ) ;
// ui->graphView->setFirstColumnSpanned(0,daily->index(),true); // Crashes on windows.. Why do I need this again?
2014-08-06 14:51:11 +00:00
chanModel - > setColumnCount ( 4 ) ;
2014-08-06 14:06:44 +00:00
QStringList headers ;
headers . append ( tr ( " Name " ) ) ;
headers . append ( tr ( " Color " ) ) ;
headers . append ( tr ( " Label " ) ) ;
headers . append ( tr ( " Details " ) ) ;
2014-08-06 14:51:11 +00:00
// headers.append(tr("ID"));
2014-08-06 14:06:44 +00:00
chanModel - > setHorizontalHeaderLabels ( headers ) ;
ui - > chanView - > setColumnWidth ( 0 , 200 ) ;
ui - > chanView - > setColumnWidth ( 1 , 50 ) ;
2014-08-06 14:51:11 +00:00
ui - > chanView - > setColumnWidth ( 2 , 100 ) ;
2014-08-06 14:06:44 +00:00
ui - > chanView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
ui - > chanView - > setSelectionBehavior ( QAbstractItemView : : SelectItems ) ;
QHash < QString , schema : : Channel * > : : iterator ci ;
int row = 0 ;
for ( ci = schema : : channel . names . begin ( ) ; ci ! = schema : : channel . names . end ( ) ; ci + + ) {
schema : : Channel * chan = ci . value ( ) ;
QList < QStandardItem * > items ;
QStandardItem * it = new QStandardItem ( chan - > fullname ( ) ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( chan - > enabled ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( true ) ;
it - > setData ( chan - > id ( ) , Qt : : UserRole ) ;
items . push_back ( it ) ;
it = new QStandardItem ( ) ;
it - > setBackground ( QBrush ( chan - > defaultColor ( ) ) ) ;
it - > setEditable ( false ) ;
it - > setData ( chan - > defaultColor ( ) . rgba ( ) , Qt : : UserRole ) ;
it - > setSelectable ( false ) ;
items . push_back ( it ) ;
it = new QStandardItem ( chan - > label ( ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( chan - > description ( ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
2014-08-06 14:51:11 +00:00
// it = new QStandardItem(QString().number(chan->id(),16));
// it->setEditable(false);
// items.push_back(it);
2014-08-06 14:06:44 +00:00
row = toprows [ chan - > type ( ) ] + + ;
toplevel [ chan - > type ( ) ] - > insertRow ( row , items ) ;
2011-08-03 03:09:57 +00:00
}
2014-08-06 14:06:44 +00:00
ui - > chanView - > expandAll ( ) ;
}
PreferencesDialog : : ~ PreferencesDialog ( )
{
disconnect ( graphModel , SIGNAL ( itemChanged ( QStandardItem * ) ) , this ,
SLOT ( graphModel_changed ( QStandardItem * ) ) ) ;
delete ui ;
2011-08-03 03:09:57 +00:00
}
2011-08-05 07:52:32 +00:00
2012-01-10 06:19:49 +00:00
bool PreferencesDialog : : Save ( )
2011-08-05 07:52:32 +00:00
{
2014-04-17 05:52:25 +00:00
bool recalc_events = false ;
bool needs_restart = false ;
2011-11-07 04:10:48 +00:00
2014-04-17 05:52:25 +00:00
if ( ui - > ahiGraphZeroReset - > isChecked ( ) ! = profile - > cpap - > AHIReset ( ) ) { recalc_events = true ; }
2012-01-10 06:19:49 +00:00
2014-04-17 05:52:25 +00:00
if ( ui - > useSquareWavePlots - > isChecked ( ) ! = profile - > appearance - > squareWavePlots ( ) ) {
needs_restart = true ;
2011-11-30 06:01:38 +00:00
}
2014-04-17 05:52:25 +00:00
if ( ( profile - > session - > daySplitTime ( ) ! = ui - > timeEdit - > time ( ) ) | |
( profile - > session - > combineCloseSessions ( ) ! = ui - > combineSlider - > value ( ) ) | |
( profile - > session - > ignoreShortSessions ( ) ! = ui - > IgnoreSlider - > value ( ) ) ) {
needs_restart = true ;
2012-01-10 06:19:49 +00:00
}
2014-04-17 05:52:25 +00:00
2014-07-30 20:25:06 +00:00
if ( profile - > session - > lockSummarySessions ( ) ! = ui - > LockSummarySessionSplitting - > isChecked ( ) ) {
needs_restart = true ;
}
2014-07-20 09:22:31 +00:00
if ( profile - > cpap - > userEventPieChart ( ) ! = ui - > showUserFlagsInPie - > isChecked ( ) ) {
// lazy.. fix me
needs_restart = true ;
}
2012-01-10 06:19:49 +00:00
if ( profile - > general - > calculateRDI ( ) ! = ui - > AddRERAtoAHI - > isChecked ( ) ) {
2012-01-10 10:00:08 +00:00
//recalc_events=true;
2014-04-17 05:52:25 +00:00
needs_restart = true ;
2012-01-10 06:19:49 +00:00
}
2014-04-17 05:52:25 +00:00
if ( ( profile - > general - > prefCalcMiddle ( ) ! = ui - > prefCalcMiddle - > currentIndex ( ) )
| | ( profile - > general - > prefCalcMax ( ) ! = ui - > prefCalcMax - > currentIndex ( ) )
| | ( profile - > general - > prefCalcPercentile ( ) ! = ui - > prefCalcPercentile - > value ( ) ) ) {
needs_restart = true ;
2012-01-12 22:46:06 +00:00
}
2012-01-10 06:19:49 +00:00
if ( profile - > cpap - > userEventFlagging ( ) & &
2014-04-17 05:52:25 +00:00
( profile - > cpap - > userEventDuration ( ) ! = ui - > apneaDuration - > value ( ) | |
2014-07-20 05:24:49 +00:00
profile - > cpap - > userEventDuration2 ( ) ! = ui - > apneaDuration2 - > value ( ) | |
2014-04-17 05:52:25 +00:00
profile - > cpap - > userEventDuplicates ( ) ! = ui - > userEventDuplicates - > isChecked ( ) | |
2014-07-20 05:24:49 +00:00
profile - > cpap - > userFlowRestriction2 ( ) ! = ui - > apneaFlowRestriction2 - > value ( ) | |
2014-04-17 05:52:25 +00:00
profile - > cpap - > userFlowRestriction ( ) ! = ui - > apneaFlowRestriction - > value ( ) ) ) {
recalc_events = true ;
}
2012-01-10 06:19:49 +00:00
// Restart if turning user event flagging on/off
2014-04-17 05:52:25 +00:00
if ( profile - > cpap - > userEventFlagging ( ) ! = ui - > customEventGroupbox - > isChecked ( ) ) {
// if (profile->cpap->userEventFlagging()) {
// Don't bother recalculating, just switch off
needs_restart = true ;
2012-01-11 09:54:54 +00:00
//} else
2014-04-17 05:52:25 +00:00
recalc_events = true ;
2012-01-10 06:19:49 +00:00
}
2012-01-10 06:28:03 +00:00
2014-04-17 05:52:25 +00:00
if ( profile - > session - > compressSessionData ( ) ! = ui - > compressSessionData - > isChecked ( ) ) {
recalc_events = true ;
}
2012-01-10 06:28:03 +00:00
2012-01-10 06:19:49 +00:00
if ( recalc_events ) {
2014-07-11 12:09:38 +00:00
if ( p_profile - > countDays ( MT_CPAP , p_profile - > FirstDay ( ) , p_profile - > LastDay ( ) ) > 0 ) {
2014-04-17 05:52:25 +00:00
if ( QMessageBox : : question ( this , tr ( " Data Reindex Required " ) ,
tr ( " A data reindexing proceedure is required to apply these changes. This operation may take a couple of minutes to complete. \n \n Are you sure you want to make these changes? " ) ,
QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
2012-01-11 09:10:40 +00:00
return false ;
}
2014-04-17 05:52:25 +00:00
} else { recalc_events = false ; }
2012-01-10 06:19:49 +00:00
} else if ( needs_restart ) {
2014-04-17 05:52:25 +00:00
if ( QMessageBox : : question ( this , tr ( " Restart Required " ) ,
tr ( " One or more of the changes you have made will require this application to be restarted, \n in order for these changes to come into effect. \n \n Would you like do this now? " ) ,
QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
2012-01-10 06:19:49 +00:00
return false ;
}
}
2014-07-20 09:22:31 +00:00
profile - > cpap - > setUserEventPieChart ( ui - > showUserFlagsInPie - > isChecked ( ) ) ;
2014-07-30 20:25:06 +00:00
profile - > session - > setLockSummarySessions ( ui - > LockSummarySessionSplitting - > isChecked ( ) ) ;
2014-07-20 09:22:31 +00:00
2013-10-26 13:59:37 +00:00
profile - > appearance - > setAllowYAxisScaling ( ui - > allowYAxisScaling - > isChecked ( ) ) ;
profile - > appearance - > setGraphTooltips ( ui - > graphTooltips - > isChecked ( ) ) ;
2012-01-10 06:19:49 +00:00
profile - > appearance - > setAntiAliasing ( ui - > useAntiAliasing - > isChecked ( ) ) ;
2013-01-18 08:37:17 +00:00
profile - > appearance - > setUsePixmapCaching ( ui - > usePixmapCaching - > isChecked ( ) ) ;
2012-01-10 06:19:49 +00:00
profile - > appearance - > setSquareWavePlots ( ui - > useSquareWavePlots - > isChecked ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > appearance - > setGraphSnapshots ( ui - > enableGraphSnapshots - > isChecked ( ) ) ;
2014-05-10 02:53:50 +00:00
profile - > appearance - > setLineThickness ( float ( ui - > lineThicknessSlider - > value ( ) ) / 2.0 ) ;
2011-12-21 12:47:47 +00:00
profile - > general - > setSkipEmptyDays ( ui - > skipEmptyDays - > isChecked ( ) ) ;
2013-11-09 03:13:15 +00:00
2014-04-17 05:52:25 +00:00
profile - > general - > setTooltipTimeout ( ui - > tooltipTimeoutSlider - > value ( ) * 50 ) ;
profile - > general - > setScrollDampening ( ui - > scrollDampeningSlider - > value ( ) * 10 ) ;
2012-05-16 17:04:22 +00:00
2011-12-21 12:47:47 +00:00
profile - > session - > setMultithreading ( ui - > enableMultithreading - > isChecked ( ) ) ;
profile - > session - > setCacheSessions ( ui - > cacheSessionData - > isChecked ( ) ) ;
profile - > cpap - > setMaskDescription ( ui - > maskDescription - > text ( ) ) ;
profile - > appearance - > setAnimations ( ui - > animationsAndTransitionsCheckbox - > isChecked ( ) ) ;
2014-05-15 19:45:46 +00:00
profile - > cpap - > setShowLeakRedline ( ui - > showLeakRedline - > isChecked ( ) ) ;
profile - > cpap - > setLeakRedline ( ui - > leakRedlineSpinbox - > value ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > cpap - > setShowComplianceInfo ( ui - > complianceGroupbox - > isChecked ( ) ) ;
profile - > cpap - > setComplianceHours ( ui - > complianceHours - > value ( ) ) ;
profile - > cpap - > setMaskStartDate ( ui - > startedUsingMask - > date ( ) ) ;
profile - > appearance - > setGraphHeight ( ui - > graphHeight - > value ( ) ) ;
2012-01-12 22:46:06 +00:00
profile - > general - > setPrefCalcMiddle ( ui - > prefCalcMiddle - > currentIndex ( ) ) ;
profile - > general - > setPrefCalcMax ( ui - > prefCalcMax - > currentIndex ( ) ) ;
profile - > general - > setPrefCalcPercentile ( ui - > prefCalcPercentile - > value ( ) ) ;
2011-08-05 07:52:32 +00:00
2012-01-10 06:19:49 +00:00
profile - > general - > setCalculateRDI ( ui - > AddRERAtoAHI - > isChecked ( ) ) ;
2012-01-05 04:37:22 +00:00
profile - > session - > setBackupCardData ( ui - > createSDBackups - > isChecked ( ) ) ;
profile - > session - > setCompressBackupData ( ui - > compressSDBackups - > isChecked ( ) ) ;
profile - > session - > setCompressSessionData ( ui - > compressSessionData - > isChecked ( ) ) ;
2011-12-24 05:55:44 +00:00
2011-12-21 12:47:47 +00:00
profile - > session - > setCombineCloseSessions ( ui - > combineSlider - > value ( ) ) ;
profile - > session - > setIgnoreShortSessions ( ui - > IgnoreSlider - > value ( ) ) ;
profile - > session - > setDaySplitTime ( ui - > timeEdit - > time ( ) ) ;
2014-05-19 07:30:10 +00:00
profile - > session - > setIgnoreOlderSessions ( ui - > ignoreOlderSessionsCheck - > isChecked ( ) ) ;
profile - > session - > setIgnoreOlderSessionsDate ( ui - > ignoreOlderSessionsDate - > date ( ) ) ;
2011-11-30 06:01:38 +00:00
2012-01-19 15:18:34 +00:00
profile - > cpap - > setClockDrift ( ui - > clockDrift - > value ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > appearance - > setOverlayType ( ( OverlayDisplayType ) ui - > overlayFlagsCombo - > currentIndex ( ) ) ;
2014-04-17 05:52:25 +00:00
profile - > appearance - > setOverviewLinechartMode ( ( OverviewLinechartModes )
ui - > overviewLinecharts - > currentIndex ( ) ) ;
2013-11-19 04:42:10 +00:00
2011-12-21 12:47:47 +00:00
profile - > cpap - > setLeakMode ( ui - > leakModeCombo - > currentIndex ( ) ) ;
profile - > cpap - > setMaskType ( ( MaskType ) ui - > maskTypeCombo - > currentIndex ( ) ) ;
2011-11-30 06:01:38 +00:00
2011-12-21 12:47:47 +00:00
profile - > oxi - > setSyncOximetry ( ui - > oximetrySync - > isChecked ( ) ) ;
2014-04-17 05:52:25 +00:00
int oxigrp = ui - > oximetrySync - > isChecked ( ) ? 0 : 1 ;
gGraphView * gv = mainwin - > getDaily ( ) - > graphView ( ) ;
2014-07-16 17:12:52 +00:00
gGraph * g = gv - > findGraph ( schema : : channel [ OXI_Pulse ] . code ( ) ) ;
2014-04-17 05:52:25 +00:00
2011-11-30 06:01:38 +00:00
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2014-04-17 05:52:25 +00:00
2014-07-16 17:12:52 +00:00
g = gv - > findGraph ( schema : : channel [ OXI_SPO2 ] . code ( ) ) ;
2014-04-17 05:52:25 +00:00
2011-11-30 06:01:38 +00:00
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2014-04-17 05:52:25 +00:00
2014-07-16 17:12:52 +00:00
g = gv - > findGraph ( schema : : channel [ OXI_Plethy ] . code ( ) ) ;
2014-04-17 05:52:25 +00:00
2011-11-30 06:01:38 +00:00
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2011-12-21 12:47:47 +00:00
profile - > oxi - > setOximeterType ( ui - > oximetryType - > currentText ( ) ) ;
2011-11-28 04:05:09 +00:00
2011-12-21 12:47:47 +00:00
profile - > oxi - > setSpO2DropPercentage ( ui - > spo2Drop - > value ( ) ) ;
profile - > oxi - > setSpO2DropDuration ( ui - > spo2DropTime - > value ( ) ) ;
profile - > oxi - > setPulseChangeBPM ( ui - > pulseChange - > value ( ) ) ;
profile - > oxi - > setPulseChangeDuration ( ui - > pulseChangeTime - > value ( ) ) ;
profile - > oxi - > setOxiDiscardThreshold ( ui - > oxiDiscardThreshold - > value ( ) ) ;
2011-11-18 09:05:22 +00:00
2012-01-06 16:07:54 +00:00
profile - > cpap - > setAHIWindow ( ui - > ahiGraphWindowSize - > value ( ) ) ;
profile - > cpap - > setAHIReset ( ui - > ahiGraphZeroReset - > isChecked ( ) ) ;
profile - > cpap - > setUserEventFlagging ( ui - > customEventGroupbox - > isChecked ( ) ) ;
2012-01-10 06:19:49 +00:00
2014-07-20 13:25:57 +00:00
profile - > cpap - > setResyncFromUserFlagging ( ui - > resyncMachineDetectedEvents - > isChecked ( ) ) ;
2012-01-06 16:07:54 +00:00
profile - > cpap - > setUserEventDuration ( ui - > apneaDuration - > value ( ) ) ;
profile - > cpap - > setUserFlowRestriction ( ui - > apneaFlowRestriction - > value ( ) ) ;
2014-07-20 05:24:49 +00:00
profile - > cpap - > setUserEventDuration2 ( ui - > apneaDuration2 - > value ( ) ) ;
profile - > cpap - > setUserFlowRestriction2 ( ui - > apneaFlowRestriction2 - > value ( ) ) ;
2012-01-10 23:28:29 +00:00
profile - > cpap - > setUserEventDuplicates ( ui - > userEventDuplicates - > isChecked ( ) ) ;
2012-01-06 16:07:54 +00:00
2014-04-17 05:52:25 +00:00
PREF [ STR_GEN_SkipLogin ] = ui - > skipLoginScreen - > isChecked ( ) ;
2011-11-07 04:10:48 +00:00
2014-04-17 05:52:25 +00:00
PREF [ STR_GEN_UpdatesAutoCheck ] = ui - > automaticallyCheckUpdates - > isChecked ( ) ;
PREF [ STR_GEN_UpdateCheckFrequency ] = ui - > updateCheckEvery - > value ( ) ;
PREF [ STR_PREF_AllowEarlyUpdates ] = ui - > allowEarlyUpdates - > isChecked ( ) ;
2011-10-21 05:50:31 +00:00
2014-04-17 05:52:25 +00:00
PREF [ " Fonts_Application_Name " ] = ui - > applicationFont - > currentText ( ) ;
PREF [ " Fonts_Application_Size " ] = ui - > applicationFontSize - > value ( ) ;
PREF [ " Fonts_Application_Bold " ] = ui - > applicationFontBold - > isChecked ( ) ;
PREF [ " Fonts_Application_Italic " ] = ui - > applicationFontItalic - > isChecked ( ) ;
2011-10-05 10:44:41 +00:00
2014-05-28 16:23:40 +00:00
2014-04-17 05:52:25 +00:00
PREF [ " Fonts_Graph_Name " ] = ui - > graphFont - > currentText ( ) ;
PREF [ " Fonts_Graph_Size " ] = ui - > graphFontSize - > value ( ) ;
PREF [ " Fonts_Graph_Bold " ] = ui - > graphFontBold - > isChecked ( ) ;
PREF [ " Fonts_Graph_Italic " ] = ui - > graphFontItalic - > isChecked ( ) ;
2011-10-05 10:44:41 +00:00
2014-04-17 05:52:25 +00:00
PREF [ " Fonts_Title_Name " ] = ui - > titleFont - > currentText ( ) ;
PREF [ " Fonts_Title_Size " ] = ui - > titleFontSize - > value ( ) ;
PREF [ " Fonts_Title_Bold " ] = ui - > titleFontBold - > isChecked ( ) ;
PREF [ " Fonts_Title_Italic " ] = ui - > titleFontItalic - > isChecked ( ) ;
2011-10-05 10:44:41 +00:00
2014-04-17 05:52:25 +00:00
PREF [ " Fonts_Big_Name " ] = ui - > bigFont - > currentText ( ) ;
PREF [ " Fonts_Big_Size " ] = ui - > bigFontSize - > value ( ) ;
PREF [ " Fonts_Big_Bold " ] = ui - > bigFontBold - > isChecked ( ) ;
PREF [ " Fonts_Big_Italic " ] = ui - > bigFontItalic - > isChecked ( ) ;
2011-10-05 10:44:41 +00:00
2014-04-17 05:52:25 +00:00
QFont font = ui - > applicationFont - > currentFont ( ) ;
2011-10-05 10:44:41 +00:00
font . setPointSize ( ui - > applicationFontSize - > value ( ) ) ;
2014-04-17 05:52:25 +00:00
font . setWeight ( ui - > applicationFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
2011-10-05 10:44:41 +00:00
font . setItalic ( ui - > applicationFontItalic - > isChecked ( ) ) ;
QApplication : : setFont ( font ) ;
2014-05-28 16:23:40 +00:00
mainwin - > menuBar ( ) - > setFont ( font ) ;
2011-10-05 10:44:41 +00:00
2014-04-17 05:52:25 +00:00
* defaultfont = ui - > graphFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
defaultfont - > setPointSize ( ui - > graphFontSize - > value ( ) ) ;
2014-04-17 05:52:25 +00:00
defaultfont - > setWeight ( ui - > graphFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
2011-10-05 10:44:41 +00:00
defaultfont - > setItalic ( ui - > graphFontItalic - > isChecked ( ) ) ;
2014-04-17 05:52:25 +00:00
* mediumfont = ui - > titleFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
mediumfont - > setPointSize ( ui - > titleFontSize - > value ( ) ) ;
2014-04-17 05:52:25 +00:00
mediumfont - > setWeight ( ui - > titleFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
2011-10-05 10:44:41 +00:00
mediumfont - > setItalic ( ui - > titleFontItalic - > isChecked ( ) ) ;
2014-04-17 05:52:25 +00:00
* bigfont = ui - > bigFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
bigfont - > setPointSize ( ui - > bigFontSize - > value ( ) ) ;
2014-04-17 05:52:25 +00:00
bigfont - > setWeight ( ui - > bigFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
2011-10-05 10:44:41 +00:00
bigfont - > setItalic ( ui - > bigFontItalic - > isChecked ( ) ) ;
2014-04-17 05:52:25 +00:00
2014-08-06 14:06:44 +00:00
int toprows = chanModel - > rowCount ( ) ;
bool ok ;
for ( int i = 0 ; i < toprows ; i + + ) {
QStandardItem * topitem = chanModel - > item ( i , 0 ) ;
if ( ! topitem ) continue ;
int rows = topitem - > rowCount ( ) ;
for ( int j = 0 ; j < rows ; + + j ) {
QStandardItem * item = topitem - > child ( j , 0 ) ;
if ( ! item ) continue ;
ChannelID id = item - > data ( Qt : : UserRole ) . toUInt ( & ok ) ;
schema : : Channel & chan = schema : : channel [ id ] ;
if ( chan . isNull ( ) ) continue ;
chan . setEnabled ( item - > checkState ( ) = = Qt : : Checked ? true : false ) ;
chan . setFullname ( item - > text ( ) ) ;
chan . setDefaultColor ( QColor ( topitem - > child ( j , 1 ) - > data ( Qt : : UserRole ) . toUInt ( ) ) ) ;
chan . setLabel ( topitem - > child ( j , 2 ) - > text ( ) ) ;
chan . setDescription ( topitem - > child ( j , 3 ) - > text ( ) ) ;
2011-09-23 05:22:52 +00:00
}
}
2011-11-08 12:42:30 +00:00
//qDebug() << "TODO: Save channels.xml to update channel data";
2011-09-23 03:54:48 +00:00
2013-10-26 14:09:06 +00:00
PREF . Save ( ) ;
2014-07-11 12:09:38 +00:00
p_profile - > Save ( ) ;
2011-11-07 04:10:48 +00:00
2012-01-10 06:19:49 +00:00
if ( recalc_events ) {
// send a signal instead?
mainwin - > reprocessEvents ( needs_restart ) ;
2012-01-19 15:18:34 +00:00
} else if ( needs_restart ) {
2014-07-20 09:22:31 +00:00
p_profile - > removeLock ( ) ;
2012-01-19 15:18:34 +00:00
mainwin - > RestartApplication ( ) ;
2012-01-10 06:19:49 +00:00
} else {
2012-01-19 15:18:34 +00:00
mainwin - > getDaily ( ) - > LoadDate ( mainwin - > getDaily ( ) - > getDate ( ) ) ;
2014-06-22 03:54:56 +00:00
// Save early.. just in case..
mainwin - > getDaily ( ) - > graphView ( ) - > SaveSettings ( " Daily " ) ;
mainwin - > getOverview ( ) - > graphView ( ) - > SaveSettings ( " Overview " ) ;
2011-11-07 04:10:48 +00:00
}
2014-04-17 05:52:25 +00:00
2012-01-10 06:19:49 +00:00
return true ;
2011-08-05 07:52:32 +00:00
}
2011-09-23 03:54:48 +00:00
void PreferencesDialog : : on_combineSlider_valueChanged ( int position )
2011-08-05 07:52:32 +00:00
{
2014-04-17 05:52:25 +00:00
if ( position > 0 ) {
2011-08-05 07:52:32 +00:00
ui - > combineLCD - > display ( position ) ;
2014-04-17 05:52:25 +00:00
} else { ui - > combineLCD - > display ( STR_GEN_Off ) ; }
2011-08-05 07:52:32 +00:00
}
2011-09-23 03:54:48 +00:00
void PreferencesDialog : : on_IgnoreSlider_valueChanged ( int position )
2011-08-05 07:52:32 +00:00
{
2014-04-17 05:52:25 +00:00
if ( position > 0 ) {
2011-08-05 07:52:32 +00:00
ui - > IgnoreLCD - > display ( position ) ;
2014-04-17 05:52:25 +00:00
} else { ui - > IgnoreLCD - > display ( STR_GEN_Off ) ; }
2011-08-05 07:52:32 +00:00
}
2011-10-05 10:44:41 +00:00
2011-10-21 05:50:31 +00:00
# include "mainwindow.h"
2014-04-17 05:52:25 +00:00
extern MainWindow * mainwin ;
2011-10-21 05:50:31 +00:00
void PreferencesDialog : : RefreshLastChecked ( )
{
2014-04-17 05:52:25 +00:00
ui - > updateLastChecked - > setText ( PREF [ STR_GEN_UpdatesLastChecked ] . toDateTime ( ) . toString (
Qt : : SystemLocaleLongDate ) ) ;
2011-10-21 05:50:31 +00:00
}
void PreferencesDialog : : on_checkForUpdatesButton_clicked ( )
{
mainwin - > CheckForUpdates ( ) ;
}
2011-11-20 23:39:55 +00:00
2011-11-27 14:35:25 +00:00
void PreferencesDialog : : on_graphView_activated ( const QModelIndex & index )
{
2014-04-17 05:52:25 +00:00
QString a = index . data ( ) . toString ( ) ;
2011-11-27 14:35:25 +00:00
qDebug ( ) < < " Could do something here with " < < a ;
}
void PreferencesDialog : : on_graphFilter_textChanged ( const QString & arg1 )
{
graphFilterModel - > setFilterFixedString ( arg1 ) ;
}
MySortFilterProxyModel : : MySortFilterProxyModel ( QObject * parent )
2014-04-17 05:52:25 +00:00
: QSortFilterProxyModel ( parent )
2011-11-27 14:35:25 +00:00
{
}
2014-04-17 05:52:25 +00:00
bool MySortFilterProxyModel : : filterAcceptsRow ( int source_row ,
const QModelIndex & source_parent ) const
2011-11-27 14:35:25 +00:00
{
2014-04-17 05:52:25 +00:00
if ( source_parent = = qobject_cast < QStandardItemModel * >
( sourceModel ( ) ) - > invisibleRootItem ( ) - > index ( ) ) {
// always accept children of rootitem, since we want to filter their children
return true ;
2011-11-27 14:35:25 +00:00
}
return QSortFilterProxyModel : : filterAcceptsRow ( source_row , source_parent ) ;
}
2014-04-17 05:52:25 +00:00
void PreferencesDialog : : graphModel_changed ( QStandardItem * item )
2011-11-27 14:35:25 +00:00
{
2014-04-17 05:52:25 +00:00
QModelIndex index = item - > index ( ) ;
2011-11-27 14:35:25 +00:00
2014-04-23 13:19:56 +00:00
gGraphView * gv = nullptr ;
2011-11-27 14:35:25 +00:00
bool ok ;
2014-04-17 05:52:25 +00:00
const QModelIndex & row = index . sibling ( index . row ( ) , 0 ) ;
bool checked = row . data ( Qt : : CheckStateRole ) ! = 0 ;
2011-12-08 11:41:44 +00:00
//QString name=row.data().toString();
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
int group = row . data ( Qt : : UserRole + 1 ) . toInt ( ) ;
int id = row . data ( Qt : : UserRole + 2 ) . toInt ( ) ;
switch ( group ) {
case 0 :
gv = mainwin - > getDaily ( ) - > graphView ( ) ;
break ;
case 1 :
gv = mainwin - > getOverview ( ) - > graphView ( ) ;
break ;
default :
;
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
if ( ! gv ) {
2011-11-27 14:35:25 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
gGraph * graph = ( * gv ) [ id ] ;
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
if ( ! graph ) {
2011-11-27 14:35:25 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
if ( graph - > visible ( ) ! = checked ) {
2011-11-27 14:35:25 +00:00
graph - > setVisible ( checked ) ;
}
EventDataType val ;
2014-04-17 05:52:25 +00:00
if ( index . column ( ) = = 1 ) {
val = index . data ( ) . toDouble ( & ok ) ;
2011-11-27 14:35:25 +00:00
if ( ! ok ) {
2014-04-17 05:52:25 +00:00
graphModel - > setData ( index , QString : : number ( graph - > rec_miny , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
ui - > graphView - > update ( ) ;
} else {
2011-12-01 06:06:13 +00:00
//if ((val < graph->rec_maxy) || (val==0)) {
2014-04-17 05:52:25 +00:00
graph - > setRecMinY ( val ) ;
2011-12-01 06:06:13 +00:00
/*} else {
2011-11-27 14:35:25 +00:00
graphModel - > setData ( index , QString : : number ( graph - > rec_miny , ' f ' , 1 ) ) ;
ui - > graphView - > update ( ) ;
2011-12-01 06:06:13 +00:00
} */
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
} else if ( index . column ( ) = = 2 ) {
val = index . data ( ) . toDouble ( & ok ) ;
2011-11-27 14:35:25 +00:00
if ( ! ok ) {
2014-04-17 05:52:25 +00:00
graphModel - > setData ( index , QString : : number ( graph - > rec_maxy , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
ui - > graphView - > update ( ) ;
} else {
2011-12-01 06:06:13 +00:00
//if ((val > graph->rec_miny) || (val==0)) {
2014-04-17 05:52:25 +00:00
graph - > setRecMaxY ( val ) ;
2011-12-01 06:06:13 +00:00
/*} else {
2011-11-27 14:35:25 +00:00
graphModel - > setData ( index , QString : : number ( graph - > rec_maxy , ' f ' , 1 ) ) ;
ui - > graphView - > update ( ) ;
2011-12-01 06:06:13 +00:00
} */
2011-11-27 14:35:25 +00:00
}
}
2014-04-17 05:52:25 +00:00
2011-11-27 16:35:17 +00:00
gv - > updateScale ( ) ;
2014-04-17 05:52:25 +00:00
// qDebug() << name << checked;
2011-11-27 14:35:25 +00:00
}
void PreferencesDialog : : resetGraphModel ( )
{
graphModel - > clear ( ) ;
2014-04-17 05:52:25 +00:00
QStandardItem * daily = new QStandardItem ( tr ( " Daily Graphs " ) ) ;
QStandardItem * overview = new QStandardItem ( tr ( " Overview Graphs " ) ) ;
2011-11-27 14:35:25 +00:00
daily - > setEditable ( false ) ;
overview - > setEditable ( false ) ;
graphModel - > appendRow ( daily ) ;
graphModel - > appendRow ( overview ) ;
ui - > graphView - > setAlternatingRowColors ( true ) ;
2011-12-08 13:33:29 +00:00
// ui->graphView->setFirstColumnSpanned(0,daily->index(),true); // Crashes on windows.. Why do I need this again?
2011-11-27 14:35:25 +00:00
graphModel - > setColumnCount ( 3 ) ;
QStringList headers ;
2011-12-18 16:39:36 +00:00
headers . append ( tr ( " Graph " ) ) ;
2013-09-09 15:56:02 +00:00
headers . append ( STR_TR_Min ) ;
headers . append ( STR_TR_Max ) ;
2011-11-27 14:35:25 +00:00
graphModel - > setHorizontalHeaderLabels ( headers ) ;
2014-04-17 05:52:25 +00:00
ui - > graphView - > setColumnWidth ( 0 , 250 ) ;
ui - > graphView - > setColumnWidth ( 1 , 50 ) ;
ui - > graphView - > setColumnWidth ( 2 , 50 ) ;
gGraphView * gv = mainwin - > getDaily ( ) - > graphView ( ) ;
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
2011-11-27 14:35:25 +00:00
QList < QStandardItem * > items ;
2014-04-17 05:52:25 +00:00
QString title = ( * gv ) [ i ] - > title ( ) ;
QStandardItem * it = new QStandardItem ( title ) ;
2011-11-27 14:35:25 +00:00
it - > setCheckable ( true ) ;
it - > setCheckState ( ( * gv ) [ i ] - > visible ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( false ) ;
2014-04-17 05:52:25 +00:00
it - > setData ( 0 , Qt : : UserRole + 1 ) ;
it - > setData ( i , Qt : : UserRole + 2 ) ;
2011-11-27 14:35:25 +00:00
items . push_back ( it ) ;
2014-04-17 05:52:25 +00:00
if ( title ! = STR_TR_EventFlags ) {
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_miny , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
2014-04-17 05:52:25 +00:00
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_maxy , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
} else {
2014-04-17 05:52:25 +00:00
it = new QStandardItem ( tr ( " N/A " ) ) ; // not applicable.
2011-11-27 14:35:25 +00:00
it - > setEditable ( false ) ;
items . push_back ( it ) ;
items . push_back ( it - > clone ( ) ) ;
}
2014-04-17 05:52:25 +00:00
daily - > insertRow ( i , items ) ;
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
gv = mainwin - > getOverview ( ) - > graphView ( ) ;
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
2011-11-27 14:35:25 +00:00
QList < QStandardItem * > items ;
2014-04-17 05:52:25 +00:00
QStandardItem * it = new QStandardItem ( ( * gv ) [ i ] - > title ( ) ) ;
2011-11-27 14:35:25 +00:00
it - > setCheckable ( true ) ;
it - > setCheckState ( ( * gv ) [ i ] - > visible ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( false ) ;
items . push_back ( it ) ;
2014-04-17 05:52:25 +00:00
it - > setData ( 1 , Qt : : UserRole + 1 ) ;
it - > setData ( i , Qt : : UserRole + 2 ) ;
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_miny , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
2014-04-17 05:52:25 +00:00
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_maxy , ' f ' , 1 ) ) ;
2011-11-27 14:35:25 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
2014-04-17 05:52:25 +00:00
overview - > insertRow ( i , items ) ;
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
connect ( graphModel , SIGNAL ( itemChanged ( QStandardItem * ) ) , this ,
SLOT ( graphModel_changed ( QStandardItem * ) ) ) ;
2011-11-27 14:35:25 +00:00
ui - > graphView - > expandAll ( ) ;
2014-08-06 14:06:44 +00:00
2011-11-27 14:35:25 +00:00
}
void PreferencesDialog : : on_resetGraphButton_clicked ( )
{
2014-04-10 18:15:14 +00:00
QString title = tr ( " Confirmation " ) ;
QString text = tr ( " Are you sure you want to reset your graph preferences to the defaults? " ) ;
StandardButtons buttons = QMessageBox : : Yes | QMessageBox : : No ;
StandardButton defaultButton = QMessageBox : : No ;
// Display confirmation dialog.
StandardButton choice = QMessageBox : : question ( this , title , text , buttons , defaultButton ) ;
2014-04-17 05:52:25 +00:00
if ( choice = = QMessageBox : : No ) {
2014-04-10 18:15:14 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2014-04-10 18:15:14 +00:00
2014-05-20 14:52:29 +00:00
gGraphView * views [ 3 ] = { 0 } ;
2014-04-10 18:15:14 +00:00
views [ 0 ] = mainwin - > getDaily ( ) - > graphView ( ) ;
views [ 1 ] = mainwin - > getOverview ( ) - > graphView ( ) ;
// Iterate over all graph containers.
for ( unsigned j = 0 ; j < 3 ; j + + ) {
gGraphView * view = views [ j ] ;
2014-04-17 05:52:25 +00:00
if ( ! view ) {
2014-04-10 18:15:14 +00:00
continue ;
2014-04-17 05:52:25 +00:00
}
2014-04-10 18:15:14 +00:00
// Iterate over all contained graphs.
2014-04-17 04:56:04 +00:00
for ( int i = 0 ; i < view - > size ( ) ; i + + ) {
2014-04-10 18:15:14 +00:00
gGraph * g = ( * view ) [ i ] ;
g - > setRecMaxY ( 0 ) ; // FIXME: should be g->reset(), but need other patches to land.
g - > setRecMinY ( 0 ) ;
g - > setVisible ( true ) ;
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
2014-04-10 18:15:14 +00:00
view - > updateScale ( ) ;
2011-11-27 14:35:25 +00:00
}
2014-04-17 05:52:25 +00:00
2014-04-10 18:15:14 +00:00
resetGraphModel ( ) ;
ui - > graphView - > update ( ) ;
}
2011-11-30 06:01:38 +00:00
2011-12-08 11:41:44 +00:00
/*void PreferencesDialog::on_genOpWidget_itemActivated(QListWidgetItem *item)
2011-11-30 06:01:38 +00:00
{
item - > setCheckState ( item - > checkState ( ) = = Qt : : Checked ? Qt : : Unchecked : Qt : : Checked ) ;
2011-12-08 11:41:44 +00:00
} */
2011-11-30 06:01:38 +00:00
void PreferencesDialog : : on_maskTypeCombo_activated ( int index )
{
2014-04-17 05:52:25 +00:00
if ( index < num_masks ) {
2011-11-30 06:01:38 +00:00
QTableWidgetItem * item ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < 5 ; i + + ) {
MaskProfile & mp = masks [ index ] ;
item = ui - > leakProfile - > item ( i , 0 ) ;
QString val = QString : : number ( mp . pflow [ i ] [ 0 ] , ' f ' , 2 ) ;
2011-11-30 06:01:38 +00:00
if ( ! item ) {
2014-04-17 05:52:25 +00:00
item = new QTableWidgetItem ( val ) ;
ui - > leakProfile - > setItem ( i , 0 , item ) ;
} else { item - > setText ( val ) ; }
val = QString : : number ( mp . pflow [ i ] [ 1 ] , ' f ' , 2 ) ;
item = ui - > leakProfile - > item ( i , 1 ) ;
2011-11-30 06:01:38 +00:00
if ( ! item ) {
2014-04-17 05:52:25 +00:00
item = new QTableWidgetItem ( val ) ;
ui - > leakProfile - > setItem ( i , 1 , item ) ;
} else { item - > setText ( val ) ; }
2011-11-30 06:01:38 +00:00
}
}
}
2012-01-05 04:37:22 +00:00
void PreferencesDialog : : on_createSDBackups_toggled ( bool checked )
{
if ( profile - > session - > backupCardData ( ) & & ! checked ) {
2014-07-11 12:09:38 +00:00
QList < Machine * > mach = p_profile - > GetMachines ( MT_CPAP ) ;
2014-04-17 05:52:25 +00:00
bool haveS9 = false ;
for ( int i = 0 ; i < mach . size ( ) ; i + + ) {
2014-07-28 13:56:29 +00:00
if ( mach [ i ] - > loaderName ( ) = = STR_MACH_ResMed ) {
2014-04-17 05:52:25 +00:00
haveS9 = true ;
2012-01-05 04:37:22 +00:00
break ;
}
}
2014-04-17 05:52:25 +00:00
if ( haveS9
& & QMessageBox : : question ( this , tr ( " This may not be a good idea " ) ,
tr ( " ResMed S9 machines routinely delete certain data from your SD card older than 7 and 30 days (depending on resolution). " )
+ " " + tr ( " If you ever need to reimport this data again (whether in SleepyHead or ResScan) this data won't come back. " )
+ " " + tr ( " If you need to conserve disk space, please remember to carry out manual backups. " ) +
" " + tr ( " Are you sure you want to disable these backups? " ) , QMessageBox : : Yes ,
QMessageBox : : No ) = = QMessageBox : : No ) {
2012-01-05 04:37:22 +00:00
ui - > createSDBackups - > setChecked ( true ) ;
return ;
}
}
2014-04-17 05:52:25 +00:00
if ( ! checked ) { ui - > compressSDBackups - > setChecked ( false ) ; }
2012-01-05 04:37:22 +00:00
ui - > compressSDBackups - > setEnabled ( checked ) ;
}
2012-01-10 06:19:49 +00:00
void PreferencesDialog : : on_okButton_clicked ( )
{
2014-04-17 05:52:25 +00:00
if ( Save ( ) ) {
2012-01-10 06:19:49 +00:00
accept ( ) ;
2014-04-17 05:52:25 +00:00
}
2012-01-10 06:19:49 +00:00
}
2013-11-09 03:13:15 +00:00
void PreferencesDialog : : on_scrollDampeningSlider_valueChanged ( int value )
{
2014-04-17 05:52:25 +00:00
if ( value > 0 ) {
ui - > scrollDampDisplay - > display ( value * 10 ) ;
} else { ui - > scrollDampDisplay - > display ( STR_TR_Off ) ; }
2013-11-09 03:13:15 +00:00
}
void PreferencesDialog : : on_tooltipTimeoutSlider_valueChanged ( int value )
{
2014-04-17 05:52:25 +00:00
ui - > tooltipMS - > display ( value * 50 ) ;
2013-11-09 03:13:15 +00:00
}
2014-07-03 01:59:50 +00:00
2014-08-06 14:06:44 +00:00
void PreferencesDialog : : on_resetChannelDefaults_clicked ( )
{
if ( QMessageBox : : question ( this , STR_MessageBox_Warning , QObject : : tr ( " Are you sure you want to reset all your channel colors and settings to defaults? " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : Yes ) {
schema : : resetChannels ( ) ;
InitChanInfo ( ) ;
}
}
2014-07-03 01:59:50 +00:00
void PreferencesDialog : : on_createSDBackups_clicked ( bool checked )
{
if ( ! checked & & p_profile - > session - > backupCardData ( ) ) {
if ( QMessageBox : : question ( this , STR_MessageBox_Warning , tr ( " Switching off automatic backups is not a good idea, because SleepyHead needs these to rebuild the database if errors are found. " ) + " \n \n " +
tr ( " Are you really sure you want to do this? " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : Yes ) {
} else {
ui - > createSDBackups - > setChecked ( true ) ;
}
}
}
2014-08-06 14:06:44 +00:00
void PreferencesDialog : : on_channelSearch_textChanged ( const QString & arg1 )
{
chanFilterModel - > setFilterFixedString ( arg1 ) ;
}
void PreferencesDialog : : on_chanView_doubleClicked ( const QModelIndex & index )
{
if ( index . column ( ) = = 1 ) {
QColorDialog a ;
quint32 color = index . data ( Qt : : UserRole ) . toUInt ( ) ;
a . setCurrentColor ( QColor ( ( QRgb ) color ) ) ;
if ( a . exec ( ) = = QColorDialog : : Accepted ) {
quint32 cv = a . currentColor ( ) . rgba ( ) ;
chanFilterModel - > setData ( index , cv , Qt : : UserRole ) ;
chanFilterModel - > setData ( index , a . currentColor ( ) , Qt : : BackgroundRole ) ;
}
}
}