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 [ ] = {
{ " Unspecified " , { { 4 , 25 } , { 8 , 25 } , { 12 , 25 } , { 16 , 25 } , { 20 , 25 } } } ,
{ " Nasal Pillows " , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ " Hybrid F/F Mask " , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ " Nasal Interface " , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
{ " Full-Face Mask " , { { 4 , 20 } , { 8 , 29 } , { 12 , 37 } , { 16 , 43 } , { 20 , 49 } } } ,
} ;
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 ( ) ;
QString masktype = " Nasal Pillows " ;
//masktype=PROFILE["MaskType"].toString();
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 ;
v = ( * profile ) [ " SPO2DropPercentage " ] . toDouble ( & ok ) ;
2011-12-05 15:03:16 +00:00
if ( ! ok ) v = 3 ;
2011-11-28 04:05:09 +00:00
ui - > spo2Drop - > setValue ( v ) ;
v = ( * profile ) [ " SPO2DropDuration " ] . toDouble ( & ok ) ;
2011-12-05 15:03:16 +00:00
if ( ! ok ) v = 10 ;
2011-11-28 04:05:09 +00:00
ui - > spo2DropTime - > setValue ( v ) ;
v = ( * profile ) [ " PulseChangeBPM " ] . toDouble ( & ok ) ;
2011-12-05 15:03:16 +00:00
if ( ! ok ) v = 8 ;
2011-11-28 04:05:09 +00:00
ui - > pulseChange - > setValue ( v ) ;
v = ( * profile ) [ " PulseChangeDuration " ] . toDouble ( & ok ) ;
if ( ! ok ) v = 5 ;
ui - > pulseChangeTime - > setValue ( v ) ;
2011-12-02 01:04:26 +00:00
v = ( * profile ) [ " OxiDiscardThreshold " ] . toDouble ( & ok ) ;
if ( ! ok ) v = 10 ;
ui - > oxiDiscardThreshold - > setValue ( v ) ;
2011-11-28 04:05:09 +00:00
2011-10-05 07:41:56 +00:00
QTime t = ( * profile ) [ " DaySplitTime " ] . toTime ( ) ;
2011-09-23 03:54:48 +00:00
ui - > timeEdit - > setTime ( t ) ;
2011-08-05 08:41:45 +00:00
int val ;
2011-10-05 07:41:56 +00:00
val = ( * profile ) [ " CombineCloserSessions " ] . toInt ( ) ;
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-10-05 07:41:56 +00:00
val = ( * profile ) [ " IgnoreShorterSessions " ] . toInt ( ) ;
2011-09-23 03:54:48 +00:00
ui - > IgnoreSlider - > setValue ( val ) ;
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-11-30 06:01:38 +00:00
//if (!(*profile).Exists("SkipEmptyDays")) (*profile)["SkipEmptyDays"]=true;
//ui->skipEmptyDays->setChecked((*profile)["SkipEmptyDays"].toBool());
general . clear ( ) ;
2011-11-30 09:08:45 +00:00
general [ " UseAntiAliasing " ] = Preference ( p_profile , " UseAntiAliasing " , PT_Checkbox , " Use Anti-Aliasing " , " Enable Graphical smoothing. Doesn't always look pretty. " , false ) ;
general [ " SquareWavePlots " ] = Preference ( p_profile , " SquareWavePlots " , PT_Checkbox , " Square Wave Plots " , " Try to use Square Wave plots where possible " , true ) ;
general [ " EnableGraphSnapshots " ] = Preference ( p_profile , " EnableGraphSnapshots " , PT_Checkbox , " Event Breakdown Piechart " , " Shows Event Breakdown in Daily view. This may cause problems on older computers. " , true ) ;
general [ " SkipLoginScreen " ] = Preference ( p_pref , " SkipLoginScreen " , PT_Checkbox , " Skip Login Screen " , " Bypass the login screen at startup " , false ) ;
general [ " SkipEmptyDays " ] = Preference ( p_profile , " SkipEmptyDays " , PT_Checkbox , " Skip Empty Days " , " Skip over calendar days that don't have any data " , true ) ;
general [ " EnableMultithreading " ] = Preference ( p_profile , " EnableMultithreading " , PT_Checkbox , " Enable Multithreading " , " Try to use extra processor cores where possible " , false ) ;
general [ " MemoryHog " ] = Preference ( p_profile , " MemoryHog " , PT_Checkbox , " Cache Session Data " , " Keep session data in memory to improve load speed revisiting the date. " , false ) ;
2011-11-30 12:58:41 +00:00
general [ " GraphHeight " ] = Preference ( p_profile , " GraphHeight " , PT_Checkbox , " Graph Height " , " Default Graph Height " , 160 ) ;
general [ " MaskDescription " ] = Preference ( p_profile , " MaskDescription " , PT_Checkbox , " Mask Description " , " Whatever you want to record about your mask. " , QString ( ) ) ;
2011-12-06 23:49:26 +00:00
general [ " HighResPrinting " ] = Preference ( p_profile , " HighResPrinting " , PT_Checkbox , " High Resolution Printing " , " Use much slower but better quality high resolution printing. " , QString ( ) ) ;
2011-12-02 05:54:25 +00:00
if ( ! ( p_profile ) - > Exists ( " MaskStartDate " ) ) {
( PROFILE [ " MaskStartDate " ] = PROFILE . FirstDay ( ) ) ;
}
ui - > startedUsingMask - > setDate ( ( * profile ) [ " MaskStartDate " ] . toDate ( ) ) ;
if ( ! ( p_profile ) - > Exists ( " ShowLeaksMode " ) ) {
PROFILE [ " ShowLeaksMode " ] = 0 ;
}
ui - > leakModeCombo - > setCurrentIndex ( ( * profile ) [ " ShowLeaksMode " ] . toInt ( ) ) ;
if ( ! ( p_profile ) - > Exists ( " MaskType " ) ) {
PROFILE [ " MaskType " ] = 0 ;
}
int mt = ( * profile ) [ " MaskType " ] . toInt ( ) ;
ui - > maskTypeCombo - > setCurrentIndex ( mt ) ;
on_maskTypeCombo_activated ( mt ) ;
2011-11-30 12:58:41 +00:00
ui - > maskDescription - > setText ( general [ " MaskDescription " ] . value ( ) . toString ( ) ) ;
2011-11-30 09:08:45 +00:00
ui - > useAntiAliasing - > setChecked ( general [ " UseAntiAliasing " ] . value ( ) . toBool ( ) ) ;
ui - > useSquareWavePlots - > setChecked ( general [ " SquareWavePlots " ] . value ( ) . toBool ( ) ) ;
ui - > enableGraphSnapshots - > setChecked ( general [ " EnableGraphSnapshots " ] . value ( ) . toBool ( ) ) ;
ui - > skipLoginScreen - > setChecked ( general [ " SkipLoginScreen " ] . value ( ) . toBool ( ) ) ;
ui - > skipEmptyDays - > setChecked ( general [ " SkipEmptyDays " ] . value ( ) . toBool ( ) ) ;
ui - > enableMultithreading - > setChecked ( general [ " EnableMultithreading " ] . value ( ) . toBool ( ) ) ;
ui - > cacheSessionData - > setChecked ( general [ " MemoryHog " ] . value ( ) . toBool ( ) ) ;
2011-12-06 23:49:26 +00:00
ui - > highResolutionPrinting - > setChecked ( general [ " HighResPrinting " ] . value ( ) . toBool ( ) ) ;
2011-11-30 12:58:41 +00:00
ui - > graphHeight - > setValue ( general [ " GraphHeight " ] . value ( ) . toInt ( ) ) ;
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-08-05 08:41:45 +00:00
if ( val > 0 ) {
ui - > IgnoreLCD - > display ( val ) ;
} else ui - > IgnoreLCD - > display ( tr ( " OFF " ) ) ;
2011-10-05 07:41:56 +00:00
ui - > overlayFlagsCombo - > setCurrentIndex ( ( * profile ) [ " AlwaysShowOverlayBars " ] . toInt ( ) ) ;
2011-11-30 06:01:38 +00:00
//ui->memoryHogCheckbox->setChecked((*profile)["MemoryHog"].toBool());
//ui->intentionalLeakEdit->setValue((*profile)["IntentionalLeak"].toDouble());
//ui->useMultithreading->setChecked((*profile)["EnableMultithreading"].toBool());
2011-08-05 07:52:32 +00:00
2011-10-10 22:27:25 +00:00
ui - > oximetryGroupBox - > setChecked ( ( * profile ) [ " EnableOximetry " ] . toBool ( ) ) ;
ui - > oximetrySync - > setChecked ( ( * profile ) [ " SyncOximetry " ] . toBool ( ) ) ;
2011-12-03 05:10:23 +00:00
int ot = ui - > oximetryType - > findText ( ( * profile ) [ " OximeterType " ] . toString ( ) , Qt : : MatchExactly ) ;
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-11-30 09:08:45 +00:00
general [ " UseAntiAliasing " ] . setValue ( ui - > useAntiAliasing - > isChecked ( ) ) ;
if ( ui - > useSquareWavePlots - > isChecked ( ) ! = general [ " SquareWavePlots " ] . value ( ) . toBool ( ) ) {
general [ " SquareWavePlots " ] . setValue ( ui - > useSquareWavePlots - > isChecked ( ) ) ;
needs_restart = true ;
2011-11-30 06:01:38 +00:00
}
2011-11-30 09:08:45 +00:00
general [ " EnableGraphSnapshots " ] . setValue ( ui - > enableGraphSnapshots - > isChecked ( ) ) ;
general [ " SkipLoginScreen " ] . setValue ( ui - > skipLoginScreen - > isChecked ( ) ) ;
general [ " SkipEmptyDays " ] . setValue ( ui - > skipEmptyDays - > isChecked ( ) ) ;
general [ " EnableMultithreading " ] . setValue ( ui - > enableMultithreading - > isChecked ( ) ) ;
general [ " MemoryHog " ] . setValue ( ui - > cacheSessionData - > isChecked ( ) ) ;
2011-11-30 12:58:41 +00:00
general [ " MaskDescription " ] . setValue ( ui - > maskDescription - > text ( ) ) ;
2011-12-06 23:49:26 +00:00
general [ " HighResPrinting " ] . setValue ( ui - > highResolutionPrinting - > isChecked ( ) ) ;
2011-11-30 12:58:41 +00:00
( * profile ) [ " MaskStartDate " ] = ui - > startedUsingMask - > date ( ) ;
( * profile ) [ " GraphHeight " ] = ui - > graphHeight - > value ( ) ;
2011-09-08 09:50:05 +00:00
2011-11-08 09:28:25 +00:00
if ( ( * profile ) [ " CombineCloserSessions " ] . toInt ( ) ! = ui - > combineSlider - > value ( ) ) needs_restart = true ;
if ( ( * profile ) [ " IgnoreShorterSessions " ] . toInt ( ) ! = ui - > IgnoreSlider - > value ( ) ) needs_restart = true ;
2011-10-05 07:41:56 +00:00
( * profile ) [ " CombineCloserSessions " ] = ui - > combineSlider - > value ( ) ;
( * profile ) [ " IgnoreShorterSessions " ] = ui - > IgnoreSlider - > value ( ) ;
2011-09-08 09:50:05 +00:00
2011-11-08 09:28:25 +00:00
if ( ( * profile ) [ " DaySplitTime " ] . toTime ( ) ! = ui - > timeEdit - > time ( ) ) needs_restart = true ;
2011-11-07 04:10:48 +00:00
2011-10-05 07:41:56 +00:00
( * profile ) [ " DaySplitTime " ] = ui - > timeEdit - > time ( ) ;
2011-08-05 07:52:32 +00:00
2011-10-05 07:41:56 +00:00
( * profile ) [ " AlwaysShowOverlayBars " ] = ui - > overlayFlagsCombo - > currentIndex ( ) ;
2011-12-02 05:54:25 +00:00
( * profile ) [ " ShowLeaksMode " ] = ui - > leakModeCombo - > currentIndex ( ) ;
( * profile ) [ " MaskType " ] = ui - > maskTypeCombo - > currentIndex ( ) ;
2011-11-30 06:01:38 +00:00
//(*profile)["UseAntiAliasing"]=ui->genOpWidget->item(0)->checkState()==Qt::Checked;
//(*profile)["MemoryHog"]=ui->memoryHogCheckbox->isChecked();
//(*profile)["EnableGraphSnapshots"]=ui->genOpWidget->item(2)->checkState()==Qt::Checked;
//(*profile)["IntentionalLeak"]=ui->intentionalLeakEdit->value();
//(*profile)["EnableMultithreading"]=ui->useMultithreading->isChecked();
2011-10-10 22:27:25 +00:00
( * profile ) [ " EnableOximetry " ] = ui - > oximetryGroupBox - > isChecked ( ) ;
( * profile ) [ " SyncOximetry " ] = ui - > oximetrySync - > isChecked ( ) ;
2011-11-30 06:01:38 +00:00
int oxigrp = ui - > oximetrySync - > isChecked ( ) ? 0 : 1 ;
gGraphView * gv = mainwin - > getDaily ( ) - > graphView ( ) ;
gGraph * g = gv - > findGraph ( " Pulse " ) ;
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
g = gv - > findGraph ( " SpO2 " ) ;
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
g = gv - > findGraph ( " Plethy " ) ;
if ( g ) {
g - > setGroup ( oxigrp ) ;
}
2011-10-10 22:27:25 +00:00
( * profile ) [ " OximeterType " ] = ui - > oximetryType - > currentText ( ) ;
2011-09-23 03:54:48 +00:00
2011-11-28 04:05:09 +00:00
( * profile ) [ " SPO2DropPercentage " ] = ui - > spo2Drop - > value ( ) ;
( * profile ) [ " SPO2DropDuration " ] = ui - > spo2DropTime - > value ( ) ;
( * profile ) [ " PulseChangeBPM " ] = ui - > pulseChange - > value ( ) ;
( * profile ) [ " PulseChangeDuration " ] = ui - > pulseChangeTime - > value ( ) ;
2011-12-02 01:04:26 +00:00
( * profile ) [ " OxiDiscardThreshold " ] = ui - > oxiDiscardThreshold - > value ( ) ;
2011-11-28 04:05:09 +00:00
2011-11-30 06:01:38 +00:00
//PREF["SkipLoginScreen"]=ui->skipLoginScreen->isChecked();
2011-11-18 09:05:22 +00:00
2011-11-30 06:01:38 +00:00
//ui->genOpWidget->item(1)->checkState()==Qt::Checked ? true : false;
//if ((ui->genOpWidget->item(1)->checkState()==Qt::Checked) != (*profile)["SquareWavePlots"].toBool()) {
//needs_restart=true;
//}
//(*profile)["SquareWavePlots"]=ui->genOpWidget->item(1)->checkState()==Qt::Checked;
2011-11-07 04:10:48 +00:00
2011-11-30 06:01:38 +00:00
//(*profile)["SkipEmptyDays"]=ui->skipEmptyDays->isChecked();
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-08 13:33:29 +00:00
PROFILE . Save ( ) ;
2011-10-05 07:41:56 +00:00
PREF . Save ( ) ;
2011-11-07 04:10:48 +00:00
if ( needs_restart ) {
2011-11-07 04:27:49 +00:00
if ( QMessageBox : : question ( this , " Restart Required " , " 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-11-07 10:54:47 +00:00
QString apppath ;
2011-11-07 04:45:30 +00:00
# ifdef Q_OS_MAC
// In Mac OS the full path of aplication binary is:
// <base-path>/myApp.app/Contents/MacOS/myApp
2011-11-08 12:42:30 +00:00
// prune the extra bits to just get the app bundle path
2011-11-08 08:47:14 +00:00
apppath = QApplication : : instance ( ) - > applicationDirPath ( ) . section ( " / " , 0 , - 3 ) ;
2011-11-08 12:42:30 +00:00
2011-11-08 09:43:50 +00:00
QStringList args ;
2011-11-08 12:42:30 +00:00
args < < " -n " < < apppath ; // -n option is important, as it opens a new process
2011-11-08 09:43:50 +00:00
if ( QProcess : : startDetached ( " /usr/bin/open " , args ) ) {
QApplication : : instance ( ) - > exit ( ) ;
2011-11-08 12:42:30 +00:00
} else QMessageBox : : warning ( this , " Gah! " , " If you can read this, the restart command didn't work. Your going to have to do it yourself manually. " , QMessageBox : : Ok ) ;
2011-11-08 09:39:16 +00:00
2011-11-07 04:45:30 +00:00
# else
2011-11-07 10:54:47 +00:00
apppath = QApplication : : instance ( ) - > applicationFilePath ( ) ;
2011-11-08 09:28:25 +00:00
2011-11-08 12:42:30 +00:00
// If this doesn't work on windoze, try uncommenting this method
// Technically should be the same thing..
//if (QDesktopServices::openUrl(apppath)) {
// QApplication::instance()->exit();
//} else
if ( QProcess : : startDetached ( apppath ) ) {
2011-11-08 09:28:25 +00:00
QApplication : : instance ( ) - > exit ( ) ;
2011-11-08 12:42:30 +00:00
} else QMessageBox : : warning ( this , " Gah! " , " If you can read this, the restart command didn't work. Your going to have to do it yourself manually. " , QMessageBox : : Ok ) ;
2011-11-08 02:56:23 +00:00
# endif
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 ( )
{
mainwin - > statusBar ( ) - > showMessage ( " Checking for Updates " ) ;
ui - > updateLastChecked - > setText ( " Checking for Updates " ) ;
mainwin - > CheckForUpdates ( ) ;
}
2011-11-20 23:39:55 +00:00
void PreferencesDialog : : on_addImportLocation_clicked ( )
{
QString dir = QFileDialog : : getExistingDirectory ( this , " Add this Location to the Import List " , " " , QFileDialog : : ShowDirsOnly ) ;
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 ( ) ;
QStandardItem * daily = new QStandardItem ( " Daily Graphs " ) ;
QStandardItem * overview = new QStandardItem ( " Overview Graphs " ) ;
daily - > setEditable ( false ) ;
overview - > setEditable ( false ) ;
graphModel - > appendRow ( daily ) ;
graphModel - > appendRow ( overview ) ;
2011-12-08 11:41:44 +00:00
connect ( graphModel , SIGNAL ( itemChanged ( QStandardItem * ) ) , this , SLOT ( graphModel_changed ( QStandardItem * ) ) ) ;
2011-11-27 14:35:25 +00:00
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 ;
headers . append ( " Graph " ) ;
headers . append ( " Min " ) ;
headers . append ( " Max " ) ;
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 ) ;
if ( title ! = " Event Flags " ) {
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 ( ) ) {
QStandardItem * oximetry = new QStandardItem ( " Oximetry Graphs " ) ;
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 ) ;
}
}
ui - > graphView - > expandAll ( ) ;
}
void PreferencesDialog : : on_resetGraphButton_clicked ( )
{
if ( QMessageBox : : question ( this , " Confirmation " , " Are you sure you want to reset your graph preferences to the defaults? " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
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 ) ;
}
}
}