diff --git a/SleepLib/common.cpp b/SleepLib/common.cpp index 7ea4ac91..9fb98b30 100644 --- a/SleepLib/common.cpp +++ b/SleepLib/common.cpp @@ -5,6 +5,7 @@ */ #include +#include #include "profiles.h" @@ -41,3 +42,26 @@ bool operator <(const ValueCount & a, const ValueCount & b) { return a.value < b.value; } + +bool removeDir(const QString & path) +{ + bool result = true; + QDir dir(path); + + if (dir.exists(path)) { + Q_FOREACH(QFileInfo info, dir.entryInfoList(QDir::NoDotAndDotDot | QDir::System | QDir::Hidden | QDir::AllDirs | QDir::Files, QDir::DirsFirst)) { + if (info.isDir()) { // Recurse to remove this child directory + result = removeDir(info.absoluteFilePath()); + } else { // File + result = QFile::remove(info.absoluteFilePath()); + } + + if (!result) { + return result; + } + } + result = dir.rmdir(path); + } + + return result; +} diff --git a/SleepLib/common.h b/SleepLib/common.h index 00a697a6..99965551 100644 --- a/SleepLib/common.h +++ b/SleepLib/common.h @@ -34,6 +34,9 @@ const float pound_convert=ounce_convert*16; QString weightString(float kg, UnitSystem us=US_Undefined); +//! \brief Mercilessly trash a directory +bool removeDir(const QString & path); + const QString STR_UNIT_CM=QObject::tr("cm"); const QString STR_UNIT_INCH=QObject::tr("\""); diff --git a/profileselect.cpp b/profileselect.cpp index 7d0b02b1..037a4f90 100644 --- a/profileselect.cpp +++ b/profileselect.cpp @@ -7,7 +7,6 @@ #include "profileselect.h" #include #include -#include #include #include #include @@ -15,6 +14,7 @@ #include #include #include +#include #include "ui_profileselect.h" #include "SleepLib/profiles.h" #include "newprofile.h" @@ -25,7 +25,7 @@ ProfileSelect::ProfileSelect(QWidget *parent) : { ui->setupUi(this); QStringList str; - QStandardItemModel *model=new QStandardItemModel (0,0); + model=new QStandardItemModel (0,0); int i=0; int sel=-1; @@ -119,8 +119,8 @@ void ProfileSelect::deleteProfile() { QString name=ui->listView->currentIndex().data().toString(); if (QMessageBox::question(this,tr("Question"),tr("Are you sure you want to trash the profile \"%1\"?").arg(name),QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes){ - if (QMessageBox::question(this,tr("Question"),tr("Double Checking: Do you really want \"%1\" profile to be obliterated?").arg(name),QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes){ - if (QMessageBox::question(this,tr("Question"),tr("Last chance to save the \"%1\" profile. Are you totally sure?").arg(name),QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes){ + if (QMessageBox::question(this,tr("Question"),tr("Double Checking:\n\nDo you really want \"%1\" profile to be obliterated?").arg(name),QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes){ + if (QMessageBox::question(this,tr("Question"),tr("Okay, I am about to totally OBLITERATE the profile \"%1\" and all it's contained data..\n\nDon't say you weren't warned. :-p").arg(name),QMessageBox::Cancel,QMessageBox::Ok)==QMessageBox::Ok){ bool reallydelete=false; Profile *profile=Profiles::profiles[name]; if (!profile) { @@ -156,8 +156,15 @@ void ProfileSelect::deleteProfile() } else reallydelete=true; if (reallydelete) { - QMessageBox::information(this,tr("Whoops."),tr("After all that nagging, I haven't got around to writing this code yet.. For now you can delete the directory in %1").arg(GetAppRoot()+"/Profiles/"+PROFILE.user->userName()),QMessageBox::Ok); - qDebug() << "delete" << name; + QString path=profile->Get(PrefMacro(STR_GEN_DataFolder)); + if (!path.isEmpty()) { + if (!removeDir(path)) { + QMessageBox::information(this,tr("Whoops."),tr("There was an error deleting the profile directory.. You need to manually remove %1").arg(path),QMessageBox::Ok); + } + } + model->removeRow(ui->listView->currentIndex().row()); + + qDebug() << "Delete" << path; } } } diff --git a/profileselect.h b/profileselect.h index cf7eac41..e4a2ba51 100644 --- a/profileselect.h +++ b/profileselect.h @@ -9,6 +9,7 @@ #include #include +#include #include namespace Ui { @@ -47,6 +48,7 @@ private: QString m_selectedProfile; int m_tries; QMenu *popupMenu; + QStandardItemModel *model; }; #endif // PROFILESELECT_H