Code cleanup to previous stuff

This commit is contained in:
Mark Watkins 2011-11-08 22:42:30 +10:00
parent 2ff66a2137
commit 89189c6fee

View File

@ -259,6 +259,7 @@ void PreferencesDialog::Save()
bigfont->setWeight(ui->bigFontBold->isChecked()?QFont::Bold : QFont::Normal); bigfont->setWeight(ui->bigFontBold->isChecked()?QFont::Bold : QFont::Normal);
bigfont->setItalic(ui->bigFontItalic->isChecked()); bigfont->setItalic(ui->bigFontItalic->isChecked());
// Process color changes
for (QHash<int,QColor>::iterator i=m_new_colors.begin();i!=m_new_colors.end();i++) { for (QHash<int,QColor>::iterator i=m_new_colors.begin();i!=m_new_colors.end();i++) {
schema::Channel &chan=schema::channel[i.key()]; schema::Channel &chan=schema::channel[i.key()];
if (!chan.isNull()) { if (!chan.isNull()) {
@ -266,7 +267,8 @@ void PreferencesDialog::Save()
chan.setDefaultColor(i.value()); chan.setDefaultColor(i.value());
} }
} }
qDebug() << "TODO: Save channels.xml to update channel data";
//qDebug() << "TODO: Save channels.xml to update channel data";
profile->Save(); profile->Save();
PREF.Save(); PREF.Save();
@ -277,29 +279,29 @@ void PreferencesDialog::Save()
#ifdef Q_OS_MAC #ifdef Q_OS_MAC
// In Mac OS the full path of aplication binary is: // In Mac OS the full path of aplication binary is:
// <base-path>/myApp.app/Contents/MacOS/myApp // <base-path>/myApp.app/Contents/MacOS/myApp
//apppath=QApplication::instance()->applicationDirPath()+"/../../../SleepyHead.app";
// prune the extra bits to just get the app bundle path
apppath=QApplication::instance()->applicationDirPath().section("/",0,-3); apppath=QApplication::instance()->applicationDirPath().section("/",0,-3);
bool success=false;
//if (QDesktopServices::openUrl(apppath)) {
// success=true;
//} else
QStringList args; QStringList args;
args << "-n" << apppath; args << "-n" << apppath; // -n option is important, as it opens a new process
if (QProcess::startDetached("/usr/bin/open",args)) { if (QProcess::startDetached("/usr/bin/open",args)) {
QApplication::instance()->exit(); QApplication::instance()->exit();
} else } 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);
QMessageBox::warning(this,"Gah!","If you can read this, two seperate application restart commands didn't work. Mark want's to know the following string:"+apppath,QMessageBox::Ok);
#else #else
apppath=QApplication::instance()->applicationFilePath(); apppath=QApplication::instance()->applicationFilePath();
if (QDesktopServices::openUrl(apppath)) { // 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)) {
QApplication::instance()->exit(); QApplication::instance()->exit();
} else if (QProcess::startDetached(apppath)) { } 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);
QApplication::instance()->exit();
} else {
QMessageBox::warning(this,"Gah!","If you can read this, two seperate application restart commands didn't work. Mark want's to know the following string:"+apppath,QMessageBox::Ok);
}
#endif #endif
} }
} }