From e739b7dd6fb27a453d4ffb473a9126302bf80e20 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 19 Oct 2013 12:59:52 +1000 Subject: [PATCH] Added Data Folder selection ability, and fixed Language selection bug on Mac --- sleepyhead/main.cpp | 209 +++++++++++++++++++++++++------------- sleepyhead/mainwindow.cpp | 15 ++- sleepyhead/mainwindow.h | 4 +- sleepyhead/mainwindow.ui | 8 +- sleepyhead/newprofile.cpp | 26 ----- sleepyhead/newprofile.h | 2 - sleepyhead/newprofile.ui | 104 ++----------------- 7 files changed, 172 insertions(+), 196 deletions(-) diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index 60ae2b5d..778e06ac 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include "SleepLib/schema.h" #include "mainwindow.h" @@ -134,6 +136,15 @@ void build_notes() relnotes.exec(); } +void sDelay(int s) +{ + // QThread::msleep() is exposed in Qt5 +#ifdef Q_OS_WIN32 + Sleep(s*1000); +#else + sleep(s); +#endif +} int main(int argc, char *argv[]) { @@ -146,18 +157,141 @@ int main(int argc, char *argv[]) #endif bool force_login_screen=false; + bool force_data_dir=false; + QApplication a(argc, argv); QStringList args=QCoreApplication::arguments(); for (int i=1;i",&langsel); + + lang_layout.addWidget(&lang_combo,1); + lang_layout.addWidget(&lang_okbtn); + +#ifdef Q_WS_MAC + QString transdir=QDir::cleanPath(QCoreApplication::applicationDirPath()+"/../Resources/Translations/"); #else - sleep(1); + const QString transdir=QCoreApplication::applicationDirPath()+"/Translations/"; #endif + QDir dir(transdir); + qDebug() << "Scanning \"" << transdir << "\" for translations"; + dir.setFilter(QDir::Files); + dir.setNameFilters(QStringList("*.qm")); + + qDebug() << "Available Translations"; + QFileInfoList list=dir.entryInfoList(); + QString language=settings.value("Settings/Language").toString(); + + language=""; + + QString langfile,langname; + + // Fake english for now.. + lang_combo.addItem("English","English.en_US.qm"); + + // Scan translation directory + for (int i=0;i 2) { + // Not a new directory.. nag the user. + if (QMessageBox::question(NULL,QObject::tr("Warning"),QObject::tr("The folder you chose is not empty, nor does it already contain valid SleepyHead data.\n\nAre you sure you want to use this folder?\n\n")+datadir,QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) { + goto retry_directory; + } + } + } + + settings.setValue("Settings/AppRoot",datadir); + qDebug() << "Changing data folder to" << datadir; } } @@ -192,73 +326,6 @@ int main(int argc, char *argv[]) } - //////////////////////////////////////////////////////////////////////////////////////////// - // Language Selection - //////////////////////////////////////////////////////////////////////////////////////////// - QDialog langsel(NULL,Qt::CustomizeWindowHint|Qt::WindowTitleHint); - langsel.setWindowTitle(QObject::tr("Language")); - - QHBoxLayout lang_layout(&langsel); - - QComboBox lang_combo(&langsel); - QPushButton lang_okbtn("->",&langsel); - - lang_layout.addWidget(&lang_combo,1); - lang_layout.addWidget(&lang_okbtn); - -#ifdef Q_WS_MAC - QString transdir=QCoreApplication::applicationDirPath()+"/Contents/Resources/Translations/"; -#else - QString transdir=QCoreApplication::applicationDirPath()+"/Translations/"; -#endif - QDir dir(transdir); - qDebug() << "Scanning \"" << transdir << "\" for translations"; - dir.setFilter(QDir::Files); - dir.setNameFilters(QStringList("*.qm")); - - qDebug() << "Available Translations"; - QFileInfoList list=dir.entryInfoList(); - QString language=PREF[STR_PREF_Language].toString(); - - QString langfile,langname; - - // Fake english for now.. - lang_combo.addItem("English","English.en_US.qm"); - - // Scan translation directory - for (int i=0;iReloadGraphs(); } -void MainWindow::RestartApplication(bool force_login) +void MainWindow::RestartApplication(bool force_login,bool change_datafolder) { QString apppath; #ifdef Q_OS_MAC @@ -1073,6 +1073,7 @@ void MainWindow::RestartApplication(bool force_login) if (force_login) args << "-l"; + if (change_datafolder) args << "-d"; if (QProcess::startDetached("/usr/bin/open",args)) { QApplication::instance()->exit(); @@ -1090,6 +1091,7 @@ void MainWindow::RestartApplication(bool force_login) QStringList args; args << "-p"; if (force_login) args << "-l"; + if (change_datafolder) args << "-d"; if (QProcess::startDetached(apppath,args)) { ::exit(0); //QApplication::instance()->exit(); @@ -1455,9 +1457,18 @@ void MainWindow::on_actionHelp_Support_Sleepyhead_Development_triggered() void MainWindow::on_actionChange_Language_triggered() { - PREF.Erase(STR_PREF_Language); + QSettings *settings=new QSettings(getDeveloperName(),getAppName()); + settings->remove("Settings/Language"); + delete settings; PROFILE.Save(); PREF.Save(); RestartApplication(true); } + +void MainWindow::on_actionChange_Data_Folder_triggered() +{ + PROFILE.Save(); + PREF.Save(); + RestartApplication(false,true); +} diff --git a/sleepyhead/mainwindow.h b/sleepyhead/mainwindow.h index add519ab..45539a8c 100644 --- a/sleepyhead/mainwindow.h +++ b/sleepyhead/mainwindow.h @@ -121,7 +121,7 @@ public: If force_login is set, it will return to the login menu even if it's set to skip */ - void RestartApplication(bool force_login=false); + void RestartApplication(bool force_login=false,bool change_datafolder=false); //! \brief Self explainitory, selects the Oximetry Tab void selectOximetryTab(); @@ -298,6 +298,8 @@ private slots: void on_actionChange_Language_triggered(); + void on_actionChange_Data_Folder_triggered(); + private: void FreeSessions(); diff --git a/sleepyhead/mainwindow.ui b/sleepyhead/mainwindow.ui index a5664531..575b6463 100644 --- a/sleepyhead/mainwindow.ui +++ b/sleepyhead/mainwindow.ui @@ -448,7 +448,7 @@ QToolBox::tab:selected { 0 - -16 + 0 165 514 @@ -2075,6 +2075,7 @@ border-radius: 10px; + @@ -2356,6 +2357,11 @@ border-radius: 10px; Change &Language + + + Change &Data Folder + + diff --git a/sleepyhead/newprofile.cpp b/sleepyhead/newprofile.cpp index 44625944..57514313 100644 --- a/sleepyhead/newprofile.cpp +++ b/sleepyhead/newprofile.cpp @@ -76,10 +76,6 @@ NewProfile::NewProfile(QWidget *parent) : ui->AppTitle->setText("SleepyHead v"+VersionString); ui->releaseStatus->setText(ReleaseStatus); - ui->dataFolderPath->setReadOnly(true); - ui->dataFolderPath->setText(GetAppRoot()); - - ui->textBrowser->setSource(QUrl("qrc:/docs/intro.html")); } @@ -99,12 +95,6 @@ void NewProfile::on_nextButton_clicked() case 0: if (!ui->agreeCheckbox->isChecked()) return; - - settings.setValue("Settings/AppRoot", ui->dataFolderPath->text()); - p_pref->setFilename(ui->dataFolderPath->text()+"/"+p_pref->name()+xmlext); - p_pref->setPath(ui->dataFolderPath->text()); - p_layout->setFilename(ui->dataFolderPath->text()+"/"+p_layout->name()+xmlext); - p_layout->setPath(ui->dataFolderPath->text()); // Reload Preferences object break; case 1: @@ -338,7 +328,6 @@ void NewProfile::on_passwordEdit2_editingFinished() m_passwordHashed=false; } - void NewProfile::on_heightCombo_currentIndexChanged(int index) { if (index==0) { @@ -362,18 +351,3 @@ void NewProfile::on_heightCombo_currentIndexChanged(int index) ui->heightEdit2->setValue(inches); } } - -void NewProfile::on_dataFolderButton_clicked() -{ - QFileDialog fd(this); - QString filename; - fd.setFileMode(QFileDialog::Directory); - fd.setOption(QFileDialog::ShowDirsOnly,true); - - fd.setAcceptMode(QFileDialog::AcceptSave); - if (fd.exec()==QFileDialog::Accepted) { - filename=fd.selectedFiles()[0]; - ui->dataFolderPath->setText(filename); - //ui->dataFolderPath->setEnabled(true); - } -} diff --git a/sleepyhead/newprofile.h b/sleepyhead/newprofile.h index fc79ebc5..9bc30056 100644 --- a/sleepyhead/newprofile.h +++ b/sleepyhead/newprofile.h @@ -48,8 +48,6 @@ private slots: void on_heightCombo_currentIndexChanged(int index); - void on_dataFolderButton_clicked(); - private: Ui::NewProfile *ui; bool m_editMode; diff --git a/sleepyhead/newprofile.ui b/sleepyhead/newprofile.ui index 9c9c3395..e9d0b1eb 100644 --- a/sleepyhead/newprofile.ui +++ b/sleepyhead/newprofile.ui @@ -18,6 +18,9 @@ :/icons/bob-v3.0.png:/icons/bob-v3.0.png + + 8 + @@ -32,37 +35,6 @@ - - - - 4 - - - - - Click here to choose where to store SleepyHead data. - - - ... - - - - - - - Data Folder - - - - - - - Shows the directory where SleepyHead data will be stored. - - - - - @@ -109,16 +81,7 @@ 0 - - 4 - - - 4 - - - 4 - - + 4 @@ -228,24 +191,15 @@ Locale Settings - - 0 - - - 0 - - - 0 - - - 0 - 0 4 + + 0 + @@ -327,16 +281,7 @@ 0 - - 4 - - - 4 - - - 4 - - + 4 @@ -445,16 +390,7 @@ - - 0 - - - 0 - - - 0 - - + 0 @@ -589,16 +525,7 @@ 0 - - 4 - - - 4 - - - 4 - - + 4 @@ -728,16 +655,7 @@ 0 - - 4 - - - 4 - - - 4 - - + 4