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>
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
2011-10-05 10:44:41 +00:00
extern QFont * defaultfont ;
extern QFont * mediumfont ;
extern QFont * bigfont ;
2011-11-27 14:35:25 +00:00
extern MainWindow * mainwin ;
2011-10-05 10:44:41 +00:00
2011-11-30 06:01:38 +00:00
MaskProfile masks [ ] = {
2011-12-21 12:47:47 +00:00
{ 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
} ;
const int num_masks = sizeof ( masks ) / sizeof ( MaskProfile ) ;
2011-09-11 06:16:45 +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 ) ;
ui - > leakProfile - > setColumnWidth ( 0 , 100 ) ;
ui - > maskTypeCombo - > clear ( ) ;
2011-12-13 08:51:56 +00:00
ui - > ahiGraphGroupbox - > setEnabled ( false ) ;
ui - > customEventGroupbox - > setEnabled ( false ) ;
2011-12-18 16:39:36 +00:00
QString masktype = tr ( " Nasal Pillows " ) ;
2011-12-21 12:47:47 +00:00
//masktype=PROFILEMaskType
2011-11-30 06:01:38 +00:00
for ( int i = 0 ; i < num_masks ; i + + ) {
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
}
2011-11-30 12:58:41 +00:00
QLocale locale = QLocale : : system ( ) ;
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
shortformat . replace ( " yy " , " yyyy " ) ;
}
ui - > startedUsingMask - > setDisplayFormat ( shortformat ) ;
Qt : : DayOfWeek dow = firstDayOfWeekFromLocale ( ) ;
ui - > startedUsingMask - > calendarWidget ( ) - > setFirstDayOfWeek ( dow ) ;
// 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
2011-11-20 23:39:55 +00:00
{
QString filename = PROFILE . Get ( " {DataFolder}/ImportLocations.txt " ) ;
QFile file ( filename ) ;
file . open ( QFile : : ReadOnly ) ;
QTextStream textStream ( & file ) ;
while ( 1 ) {
QString line = textStream . readLine ( ) ;
if ( line . isNull ( ) )
break ;
else if ( line . isEmpty ( ) )
continue ;
else {
importLocations . append ( line ) ;
}
} ;
file . close ( ) ;
}
importModel = new QStringListModel ( importLocations , this ) ;
ui - > importListWidget - > setModel ( importModel ) ;
2011-11-27 14:35:25 +00:00
//ui->tabWidget->removeTab(3);
2011-10-05 12:43:34 +00:00
2011-09-11 06:16:45 +00:00
Q_ASSERT ( profile ! = NULL ) ;
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
2011-11-28 04:05:09 +00:00
bool ok ;
double v ;
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 ( ) ) ;
ui - > timeEdit - > setTime ( profile - > session - > daySplitTime ( ) ) ;
int val = profile - > session - > combineCloseSessions ( ) ;
2011-09-23 03:54:48 +00:00
ui - > combineSlider - > setValue ( val ) ;
2011-08-05 08:41:45 +00:00
if ( val > 0 ) {
ui - > combineLCD - > display ( val ) ;
} else ui - > combineLCD - > display ( tr ( " OFF " ) ) ;
2011-12-21 12:47:47 +00:00
val = profile - > session - > ignoreShortSessions ( ) ;
2011-09-23 03:54:48 +00:00
ui - > IgnoreSlider - > setValue ( val ) ;
2011-12-21 12:47:47 +00:00
if ( val > 0 ) {
ui - > IgnoreLCD - > display ( val ) ;
} else ui - > IgnoreLCD - > display ( tr ( " OFF " ) ) ;
2011-09-23 03:54:48 +00:00
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 ( ) ) ;
ui - > applicationFontBold - > setChecked ( QApplication : : font ( ) . weight ( ) = = QFont : : Bold ) ;
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 ( ) ) ;
ui - > graphFontBold - > setChecked ( defaultfont - > weight ( ) = = QFont : : Bold ) ;
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 ( ) ) ;
ui - > titleFontBold - > setChecked ( mediumfont - > weight ( ) = = QFont : : Bold ) ;
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 ( ) ) ;
ui - > bigFontBold - > setChecked ( bigfont - > weight ( ) = = QFont : : Bold ) ;
ui - > bigFontItalic - > setChecked ( bigfont - > italic ( ) ) ;
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 ( ) ) ;
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
2011-12-21 12:47:47 +00:00
ui - > maskDescription - > setText ( profile - > cpap - > maskDescription ( ) ) ;
ui - > useAntiAliasing - > setChecked ( profile - > appearance - > antiAliasing ( ) ) ;
ui - > useSquareWavePlots - > setChecked ( profile - > appearance - > squareWavePlots ( ) ) ;
ui - > enableGraphSnapshots - > setChecked ( profile - > appearance - > graphSnapshots ( ) ) ;
ui - > skipLoginScreen - > setChecked ( PREF [ " SkipLoginScreen " ] . toBool ( ) ) ;
2011-11-30 09:08:45 +00:00
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
2011-12-13 09:16:16 +00:00
# ifdef Q_WS_MAC
2011-12-21 12:47:47 +00:00
profile - > appearance - > setHighResPrinting ( true ) ;
2011-12-13 09:16:16 +00:00
ui - > highResolutionPrinting - > setChecked ( true ) ;
ui - > highResolutionPrinting - > setEnabled ( false ) ;
# else
2011-12-21 12:47:47 +00:00
ui - > highResolutionPrinting - > setChecked ( profile - > appearance - > highResPrinting ( ) ) ;
2011-12-13 09:16:16 +00:00
# endif
2011-12-12 02:58:51 +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-10-21 05:50:31 +00:00
if ( ! PREF . Exists ( " Updates_AutoCheck " ) ) PREF [ " Updates_AutoCheck " ] = true ;
ui - > automaticallyCheckUpdates - > setChecked ( PREF [ " Updates_AutoCheck " ] . toBool ( ) ) ;
if ( ! PREF . Exists ( " Updates_CheckFrequency " ) ) PREF [ " Updates_CheckFrequency " ] = 3 ;
ui - > updateCheckEvery - > setValue ( PREF [ " Updates_CheckFrequency " ] . toInt ( ) ) ;
if ( PREF . Exists ( " Updates_LastChecked " ) ) {
RefreshLastChecked ( ) ;
} 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 ( ) ) ;
2011-11-30 06:01:38 +00:00
2011-12-21 12:47:47 +00:00
ui - > oximetryGroupBox - > setChecked ( profile - > oxi - > oximetryEnabled ( ) ) ;
ui - > oximetrySync - > setChecked ( profile - > oxi - > syncOximetry ( ) ) ;
int ot = ui - > oximetryType - > findText ( profile - > oxi - > oximeterType ( ) , Qt : : MatchExactly ) ;
2011-12-03 05:10:23 +00:00
if ( ot < 0 ) ot = 0 ;
ui - > oximetryType - > setCurrentIndex ( ot ) ;
2011-10-10 22:27:25 +00:00
2011-08-03 03:09:57 +00:00
ui - > eventTable - > setColumnWidth ( 0 , 40 ) ;
2011-08-05 00:12:23 +00:00
ui - > eventTable - > setColumnWidth ( 1 , 55 ) ;
2011-09-23 05:22:52 +00:00
ui - > eventTable - > setColumnHidden ( 3 , true ) ;
2011-08-03 03:09:57 +00:00
int row = 0 ;
QTableWidgetItem * item ;
2011-09-17 12:39:00 +00:00
QHash < QString , schema : : Channel * > : : iterator ci ;
for ( ci = schema : : channel . names . begin ( ) ; ci ! = schema : : channel . names . end ( ) ; ci + + ) {
if ( ci . value ( ) - > type ( ) = = schema : : DATA ) {
2011-08-03 03:09:57 +00:00
ui - > eventTable - > insertRow ( row ) ;
2011-09-23 05:22:52 +00:00
int id = ci . value ( ) - > id ( ) ;
ui - > eventTable - > setItem ( row , 3 , new QTableWidgetItem ( QString : : number ( id ) ) ) ;
2011-09-17 12:39:00 +00:00
item = new QTableWidgetItem ( ci . value ( ) - > description ( ) ) ;
2011-08-03 03:09:57 +00:00
ui - > eventTable - > setItem ( row , 2 , item ) ;
QCheckBox * c = new QCheckBox ( ui - > eventTable ) ;
2011-08-05 00:12:23 +00:00
c - > setChecked ( true ) ;
2011-08-03 03:09:57 +00:00
QLabel * pb = new QLabel ( ui - > eventTable ) ;
pb - > setText ( " foo " ) ;
ui - > eventTable - > setCellWidget ( row , 0 , c ) ;
ui - > eventTable - > setCellWidget ( row , 1 , pb ) ;
2011-09-23 05:22:52 +00:00
2011-09-24 03:59:23 +00:00
2011-09-23 05:22:52 +00:00
QColor a = ci . value ( ) - > defaultColor ( ) ; //(rand() % 255, rand() % 255, rand() % 255, 255);
2011-08-03 03:09:57 +00:00
QPalette p ( a , a , a , a , a , a , a ) ;
pb - > setPalette ( p ) ;
pb - > setAutoFillBackground ( true ) ;
pb - > setBackgroundRole ( QPalette : : Background ) ;
row + + ;
}
}
2011-10-02 04:23:17 +00:00
/* QLocale locale=QLocale::system();
2011-09-12 05:18:31 +00:00
QString shortformat = locale . dateFormat ( QLocale : : ShortFormat ) ;
if ( ! shortformat . toLower ( ) . contains ( " yyyy " ) ) {
shortformat . replace ( " yy " , " yyyy " ) ;
2011-10-02 04:23:17 +00:00
} */
2011-11-27 14:35:25 +00:00
graphFilterModel = new MySortFilterProxyModel ( this ) ;
graphModel = new QStandardItemModel ( this ) ;
graphFilterModel - > setSourceModel ( graphModel ) ;
graphFilterModel - > setFilterCaseSensitivity ( Qt : : CaseInsensitive ) ;
graphFilterModel - > setFilterKeyColumn ( 0 ) ;
ui - > graphView - > setModel ( graphFilterModel ) ;
resetGraphModel ( ) ;
// tree->sortByColumn(0,Qt::AscendingOrder);
2011-08-03 03:09:57 +00:00
}
2011-08-05 07:52:32 +00:00
2011-08-02 22:37:15 +00:00
PreferencesDialog : : ~ PreferencesDialog ( )
{
2011-12-08 11:41:44 +00:00
disconnect ( graphModel , SIGNAL ( itemChanged ( QStandardItem * ) ) , this , SLOT ( graphModel_changed ( QStandardItem * ) ) ) ;
2011-08-02 22:37:15 +00:00
delete ui ;
}
2011-08-03 03:09:57 +00:00
void PreferencesDialog : : on_eventTable_doubleClicked ( const QModelIndex & index )
{
int row = index . row ( ) ;
int col = index . column ( ) ;
2011-09-23 05:22:52 +00:00
bool ok ;
int id = ui - > eventTable - > item ( row , 3 ) - > text ( ) . toInt ( & ok ) ;
2011-08-03 03:09:57 +00:00
if ( col = = 1 ) {
QWidget * w = ui - > eventTable - > cellWidget ( row , col ) ;
QColorDialog a ;
QColor color = w - > palette ( ) . background ( ) . color ( ) ;
a . setCurrentColor ( color ) ;
if ( a . exec ( ) = = QColorDialog : : Accepted ) {
QColor c = a . currentColor ( ) ;
QPalette p ( c , c , c , c , c , c , c ) ;
w - > setPalette ( p ) ;
2011-09-23 05:22:52 +00:00
m_new_colors [ id ] = c ;
//qDebug() << "Color accepted" << col << id;
2011-08-03 03:09:57 +00:00
}
}
}
2011-08-05 07:52:32 +00:00
2011-09-08 09:50:05 +00:00
void PreferencesDialog : : Save ( )
2011-08-05 07:52:32 +00:00
{
2011-11-07 04:10:48 +00:00
bool needs_restart = false ;
2011-12-21 12:47:47 +00:00
profile - > appearance - > setAnimations ( ui - > useAntiAliasing - > isChecked ( ) ) ;
if ( ui - > useSquareWavePlots - > isChecked ( ) ! = profile - > appearance - > squareWavePlots ( ) ) {
profile - > appearance - > setSquareWavePlots ( ui - > useSquareWavePlots - > isChecked ( ) ) ;
2011-11-30 09:08:45 +00:00
needs_restart = true ;
2011-11-30 06:01:38 +00:00
}
2011-12-21 12:47:47 +00:00
profile - > appearance - > setGraphSnapshots ( ui - > enableGraphSnapshots - > isChecked ( ) ) ;
profile - > general - > setSkipEmptyDays ( ui - > skipEmptyDays - > isChecked ( ) ) ;
profile - > session - > setMultithreading ( ui - > enableMultithreading - > isChecked ( ) ) ;
profile - > session - > setCacheSessions ( ui - > cacheSessionData - > isChecked ( ) ) ;
profile - > cpap - > setMaskDescription ( ui - > maskDescription - > text ( ) ) ;
profile - > appearance - > setHighResPrinting ( ui - > highResolutionPrinting - > isChecked ( ) ) ;
profile - > appearance - > setAnimations ( ui - > animationsAndTransitionsCheckbox - > isChecked ( ) ) ;
profile - > cpap - > setShowComplianceInfo ( ui - > complianceGroupbox - > isChecked ( ) ) ;
profile - > cpap - > setComplianceHours ( ui - > complianceHours - > value ( ) ) ;
profile - > cpap - > setMaskStartDate ( ui - > startedUsingMask - > date ( ) ) ;
profile - > appearance - > setGraphHeight ( ui - > graphHeight - > value ( ) ) ;
if ( ( profile - > session - > daySplitTime ( ) ! = ui - > timeEdit - > time ( ) ) | |
( profile - > session - > combineCloseSessions ( ) ! = ui - > combineSlider - > value ( ) ) | |
( profile - > session - > ignoreShortSessions ( ) ! = ui - > IgnoreSlider - > value ( ) ) ) {
profile - > session - > setTrashDayCache ( true ) ;
2011-12-11 10:59:30 +00:00
needs_restart = true ;
2011-12-21 12:47:47 +00:00
} else profile - > session - > setTrashDayCache ( false ) ;
2011-08-05 07:52:32 +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 ( ) ) ;
2011-11-30 06:01:38 +00:00
2011-12-21 12:47:47 +00:00
profile - > appearance - > setOverlayType ( ( OverlayDisplayType ) ui - > overlayFlagsCombo - > currentIndex ( ) ) ;
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 - > setOximetryEnabled ( ui - > oximetryGroupBox - > isChecked ( ) ) ;
profile - > oxi - > setSyncOximetry ( ui - > oximetrySync - > isChecked ( ) ) ;
2011-11-30 06:01:38 +00:00
int oxigrp = ui - > oximetrySync - > isChecked ( ) ? 0 : 1 ;
gGraphView * gv = mainwin - > getDaily ( ) - > graphView ( ) ;
2011-12-21 12:47:47 +00:00
gGraph * g = gv - > findGraph ( tr ( " Pulse " ) ) ;
2011-11-30 06:01:38 +00:00
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2011-12-21 12:47:47 +00:00
g = gv - > findGraph ( tr ( " SpO2 " ) ) ;
2011-11-30 06:01:38 +00:00
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2011-12-21 12:47:47 +00:00
g = gv - > findGraph ( tr ( " Plethy " ) ) ;
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
2011-12-21 12:47:47 +00:00
PREF [ " SkipLoginScreen " ] = ui - > skipLoginScreen - > isChecked ( ) ;
2011-11-07 04:10:48 +00:00
2011-10-21 05:50:31 +00:00
PREF [ " Updates_AutoCheck " ] = ui - > automaticallyCheckUpdates - > isChecked ( ) ;
PREF [ " Updates_CheckFrequency " ] = ui - > updateCheckEvery - > value ( ) ;
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
2011-10-21 05:50:31 +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
2011-10-21 05:50:31 +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
2011-10-21 05:50:31 +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
QFont font = ui - > applicationFont - > currentFont ( ) ;
font . setPointSize ( ui - > applicationFontSize - > value ( ) ) ;
font . setWeight ( ui - > applicationFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
font . setItalic ( ui - > applicationFontItalic - > isChecked ( ) ) ;
QApplication : : setFont ( font ) ;
* defaultfont = ui - > graphFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
defaultfont - > setPointSize ( ui - > graphFontSize - > value ( ) ) ;
2011-10-05 10:44:41 +00:00
defaultfont - > setWeight ( ui - > graphFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
defaultfont - > setItalic ( ui - > graphFontItalic - > isChecked ( ) ) ;
* mediumfont = ui - > titleFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
mediumfont - > setPointSize ( ui - > titleFontSize - > value ( ) ) ;
2011-10-05 10:44:41 +00:00
mediumfont - > setWeight ( ui - > titleFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
mediumfont - > setItalic ( ui - > titleFontItalic - > isChecked ( ) ) ;
* bigfont = ui - > bigFont - > currentFont ( ) ;
2011-10-05 11:51:33 +00:00
bigfont - > setPointSize ( ui - > bigFontSize - > value ( ) ) ;
2011-10-05 10:44:41 +00:00
bigfont - > setWeight ( ui - > bigFontBold - > isChecked ( ) ? QFont : : Bold : QFont : : Normal ) ;
bigfont - > setItalic ( ui - > bigFontItalic - > isChecked ( ) ) ;
2011-11-08 12:42:30 +00:00
// Process color changes
2011-09-23 05:22:52 +00:00
for ( QHash < int , QColor > : : iterator i = m_new_colors . begin ( ) ; i ! = m_new_colors . end ( ) ; i + + ) {
schema : : Channel & chan = schema : : channel [ i . key ( ) ] ;
if ( ! chan . isNull ( ) ) {
qDebug ( ) < < " TODO: Change " < < chan . name ( ) < < " color to " < < i . value ( ) ;
chan . setDefaultColor ( i . value ( ) ) ;
}
}
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
2011-11-20 23:39:55 +00:00
{
QString filename = PROFILE . Get ( " {DataFolder}/ImportLocations.txt " ) ;
QFile file ( filename ) ;
file . open ( QFile : : WriteOnly ) ;
QTextStream ts ( & file ) ;
for ( int i = 0 ; i < importLocations . size ( ) ; i + + ) {
ts < < importLocations [ i ] < < endl ;
//file.write(importLocations[i].toUtf8());
}
file . close ( ) ;
}
2011-12-11 10:59:30 +00:00
//PROFILE.Save();
//PREF.Save();
2011-11-07 04:10:48 +00:00
if ( needs_restart ) {
2011-12-18 16:39:36 +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, in order for these changes to come into effect. \n Would you like do this now? " ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2011-12-13 08:05:33 +00:00
mainwin - > RestartApplication ( ) ;
2011-11-07 04:27:49 +00:00
}
2011-11-07 04:10:48 +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
{
if ( position > 0 ) {
ui - > combineLCD - > display ( position ) ;
} else ui - > combineLCD - > display ( tr ( " OFF " ) ) ;
}
2011-09-23 03:54:48 +00:00
void PreferencesDialog : : on_IgnoreSlider_valueChanged ( int position )
2011-08-05 07:52:32 +00:00
{
if ( position > 0 ) {
ui - > IgnoreLCD - > display ( position ) ;
} else ui - > IgnoreLCD - > display ( tr ( " OFF " ) ) ;
}
2011-10-05 10:44:41 +00:00
2011-10-21 05:50:31 +00:00
# include "mainwindow.h"
extern MainWindow * mainwin ;
void PreferencesDialog : : RefreshLastChecked ( )
{
ui - > updateLastChecked - > setText ( PREF [ " Updates_LastChecked " ] . toDateTime ( ) . toString ( Qt : : SystemLocaleLongDate ) ) ;
}
void PreferencesDialog : : on_checkForUpdatesButton_clicked ( )
{
2011-12-18 16:39:36 +00:00
//mainwin->statusBar()->showMessage("Checking for Updates");
//ui->updateLastChecked->setText("Checking for Updates");
2011-10-21 05:50:31 +00:00
mainwin - > CheckForUpdates ( ) ;
}
2011-11-20 23:39:55 +00:00
void PreferencesDialog : : on_addImportLocation_clicked ( )
{
2011-12-18 16:39:36 +00:00
QString dir = QFileDialog : : getExistingDirectory ( this , tr ( " Add this Location to the Import List " ) , " " , QFileDialog : : ShowDirsOnly ) ;
2011-11-20 23:39:55 +00:00
if ( ! dir . isEmpty ( ) ) {
if ( ! importLocations . contains ( dir ) ) {
importLocations . append ( dir ) ;
importModel - > setStringList ( importLocations ) ;
}
}
}
void PreferencesDialog : : on_removeImportLocation_clicked ( )
{
if ( ui - > importListWidget - > currentIndex ( ) . isValid ( ) ) {
QString dir = ui - > importListWidget - > currentIndex ( ) . data ( ) . toString ( ) ;
importModel - > removeRow ( ui - > importListWidget - > currentIndex ( ) . row ( ) ) ;
importLocations . removeAll ( dir ) ;
}
}
2011-11-27 14:35:25 +00:00
void PreferencesDialog : : on_graphView_activated ( const QModelIndex & index )
{
QString a = index . data ( ) . toString ( ) ;
qDebug ( ) < < " Could do something here with " < < a ;
}
void PreferencesDialog : : on_graphFilter_textChanged ( const QString & arg1 )
{
graphFilterModel - > setFilterFixedString ( arg1 ) ;
}
MySortFilterProxyModel : : MySortFilterProxyModel ( QObject * parent )
: QSortFilterProxyModel ( parent )
{
}
bool MySortFilterProxyModel : : filterAcceptsRow ( int source_row , const QModelIndex & source_parent ) const
{
if ( source_parent = = qobject_cast < QStandardItemModel * > ( sourceModel ( ) ) - > invisibleRootItem ( ) - > index ( ) ) {
// always accept children of rootitem, since we want to filter their children
return true ;
}
return QSortFilterProxyModel : : filterAcceptsRow ( source_row , source_parent ) ;
}
2011-12-08 11:41:44 +00:00
void PreferencesDialog : : graphModel_changed ( QStandardItem * item )
2011-11-27 14:35:25 +00:00
{
QModelIndex index = item - > index ( ) ;
gGraphView * gv = NULL ;
bool ok ;
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
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 ;
case 2 : gv = mainwin - > getOximetry ( ) - > graphView ( ) ; break ;
default : ;
}
if ( ! gv )
return ;
gGraph * graph = ( * gv ) [ id ] ;
if ( ! graph )
return ;
if ( graph - > visible ( ) ! = checked ) {
graph - > setVisible ( checked ) ;
}
EventDataType val ;
if ( index . column ( ) = = 1 ) {
val = index . data ( ) . toDouble ( & ok ) ;
if ( ! ok ) {
graphModel - > setData ( index , QString : : number ( graph - > rec_miny , ' f ' , 1 ) ) ;
ui - > graphView - > update ( ) ;
} else {
2011-12-01 06:06:13 +00:00
//if ((val < graph->rec_maxy) || (val==0)) {
2011-11-27 16:07:28 +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
}
} else if ( index . column ( ) = = 2 ) {
val = index . data ( ) . toDouble ( & ok ) ;
if ( ! ok ) {
graphModel - > setData ( index , QString : : number ( graph - > rec_maxy , ' f ' , 1 ) ) ;
ui - > graphView - > update ( ) ;
} else {
2011-12-01 06:06:13 +00:00
//if ((val > graph->rec_miny) || (val==0)) {
2011-11-27 16:07:28 +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
}
}
2011-11-27 16:35:17 +00:00
gv - > updateScale ( ) ;
2011-11-27 14:35:25 +00:00
// qDebug() << name << checked;
}
void PreferencesDialog : : resetGraphModel ( )
{
graphModel - > clear ( ) ;
2011-12-18 16:39:36 +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 " ) ) ;
headers . append ( tr ( " Min " ) ) ;
headers . append ( tr ( " Max " ) ) ;
2011-11-27 14:35:25 +00:00
graphModel - > setHorizontalHeaderLabels ( headers ) ;
ui - > graphView - > setColumnWidth ( 0 , 250 ) ;
ui - > graphView - > setColumnWidth ( 1 , 50 ) ;
ui - > graphView - > setColumnWidth ( 2 , 50 ) ;
gGraphView * gv = mainwin - > getDaily ( ) - > graphView ( ) ;
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
QList < QStandardItem * > items ;
QString title = ( * gv ) [ i ] - > title ( ) ;
QStandardItem * it = new QStandardItem ( title ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( ( * gv ) [ i ] - > visible ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( false ) ;
it - > setData ( 0 , Qt : : UserRole + 1 ) ;
it - > setData ( i , Qt : : UserRole + 2 ) ;
items . push_back ( it ) ;
2011-12-18 16:39:36 +00:00
if ( title ! = tr ( " Event Flags " ) ) { // ouchie.. Translations will cause problems here..
2011-11-27 14:35:25 +00:00
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_miny , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_maxy , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
} else {
it = new QStandardItem ( tr ( " N/A " ) ) ; // not applicable.
it - > setEditable ( false ) ;
items . push_back ( it ) ;
items . push_back ( it - > clone ( ) ) ;
}
daily - > insertRow ( i , items ) ;
}
gv = mainwin - > getOverview ( ) - > graphView ( ) ;
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
QList < QStandardItem * > items ;
QStandardItem * it = new QStandardItem ( ( * gv ) [ i ] - > title ( ) ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( ( * gv ) [ i ] - > visible ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( false ) ;
items . push_back ( it ) ;
it - > setData ( 1 , Qt : : UserRole + 1 ) ;
it - > setData ( i , Qt : : UserRole + 2 ) ;
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_miny , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_maxy , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
overview - > insertRow ( i , items ) ;
}
if ( mainwin - > getOximetry ( ) ) {
2011-12-18 16:39:36 +00:00
QStandardItem * oximetry = new QStandardItem ( tr ( " Oximetry Graphs " ) ) ;
2011-11-27 14:35:25 +00:00
graphModel - > appendRow ( oximetry ) ;
oximetry - > setEditable ( false ) ;
gv = mainwin - > getOximetry ( ) - > graphView ( ) ;
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
QList < QStandardItem * > items ;
QStandardItem * it = new QStandardItem ( ( * gv ) [ i ] - > title ( ) ) ;
it - > setCheckable ( true ) ;
it - > setCheckState ( ( * gv ) [ i ] - > visible ( ) ? Qt : : Checked : Qt : : Unchecked ) ;
it - > setEditable ( false ) ;
it - > setData ( 2 , Qt : : UserRole + 1 ) ;
it - > setData ( i , Qt : : UserRole + 2 ) ;
items . push_back ( it ) ;
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_miny , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
it = new QStandardItem ( QString : : number ( ( * gv ) [ i ] - > rec_maxy , ' f ' , 1 ) ) ;
it - > setEditable ( true ) ;
items . push_back ( it ) ;
oximetry - > insertRow ( i , items ) ;
}
}
2011-12-08 13:41:43 +00:00
connect ( graphModel , SIGNAL ( itemChanged ( QStandardItem * ) ) , this , SLOT ( graphModel_changed ( QStandardItem * ) ) ) ;
2011-11-27 14:35:25 +00:00
ui - > graphView - > expandAll ( ) ;
}
void PreferencesDialog : : on_resetGraphButton_clicked ( )
{
2011-12-18 16:39:36 +00:00
if ( QMessageBox : : question ( this , tr ( " Confirmation " ) , tr ( " Are you sure you want to reset your graph preferences to the defaults? " ) , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2011-11-27 14:35:25 +00:00
gGraphView * gv [ 3 ] ;
gv [ 0 ] = mainwin - > getDaily ( ) - > graphView ( ) ;
gv [ 1 ] = mainwin - > getOverview ( ) - > graphView ( ) ;
gv [ 2 ] = mainwin - > getOximetry ( ) - > graphView ( ) ;
for ( int j = 0 ; j < 3 ; j + + ) {
if ( gv [ j ] ! = NULL ) {
for ( int i = 0 ; i < gv [ j ] - > size ( ) ; i + + ) {
gGraph * g = ( * ( gv [ j ] ) ) [ i ] ;
2011-11-27 16:07:28 +00:00
g - > setRecMaxY ( 0 ) ;
g - > setRecMinY ( 0 ) ;
2011-11-27 14:35:25 +00:00
g - > setVisible ( true ) ;
}
2011-11-27 16:35:17 +00:00
gv [ j ] - > updateScale ( ) ;
2011-11-27 14:35:25 +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 )
{
if ( index < num_masks ) {
QTableWidgetItem * item ;
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 ) ;
if ( ! item ) {
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 ) ;
if ( ! item ) {
item = new QTableWidgetItem ( val ) ;
ui - > leakProfile - > setItem ( i , 1 , item ) ;
} else item - > setText ( val ) ;
}
}
}