2014-08-17 12:56:05 +00:00
/* SleepyHead Preferences Dialog Implementation
2014-04-09 21:01:57 +00:00
*
2016-03-01 11:59:04 +00:00
* Copyright ( c ) 2011 - 2016 Mark Watkins < jedimark @ users . sourceforge . net >
2014-04-09 21:01:57 +00:00
*
* 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>
2016-03-03 04:48:08 +00:00
# include <cmath>
2014-05-28 16:23:40 +00:00
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-08-25 02:55:01 +00:00
QHash < schema : : ChanType , QString > channeltype ;
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
2014-08-25 02:55:01 +00:00
channeltype . clear ( ) ;
channeltype [ schema : : FLAG ] = tr ( " Flag " ) ;
channeltype [ schema : : MINOR_FLAG ] = tr ( " Minor Flag " ) ;
channeltype [ schema : : SPAN ] = tr ( " Span " ) ;
channeltype [ schema : : UNKNOWN ] = tr ( " Always Minor " ) ;
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
2014-09-14 15:29:07 +00:00
// Qt::DayOfWeek dow = firstDayOfWeekFromLocale();
2011-11-30 12:58:41 +00:00
2014-09-13 11:34:18 +00:00
// QTextCharFormat format = ui->startedUsingMask->calendarWidget()->weekdayTextFormat(Qt::Saturday);
// format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
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 ( ) ) ;
2014-08-23 09:54:51 +00:00
ui - > oxiDesaturationThreshold - > setValue ( schema : : channel [ OXI_SPO2 ] . lowerThreshold ( ) ) ;
ui - > flagPulseAbove - > setValue ( schema : : channel [ OXI_Pulse ] . upperThreshold ( ) ) ;
ui - > flagPulseBelow - > setValue ( schema : : channel [ OXI_Pulse ] . lowerThreshold ( ) ) ;
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 ( ) ) ;
2014-09-13 11:34:18 +00:00
ui - > eventIndexCombo - > setCurrentIndex ( profile - > general - > calculateRDI ( ) ? 1 : 0 ) ;
2014-08-20 20:50:55 +00:00
ui - > automaticImport - > setChecked ( profile - > cpap - > autoImport ( ) ) ;
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-10-08 16:06:08 +00:00
} else { ui - > combineLCD - > display ( STR_TR_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-10-08 16:06:08 +00:00
} else { ui - > IgnoreLCD - > display ( STR_TR_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 ) ;
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 - > 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
2014-09-13 11:34:18 +00:00
int s = profile - > cpap - > clockDrift ( ) ;
int m = ( s / 60 ) % 60 ;
int h = ( s / 3600 ) ;
s % = 60 ;
ui - > clockDriftHours - > setValue ( h ) ;
ui - > clockDriftMinutes - > setValue ( m ) ;
ui - > clockDriftSeconds - > setValue ( s ) ;
2012-01-19 15:18:34 +00:00
2011-12-21 12:47:47 +00:00
ui - > skipEmptyDays - > setChecked ( profile - > general - > skipEmptyDays ( ) ) ;
2014-08-07 20:27:23 +00:00
ui - > showUnknownFlags - > setChecked ( profile - > general - > showUnknownFlags ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > enableMultithreading - > setChecked ( profile - > session - > multithreading ( ) ) ;
ui - > cacheSessionData - > setChecked ( profile - > session - > cacheSessions ( ) ) ;
2014-09-13 11:34:18 +00:00
ui - > preloadSummaries - > setChecked ( profile - > session - > preloadSummaries ( ) ) ;
2011-12-21 12:47:47 +00:00
ui - > animationsAndTransitionsCheckbox - > setChecked ( profile - > appearance - > animations ( ) ) ;
2014-09-13 11:34:18 +00:00
ui - > complianceCheckBox - > setChecked ( profile - > cpap - > showComplianceInfo ( ) ) ;
2011-12-21 12:47:47 +00:00
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
2016-03-07 16:42:15 +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-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
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 ( ) ) ;
2016-03-03 04:48:08 +00:00
bool b ;
2016-03-04 21:27:33 +00:00
ui - > calculateUnintentionalLeaks - > setChecked ( b = profile - > cpap - > calculateUnintentionalLeaks ( ) ) ;
2016-03-03 04:48:08 +00:00
ui - > maskLeaks4Slider - > setValue ( profile - > cpap - > custom4cmH2OLeaks ( ) * 10.0 ) ;
ui - > maskLeaks20Slider - > setValue ( profile - > cpap - > custom20cmH2OLeaks ( ) * 10.0 ) ;
2016-03-04 21:36:36 +00:00
ui - > maskLeaks4Label - > setText ( tr ( " %1 %2 " ) . arg ( profile - > cpap - > custom4cmH2OLeaks ( ) , 5 , ' f ' , 1 ) . arg ( STR_UNIT_LPM ) ) ;
ui - > maskLeaks20Label - > setText ( tr ( " %1 %2 " ) . arg ( profile - > cpap - > custom20cmH2OLeaks ( ) , 5 , ' f ' , 1 ) . arg ( STR_UNIT_LPM ) ) ;
2016-03-03 04:48:08 +00:00
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 " ) ;
} */
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
2014-08-25 02:55:01 +00:00
waveFilterModel = new MySortFilterProxyModel ( this ) ;
waveModel = new QStandardItemModel ( this ) ;
waveFilterModel - > setSourceModel ( waveModel ) ;
waveFilterModel - > setFilterCaseSensitivity ( Qt : : CaseInsensitive ) ;
waveFilterModel - > setFilterKeyColumn ( 0 ) ;
ui - > waveView - > setModel ( waveFilterModel ) ;
InitWaveInfo ( ) ;
ui - > waveView - > setSortingEnabled ( true ) ;
ui - > chanView - > setSortingEnabled ( true ) ;
ui - > waveView - > sortByColumn ( 0 , Qt : : AscendingOrder ) ;
ui - > chanView - > sortByColumn ( 0 , Qt : : AscendingOrder ) ;
2011-08-02 22:37:15 +00:00
}
2011-08-03 03:09:57 +00:00
2014-08-25 02:55:01 +00:00
# include <QItemDelegate>
class SpinBoxDelegate : public QItemDelegate
2011-08-03 03:09:57 +00:00
{
2014-04-17 05:52:25 +00:00
2014-08-25 02:55:01 +00:00
public :
SpinBoxDelegate ( QObject * parent = 0 ) : QItemDelegate ( parent ) { }
2014-04-17 05:52:25 +00:00
2014-08-25 02:55:01 +00:00
virtual QWidget * createEditor ( QWidget * parent , const QStyleOptionViewItem & option , const QModelIndex & index ) const ;
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
virtual void setEditorData ( QWidget * editor , const QModelIndex & index ) const ;
virtual void setModelData ( QWidget * editor , QAbstractItemModel * model , const QModelIndex & index ) const ;
virtual void updateEditorGeometry ( QWidget * editor , const QStyleOptionViewItem & option , const QModelIndex & index ) const ;
} ;
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
QWidget * SpinBoxDelegate : : createEditor ( QWidget * parent , const QStyleOptionViewItem & /* option */ , const QModelIndex & /* index */ ) const
{
QDoubleSpinBox * editor = new QDoubleSpinBox ( parent ) ;
//editor->setMinimum(0);
//editor->setMaximum(100.0);
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
return editor ;
}
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
void SpinBoxDelegate : : setEditorData ( QWidget * editor , const QModelIndex & index ) const
{
double value = index . model ( ) - > data ( index , Qt : : EditRole ) . toDouble ( ) ;
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
QDoubleSpinBox * spinBox = static_cast < QDoubleSpinBox * > ( editor ) ;
spinBox - > setMinimum ( - 9999999.0 ) ;
spinBox - > setMaximum ( 9999999.0 ) ;
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
spinBox - > setValue ( value ) ;
}
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
void SpinBoxDelegate : : setModelData ( QWidget * editor , QAbstractItemModel * model , const QModelIndex & index ) const
{
QDoubleSpinBox * spinBox = static_cast < QDoubleSpinBox * > ( editor ) ;
spinBox - > interpretText ( ) ;
double value = spinBox - > value ( ) ;
2014-08-07 20:27:23 +00:00
2014-08-25 02:55:01 +00:00
model - > setData ( index , value , Qt : : EditRole ) ;
}
void SpinBoxDelegate : : updateEditorGeometry ( QWidget * editor , const QStyleOptionViewItem & option , const QModelIndex & /* index */ ) const
{
editor - > setGeometry ( option . rect ) ;
}
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
# include <QItemDelegate>
class ComboBoxDelegate : public QItemDelegate
{
public :
ComboBoxDelegate ( QObject * parent = 0 ) : QItemDelegate ( parent ) { }
virtual QWidget * createEditor ( QWidget * parent , const QStyleOptionViewItem & option , const QModelIndex & index ) const ;
virtual void setEditorData ( QWidget * editor , const QModelIndex & index ) const ;
virtual void setModelData ( QWidget * editor , QAbstractItemModel * model , const QModelIndex & index ) const ;
virtual void updateEditorGeometry ( QWidget * editor , const QStyleOptionViewItem & option , const QModelIndex & index ) const ;
} ;
QWidget * ComboBoxDelegate : : createEditor ( QWidget * parent , const QStyleOptionViewItem & /* option */ , const QModelIndex & /* index */ ) const
{
QComboBox * combo = new QComboBox ( parent ) ;
QHash < schema : : ChanType , QString > : : iterator it ;
for ( it = channeltype . begin ( ) ; it ! = channeltype . end ( ) ; + + it ) {
if ( it . key ( ) = = schema : : UNKNOWN ) continue ;
combo - > addItem ( it . value ( ) ) ;
}
//editor->setMinimum(0);
//editor->setMaximum(100.0);
return combo ;
}
void ComboBoxDelegate : : setEditorData ( QWidget * editor , const QModelIndex & index ) const
{
QString value = index . model ( ) - > data ( index , Qt : : EditRole ) . toString ( ) ;
QComboBox * combo = static_cast < QComboBox * > ( editor ) ;
combo - > setCurrentText ( value ) ;
}
void ComboBoxDelegate : : setModelData ( QWidget * editor , QAbstractItemModel * model , const QModelIndex & index ) const
{
QComboBox * combo = static_cast < QComboBox * > ( editor ) ;
model - > setData ( index , combo - > currentText ( ) , Qt : : EditRole ) ;
}
void ComboBoxDelegate : : updateEditorGeometry ( QWidget * editor , const QStyleOptionViewItem & option , const QModelIndex & /* index */ ) const
{
editor - > setGeometry ( option . rect ) ;
}
void PreferencesDialog : : InitChanInfo ( )
{
QHash < MachineType , int > toprows ;
chanModel - > clear ( ) ;
toplevel . clear ( ) ;
toprows . clear ( ) ;
2014-08-06 14:06:44 +00:00
QStringList headers ;
headers . append ( tr ( " Name " ) ) ;
headers . append ( tr ( " Color " ) ) ;
2014-09-11 14:23:08 +00:00
headers . append ( tr ( " Overview " ) ) ;
2014-09-13 11:34:18 +00:00
headers . append ( tr ( " Flag Type " ) ) ;
2014-08-06 14:06:44 +00:00
headers . append ( tr ( " Label " ) ) ;
headers . append ( tr ( " Details " ) ) ;
chanModel - > setHorizontalHeaderLabels ( headers ) ;
ui - > chanView - > setColumnWidth ( 0 , 200 ) ;
2014-09-13 11:34:18 +00:00
ui - > chanView - > setColumnWidth ( 1 , 40 ) ;
ui - > chanView - > setColumnWidth ( 2 , 60 ) ;
ui - > chanView - > setColumnWidth ( 3 , 100 ) ;
2014-09-11 14:23:08 +00:00
ui - > chanView - > setColumnWidth ( 4 , 100 ) ;
2014-08-06 14:06:44 +00:00
ui - > chanView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
ui - > chanView - > setSelectionBehavior ( QAbstractItemView : : SelectItems ) ;
2014-09-11 14:23:08 +00:00
chanModel - > setColumnCount ( 6 ) ;
2014-08-25 02:55:01 +00:00
QStandardItem * hdr = nullptr ;
QMap < MachineType , QString > Section ;
Section [ MT_CPAP ] = tr ( " CPAP Events " ) ;
Section [ MT_OXIMETER ] = tr ( " Oximeter Events " ) ;
Section [ MT_POSITION ] = tr ( " Positional Events " ) ;
Section [ MT_SLEEPSTAGE ] = tr ( " Sleep Stage Events " ) ;
Section [ MT_UNCATEGORIZED ] = tr ( " Unknown Events " ) ;
QMap < MachineType , QString > : : iterator it ;
2014-08-06 14:06:44 +00:00
QHash < QString , schema : : Channel * > : : iterator ci ;
2014-08-25 02:55:01 +00:00
for ( it = Section . begin ( ) ; it ! = Section . end ( ) ; + + it ) {
toplevel [ it . key ( ) ] = hdr = new QStandardItem ( it . value ( ) ) ;
hdr - > setEditable ( false ) ;
QList < QStandardItem * > list ;
list . append ( hdr ) ;
2014-09-11 14:23:08 +00:00
for ( int i = 0 ; i < 5 ; i + + ) {
2014-08-25 02:55:01 +00:00
QStandardItem * it = new QStandardItem ( ) ;
it - > setEnabled ( false ) ;
list . append ( it ) ;
}
chanModel - > appendRow ( list ) ;
}
ui - > chanView - > setAlternatingRowColors ( true ) ;
// ui->graphView->setFirstColumnSpanned(0,daily->index(),true); // Crashes on windows.. Why do I need this again?
ComboBoxDelegate * combobox = new ComboBoxDelegate ( ui - > waveView ) ;
2014-09-18 15:33:50 +00:00
ui - > chanView - > setItemDelegateForColumn ( 3 , combobox ) ;
2014-08-25 02:55:01 +00:00
2014-08-06 14:06:44 +00:00
int row = 0 ;
for ( ci = schema : : channel . names . begin ( ) ; ci ! = schema : : channel . names . end ( ) ; ci + + ) {
schema : : Channel * chan = ci . value ( ) ;
2014-08-25 02:55:01 +00:00
if ( ( chan - > type ( ) = = schema : : DATA ) | | ( chan - > type ( ) = = schema : : SETTING ) | | chan - > type ( ) = = schema : : WAVEFORM ) continue ;
2014-08-06 14:06:44 +00:00
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 ) ;
2014-09-13 11:34:18 +00:00
// Dear translators: %1 is a unique ascii english string used to indentify channels in the code, I'd like feedback on how this goes..
// It's here in case users mess up which field is which.. it will always show the Channel Code underneath in the tooltip.
it - > setToolTip ( tr ( " Double click to change the descriptive name the '%1' channel. " ) . arg ( chan - > code ( ) ) ) ;
2014-08-06 14:06:44 +00:00
items . push_back ( it ) ;
it = new QStandardItem ( ) ;
it - > setBackground ( QBrush ( chan - > defaultColor ( ) ) ) ;
it - > setEditable ( false ) ;
it - > setData ( chan - > defaultColor ( ) . rgba ( ) , Qt : : UserRole ) ;
2014-08-25 02:55:01 +00:00
it - > setToolTip ( tr ( " Double click to change the default color for this channel plot/flag/data. " ) ) ;
2014-08-06 14:06:44 +00:00
it - > setSelectable ( false ) ;
items . push_back ( it ) ;
2014-09-11 14:23:08 +00:00
it = new QStandardItem ( QString ( ) ) ;
it - > setToolTip ( tr ( " Whether this flag has a dedicated overview chart. " ) ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( chan - > showInOverview ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
2014-09-13 11:34:18 +00:00
it - > setTextAlignment ( Qt : : AlignCenter ) ;
2014-09-11 14:23:08 +00:00
it - > setData ( chan - > id ( ) , Qt : : UserRole ) ;
items . push_back ( it ) ;
2014-09-13 11:34:18 +00:00
schema : : ChanType type = chan - > type ( ) ;
it = new QStandardItem ( channeltype [ type ] ) ;
it - > setToolTip ( tr ( " Here you can change the type of flag shown for this event " ) ) ;
it - > setEditable ( type ! = schema : : UNKNOWN ) ;
items . push_back ( it ) ;
2014-08-06 14:06:44 +00:00
it = new QStandardItem ( chan - > label ( ) ) ;
2014-08-25 02:55:01 +00:00
it - > setToolTip ( tr ( " This is the short-form label to indicate this channel on screen. " ) ) ;
2014-08-06 14:06:44 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( chan - > description ( ) ) ;
2014-08-25 02:55:01 +00:00
it - > setToolTip ( tr ( " This is a description of what this channel does. " ) ) ;
2014-08-06 14:06:44 +00:00
it - > setEditable ( true ) ;
items . push_back ( it ) ;
2014-08-25 02:55:01 +00:00
MachineType mt = chan - > machtype ( ) ;
if ( chan - > type ( ) = = schema : : UNKNOWN ) mt = MT_UNCATEGORIZED ;
row = toprows [ mt ] + + ;
toplevel [ mt ] - > insertRow ( row , items ) ;
}
2014-08-06 14:06:44 +00:00
2014-08-25 02:55:01 +00:00
for ( QHash < MachineType , QStandardItem * > : : iterator i = toplevel . begin ( ) ; i ! = toplevel . end ( ) ; + + i ) {
if ( i . value ( ) - > rowCount ( ) = = 0 ) {
chanModel - > removeRow ( i . value ( ) - > row ( ) ) ;
}
2011-08-03 03:09:57 +00:00
}
2014-08-25 02:55:01 +00:00
2014-08-06 14:06:44 +00:00
ui - > chanView - > expandAll ( ) ;
2014-08-25 02:55:01 +00:00
ui - > chanView - > setSortingEnabled ( true ) ;
2014-08-06 14:06:44 +00:00
}
2014-08-25 02:55:01 +00:00
void PreferencesDialog : : InitWaveInfo ( )
{
QHash < MachineType , int > toprows ;
waveModel - > clear ( ) ;
machlevel . clear ( ) ;
toprows . clear ( ) ;
QStringList headers ;
headers . append ( tr ( " Name " ) ) ;
headers . append ( tr ( " Color " ) ) ;
2014-09-11 14:23:08 +00:00
headers . append ( tr ( " Overview " ) ) ;
2014-08-25 02:55:01 +00:00
headers . append ( tr ( " Lower " ) ) ;
headers . append ( tr ( " Upper " ) ) ;
headers . append ( tr ( " Label " ) ) ;
headers . append ( tr ( " Details " ) ) ;
waveModel - > setHorizontalHeaderLabels ( headers ) ;
ui - > waveView - > setColumnWidth ( 0 , 200 ) ;
2014-09-13 11:34:18 +00:00
ui - > waveView - > setColumnWidth ( 1 , 40 ) ;
2014-09-11 14:23:08 +00:00
ui - > waveView - > setColumnWidth ( 2 , 60 ) ;
2014-08-25 02:55:01 +00:00
ui - > waveView - > setColumnWidth ( 3 , 50 ) ;
2014-09-11 14:23:08 +00:00
ui - > waveView - > setColumnWidth ( 4 , 50 ) ;
ui - > waveView - > setColumnWidth ( 5 , 100 ) ;
2014-08-25 02:55:01 +00:00
ui - > waveView - > setSelectionMode ( QAbstractItemView : : SingleSelection ) ;
ui - > waveView - > setSelectionBehavior ( QAbstractItemView : : SelectItems ) ;
2014-09-11 14:23:08 +00:00
waveModel - > setColumnCount ( 7 ) ;
2014-08-25 02:55:01 +00:00
QStandardItem * hdr = nullptr ;
QMap < MachineType , QString > Section ;
Section [ MT_CPAP ] = tr ( " CPAP Waveforms " ) ;
Section [ MT_OXIMETER ] = tr ( " Oximeter Waveforms " ) ;
Section [ MT_POSITION ] = tr ( " Positional Waveforms " ) ;
Section [ MT_SLEEPSTAGE ] = tr ( " Sleep Stage Waveforms " ) ;
QMap < MachineType , QString > : : iterator it ;
for ( it = Section . begin ( ) ; it ! = Section . end ( ) ; + + it ) {
machlevel [ it . key ( ) ] = hdr = new QStandardItem ( it . value ( ) ) ;
hdr - > setEditable ( false ) ;
QList < QStandardItem * > list ;
list . append ( hdr ) ;
2014-09-11 14:23:08 +00:00
for ( int i = 0 ; i < 6 ; i + + ) {
2014-08-25 02:55:01 +00:00
QStandardItem * it = new QStandardItem ( ) ;
it - > setEnabled ( false ) ;
list . append ( it ) ;
}
waveModel - > appendRow ( list ) ;
}
ui - > waveView - > setAlternatingRowColors ( true ) ;
// ui->graphView->setFirstColumnSpanned(0,daily->index(),true); // Crashes on windows.. Why do I need this again?
QHash < QString , schema : : Channel * > : : iterator ci ;
SpinBoxDelegate * spinbox = new SpinBoxDelegate ( ui - > waveView ) ;
ui - > waveView - > setItemDelegateForColumn ( 3 , spinbox ) ;
2014-09-18 15:33:50 +00:00
ui - > waveView - > setItemDelegateForColumn ( 4 , spinbox ) ;
2014-08-25 02:55:01 +00:00
int row = 0 ;
for ( ci = schema : : channel . names . begin ( ) ; ci ! = schema : : channel . names . end ( ) ; ci + + ) {
schema : : Channel * chan = ci . value ( ) ;
if ( chan - > type ( ) ! = schema : : WAVEFORM ) continue ;
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 ) ;
it - > setToolTip ( tr ( " Double click to change the descriptive name this channel. " ) ) ;
items . push_back ( it ) ;
it = new QStandardItem ( ) ;
it - > setBackground ( QBrush ( chan - > defaultColor ( ) ) ) ;
it - > setEditable ( false ) ;
it - > setData ( chan - > defaultColor ( ) . rgba ( ) , Qt : : UserRole ) ;
it - > setToolTip ( tr ( " Double click to change the default color for this channel plot/flag/data. " ) ) ;
it - > setSelectable ( false ) ;
items . push_back ( it ) ;
2014-09-11 14:23:08 +00:00
it = new QStandardItem ( ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( chan - > showInOverview ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( true ) ;
it - > setData ( chan - > id ( ) , Qt : : UserRole ) ;
it - > setToolTip ( tr ( " Whether a breakdown of this waveform displays in overview. " ) ) ;
items . push_back ( it ) ;
2014-08-25 02:55:01 +00:00
it = new QStandardItem ( QString : : number ( chan - > lowerThreshold ( ) , ' f ' , 1 ) ) ;
it - > setToolTip ( tr ( " Here you can set the <b>lower</b> threshold used for certain calculations on the %1 waveform " ) . arg ( chan - > fullname ( ) ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( QString : : number ( chan - > upperThreshold ( ) , ' f ' , 1 ) ) ;
it - > setToolTip ( tr ( " Here you can set the <b>upper</b> threshold used for certain calculations on the %1 waveform " ) . arg ( chan - > fullname ( ) ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( chan - > label ( ) ) ;
it - > setToolTip ( tr ( " This is the short-form label to indicate this channel on screen. " ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( chan - > description ( ) ) ;
it - > setToolTip ( tr ( " This is a description of what this channel does. " ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
row = toprows [ chan - > machtype ( ) ] + + ;
machlevel [ chan - > machtype ( ) ] - > insertRow ( row , items ) ;
}
for ( QHash < MachineType , QStandardItem * > : : iterator i = machlevel . begin ( ) ; i ! = machlevel . end ( ) ; + + i ) {
if ( i . value ( ) - > rowCount ( ) = = 0 ) {
waveModel - > removeRow ( i . value ( ) - > row ( ) ) ;
}
}
ui - > waveView - > expandAll ( ) ;
ui - > waveView - > setSortingEnabled ( true ) ;
}
2014-08-06 14:06:44 +00:00
PreferencesDialog : : ~ PreferencesDialog ( )
{
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 ;
}
2014-09-13 11:34:18 +00:00
int rdi_set = profile - > general - > calculateRDI ( ) ? 1 : 0 ;
if ( rdi_set ! = ui - > eventIndexCombo - > currentIndex ( ) ) {
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
}
2014-08-20 20:50:55 +00:00
if ( profile - > cpap - > leakRedline ( ) ! = ui - > leakRedlineSpinbox - > value ( ) ) {
recalc_events = true ;
}
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-08-23 09:54:51 +00:00
schema : : channel [ OXI_SPO2 ] . setLowerThreshold ( ui - > oxiDesaturationThreshold - > value ( ) ) ;
schema : : channel [ OXI_Pulse ] . setLowerThreshold ( ui - > flagPulseBelow - > value ( ) ) ;
schema : : channel [ OXI_Pulse ] . setUpperThreshold ( ui - > flagPulseAbove - > value ( ) ) ;
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
2014-08-07 20:27:23 +00:00
profile - > general - > setShowUnknownFlags ( ui - > showUnknownFlags - > isChecked ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > session - > setMultithreading ( ui - > enableMultithreading - > isChecked ( ) ) ;
profile - > session - > setCacheSessions ( ui - > cacheSessionData - > isChecked ( ) ) ;
2014-09-13 11:34:18 +00:00
profile - > session - > setPreloadSummaries ( ui - > preloadSummaries - > isChecked ( ) ) ;
2011-12-21 12:47:47 +00:00
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 ( ) ) ;
2014-09-13 11:34:18 +00:00
profile - > cpap - > setShowComplianceInfo ( ui - > complianceCheckBox - > isChecked ( ) ) ;
2011-12-21 12:47:47 +00:00
profile - > cpap - > setComplianceHours ( ui - > complianceHours - > value ( ) ) ;
2014-09-22 04:32:15 +00:00
if ( ui - > graphHeight - > value ( ) ! = profile - > appearance - > graphHeight ( ) ) {
profile - > appearance - > setGraphHeight ( ui - > graphHeight - > value ( ) ) ;
mainwin - > getDaily ( ) - > ResetGraphLayout ( ) ;
mainwin - > getOverview ( ) - > ResetGraphLayout ( ) ;
}
2011-12-21 12:47:47 +00:00
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
2014-09-13 11:34:18 +00:00
profile - > general - > setCalculateRDI ( ( ui - > eventIndexCombo - > currentIndex ( ) = = 1 ) ) ;
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
2014-09-13 11:34:18 +00:00
int s = ui - > clockDriftHours - > value ( ) * 3600 + ui - > clockDriftMinutes - > value ( ) * 60 + ui - > clockDriftSeconds - > value ( ) ;
profile - > cpap - > setClockDrift ( s ) ;
2012-01-19 15:18:34 +00:00
2011-12-21 12:47:47 +00:00
profile - > appearance - > setOverlayType ( ( OverlayDisplayType ) ui - > overlayFlagsCombo - > currentIndex ( ) ) ;
2014-09-18 10:53:59 +00:00
profile - > appearance - > setOverviewLinechartMode ( ( OverviewLinechartModes ) ui - > overviewLinecharts - > currentIndex ( ) ) ;
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 ( ) ) ;
2014-08-20 20:50:55 +00:00
profile - > cpap - > setAutoImport ( ui - > automaticImport - > isChecked ( ) ) ;
2012-01-06 16:07:54 +00:00
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
2016-03-03 04:48:08 +00:00
2016-03-07 16:42:15 +00:00
2016-03-04 21:27:33 +00:00
if ( ( ui - > calculateUnintentionalLeaks - > isChecked ( ) ! = profile - > cpap - > calculateUnintentionalLeaks ( ) )
2016-03-03 04:48:08 +00:00
| | ( fabs ( ( ui - > maskLeaks4Slider - > value ( ) / 10.0 ) - profile - > cpap - > custom4cmH2OLeaks ( ) ) > .1 )
| | ( fabs ( ( ui - > maskLeaks20Slider - > value ( ) / 10.0 ) - profile - > cpap - > custom20cmH2OLeaks ( ) ) > .1 ) ) {
recalc_events = true ;
}
2016-03-04 21:27:33 +00:00
profile - > cpap - > setCalculateUnintentionalLeaks ( ui - > calculateUnintentionalLeaks - > isChecked ( ) ) ;
2016-03-03 04:48:08 +00:00
profile - > cpap - > setCustom4cmH2OLeaks ( double ( ui - > maskLeaks4Slider - > value ( ) ) / 10.0f ) ;
profile - > cpap - > setCustom20cmH2OLeaks ( double ( ui - > maskLeaks20Slider - > value ( ) ) / 10.0f ) ;
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 ( ) ;
2016-03-07 16:42:15 +00:00
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-09-13 11:34:18 +00:00
saveChanInfo ( ) ;
saveWaveInfo ( ) ;
//qDebug() << "TODO: Save channels.xml to update channel data";
PREF . Save ( ) ;
p_profile - > Save ( ) ;
if ( recalc_events ) {
// send a signal instead?
mainwin - > reprocessEvents ( needs_restart ) ;
} else if ( needs_restart ) {
p_profile - > removeLock ( ) ;
mainwin - > RestartApplication ( ) ;
} else {
mainwin - > getDaily ( ) - > LoadDate ( mainwin - > getDaily ( ) - > getDate ( ) ) ;
// Save early.. just in case..
mainwin - > getDaily ( ) - > graphView ( ) - > SaveSettings ( " Daily " ) ;
mainwin - > getOverview ( ) - > graphView ( ) - > SaveSettings ( " Overview " ) ;
}
return true ;
}
void PreferencesDialog : : saveChanInfo ( )
{
// Change focus to force save of any open editors..
ui - > channelSearch - > setFocus ( ) ;
2014-08-06 14:06:44 +00:00
2014-09-13 11:34:18 +00:00
int toprows = chanModel - > rowCount ( ) ;
2014-08-06 14:06:44 +00:00
bool ok ;
2014-09-13 11:34:18 +00:00
2014-08-25 02:55:01 +00:00
for ( int i = 0 ; i < toprows ; i + + ) {
2014-09-13 11:34:18 +00:00
QStandardItem * topitem = chanModel - > item ( i , 0 ) ;
2014-08-25 02:55:01 +00:00
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 ( ) ) ) ;
2014-09-11 14:23:08 +00:00
chan . setShowInOverview ( topitem - > child ( j , 2 ) - > checkState ( ) = = Qt : : Checked ) ;
2014-09-13 11:34:18 +00:00
QString ts = topitem - > child ( j , 3 ) - > text ( ) ;
schema : : ChanType type = schema : : MINOR_FLAG ;
for ( QHash < schema : : ChanType , QString > : : iterator it = channeltype . begin ( ) ; it ! = channeltype . end ( ) ; + + it ) {
if ( it . value ( ) = = ts ) {
type = it . key ( ) ;
break ;
}
}
chan . setType ( type ) ;
chan . setLabel ( topitem - > child ( j , 4 ) - > text ( ) ) ;
chan . setDescription ( topitem - > child ( j , 5 ) - > text ( ) ) ;
2014-08-25 02:55:01 +00:00
}
}
2014-09-13 11:34:18 +00:00
}
void PreferencesDialog : : saveWaveInfo ( )
{
// Change focus to force save of any open editors..
ui - > waveSearch - > setFocus ( ) ;
2014-08-25 02:55:01 +00:00
2014-09-13 11:34:18 +00:00
int toprows = waveModel - > rowCount ( ) ;
2014-08-25 02:55:01 +00:00
2014-09-13 11:34:18 +00:00
bool ok ;
2014-08-06 14:06:44 +00:00
for ( int i = 0 ; i < toprows ; i + + ) {
2014-09-13 11:34:18 +00:00
QStandardItem * topitem = waveModel - > item ( i , 0 ) ;
2014-08-06 14:06:44 +00:00
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 ( ) ) ) ;
2014-09-13 11:34:18 +00:00
chan . setShowInOverview ( topitem - > child ( j , 2 ) - > checkState ( ) = = Qt : : Checked ) ;
chan . setLowerThreshold ( topitem - > child ( j , 3 ) - > text ( ) . toDouble ( ) ) ;
chan . setUpperThreshold ( topitem - > child ( j , 4 ) - > text ( ) . toDouble ( ) ) ;
chan . setLabel ( topitem - > child ( j , 5 ) - > text ( ) ) ;
chan . setDescription ( topitem - > child ( j , 6 ) - > text ( ) ) ;
2011-09-23 05:22:52 +00:00
}
}
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-10-08 16:06:08 +00:00
} else { ui - > combineLCD - > display ( STR_TR_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-10-08 16:06:08 +00:00
} else { ui - > IgnoreLCD - > display ( STR_TR_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-10-08 16:06:08 +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
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-09-13 11:34:18 +00:00
// Might still be useful..
2014-08-28 04:02:22 +00:00
//void PreferencesDialog::on_resetGraphButton_clicked()
//{
// 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;
2011-11-27 14:35:25 +00:00
2014-08-28 04:02:22 +00:00
// // Display confirmation dialog.
// StandardButton choice = QMessageBox::question(this, title, text, buttons, defaultButton);
2011-11-27 14:35:25 +00:00
2014-08-28 04:02:22 +00:00
// if (choice == QMessageBox::No) {
// return;
// }
2014-04-10 18:15:14 +00:00
2014-08-28 04:02:22 +00:00
// gGraphView *views[3] = {0};
// views[0] = mainwin->getDaily()->graphView();
// views[1] = mainwin->getOverview()->graphView();
2014-04-10 18:15:14 +00:00
2014-08-28 04:02:22 +00:00
// // Iterate over all graph containers.
// for (unsigned j = 0; j < 3; j++) {
// gGraphView *view = views[j];
2014-04-17 05:52:25 +00:00
2014-08-28 04:02:22 +00:00
// if (!view) {
// continue;
// }
2014-04-10 18:15:14 +00:00
2014-08-28 04:02:22 +00:00
// // Iterate over all contained graphs.
// for (int i = 0; i < view->size(); i++) {
// gGraph *g = (*view)[i];
// g->setRecMaxY(0); // FIXME: should be g->reset(), but need other patches to land.
// g->setRecMinY(0);
// g->setVisible(true);
// }
2014-04-17 05:52:25 +00:00
2014-08-28 04:02:22 +00:00
// view->updateScale();
// }
2014-04-17 05:52:25 +00:00
2014-08-28 04:02:22 +00:00
// resetGraphModel();
// ui->graphView->update();
//}
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 ( ) ;
2014-09-13 11:34:18 +00:00
saveWaveInfo ( ) ;
2014-08-06 14:06:44 +00:00
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 ;
2014-08-25 02:55:01 +00:00
if ( ! ( index . flags ( ) & Qt : : ItemIsEnabled ) ) return ;
2014-08-06 14:06:44 +00:00
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 ) ;
}
}
}
2014-08-25 02:55:01 +00:00
void PreferencesDialog : : on_waveSearch_textChanged ( const QString & arg1 )
{
waveFilterModel - > setFilterFixedString ( arg1 ) ;
}
2014-09-13 11:34:18 +00:00
void PreferencesDialog : : on_resetWaveformChannels_clicked ( )
{
if ( QMessageBox : : question ( this , STR_MessageBox_Warning , QObject : : tr ( " Are you sure you want to reset all your waveform channel colors and settings to defaults? " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : Yes ) {
schema : : resetChannels ( ) ;
saveChanInfo ( ) ; // reset clears EVERYTHING, so have to put these back in case they cancel.
InitWaveInfo ( ) ;
}
}
void PreferencesDialog : : on_waveView_doubleClicked ( const QModelIndex & index )
{
if ( index . column ( ) = = 1 ) {
QColorDialog a ;
if ( ! ( index . flags ( ) & Qt : : ItemIsEnabled ) ) return ;
quint32 color = index . data ( Qt : : UserRole ) . toUInt ( ) ;
a . setCurrentColor ( QColor ( ( QRgb ) color ) ) ;
if ( a . exec ( ) = = QColorDialog : : Accepted ) {
quint32 cv = a . currentColor ( ) . rgba ( ) ;
waveFilterModel - > setData ( index , cv , Qt : : UserRole ) ;
waveFilterModel - > setData ( index , a . currentColor ( ) , Qt : : BackgroundRole ) ;
}
}
}
2016-03-03 04:48:08 +00:00
void PreferencesDialog : : on_maskLeaks4Slider_valueChanged ( int value )
{
ui - > maskLeaks4Label - > setText ( tr ( " %1 %2 " ) . arg ( value / 10.0f , 5 , ' f ' , 1 ) . arg ( STR_UNIT_LPM ) ) ;
}
void PreferencesDialog : : on_maskLeaks20Slider_valueChanged ( int value )
{
ui - > maskLeaks20Label - > setText ( tr ( " %1 %2 " ) . arg ( value / 10.0f , 5 , ' f ' , 1 ) . arg ( STR_UNIT_LPM ) ) ;
}
2016-03-04 21:27:33 +00:00
2016-03-07 13:54:14 +00:00
void PreferencesDialog : : on_calculateUnintentionalLeaks_toggled ( bool )
2016-03-04 21:27:33 +00:00
{
}