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-08-02 22:37:15 +00:00
# include "preferencesdialog.h"
# 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-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-10-05 12:43:34 +00:00
ui - > tabWidget - > removeTab ( 3 ) ;
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
int i = ui - > unitCombo - > findText ( ( * profile ) [ " UnitSystem " ] . toString ( ) ) ;
2011-09-10 14:17:45 +00:00
if ( i < 0 ) i = 0 ;
2011-09-08 09:50:05 +00:00
ui - > unitCombo - > setCurrentIndex ( i ) ;
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-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-10-05 23:20:56 +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-10-05 23:20:56 +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-10-05 23:20:56 +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-10-05 23:20:56 +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-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 ( ) ) ;
ui - > useAntiAliasing - > setChecked ( ( * profile ) [ " UseAntiAliasing " ] . toBool ( ) ) ;
ui - > memoryHogCheckbox - > setChecked ( ( * profile ) [ " MemoryHog " ] . toBool ( ) ) ;
ui - > useGraphSnapshots - > setChecked ( ( * profile ) [ " EnableGraphSnapshots " ] . 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 ( ) ) ;
ui - > oximetryType - > setCurrentIndex ( ui - > oximetryType - > findText ( ( * profile ) [ " OximeterType " ] . toString ( ) , Qt : : MatchExactly ) ) ;
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-10-05 03:05:35 +00:00
QTreeWidget * tree = ui - > graphTree ;
tree - > clear ( ) ;
tree - > setColumnCount ( 1 ) ; // 1 visible common.. (1 hidden)
QTreeWidgetItem * daily = new QTreeWidgetItem ( ( QTreeWidget * ) 0 , QStringList ( " Daily Graphs " ) ) ;
QTreeWidgetItem * overview = new QTreeWidgetItem ( ( QTreeWidget * ) 0 , QStringList ( " Overview Graphs " ) ) ;
tree - > insertTopLevelItem ( 0 , daily ) ;
tree - > insertTopLevelItem ( 0 , overview ) ;
QTreeWidgetItem * it = new QTreeWidgetItem ( daily , QStringList ( " Event Flags " ) ) ; //,QTreeWidgetItem::UserType);
it - > setFlags ( Qt : : ItemIsUserCheckable | Qt : : ItemIsSelectable | Qt : : ItemIsEnabled ) ;
it - > setCheckState ( 0 , Qt : : Checked ) ;
daily - > addChild ( it ) ;
//QTreeWidgetItem *root=NULL;//new QTreeWidgetItem((QTreeWidget *)0,QStringList("Stuff"));
//=new QTreeWidgetItem(root,l);
//ui->graphTree->setModel(
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 ( )
{
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-09-08 09:50:05 +00:00
( * profile ) [ " UnitSystem " ] = ui - > unitCombo - > currentText ( ) ;
2011-10-02 04:23:17 +00:00
//(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
2011-09-08 09:50:05 +00:00
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-10-05 07:41:56 +00:00
( * profile ) [ " MemoryHog " ] = ui - > memoryHogCheckbox - > isChecked ( ) ;
( * 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 ( ) ;
( * profile ) [ " UseAntiAliasing " ] = ui - > useAntiAliasing - > isChecked ( ) ;
( * profile ) [ " MemoryHog " ] = ui - > memoryHogCheckbox - > isChecked ( ) ;
( * profile ) [ " EnableGraphSnapshots " ] = ui - > useGraphSnapshots - > isChecked ( ) ;
( * 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 ( ) ;
( * profile ) [ " OximeterType " ] = ui - > oximetryType - > currentText ( ) ;
2011-09-23 03:54: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-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 ( ) ) ;
}
}
qDebug ( ) < < " TODO: Save channels.xml to update channel data " ;
2011-09-23 03:54:48 +00:00
2011-09-08 09:50:05 +00:00
profile - > Save ( ) ;
2011-10-05 07:41:56 +00:00
PREF . Save ( ) ;
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-05 12:38:32 +00:00
void PreferencesDialog : : on_useGraphSnapshots_toggled ( bool checked )
{
2011-10-05 12:43:34 +00:00
if ( checked
& & ! ( * profile ) [ " EnableGraphSnapshots " ] . toBool ( )
& & QMessageBox : : question ( this , " Warning " , " The Graph Snapshots feature (used by the Pie Chart in Daily stats panel) has been known to not work on some older computers. \n \n If you experience a crash because of it, you will have to remove your SleepApp folder and recreate your profile. \n \n (I'm fairly sure this Qt bug is fixed now, but this has not been tested enough. If you have previously seen the pie chart, it's perfectly ok.) \n \n Are you sure you want to enable it? " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
2011-10-05 12:38:32 +00:00
ui - > useGraphSnapshots - > setChecked ( false ) ;
}
}
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 ( ) ;
}