mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Enabled profile delete in login screen
This commit is contained in:
parent
71d0ffed25
commit
3a8adbdf63
@ -5,6 +5,7 @@
|
||||
*/
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QDir>
|
||||
|
||||
#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;
|
||||
}
|
||||
|
@ -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("\"");
|
||||
|
@ -7,7 +7,6 @@
|
||||
#include "profileselect.h"
|
||||
#include <QDebug>
|
||||
#include <QStringListModel>
|
||||
#include <QStandardItemModel>
|
||||
#include <QStandardItem>
|
||||
#include <QDialog>
|
||||
#include <QLineEdit>
|
||||
@ -15,6 +14,7 @@
|
||||
#include <QCryptographicHash>
|
||||
#include <QMessageBox>
|
||||
#include <QTimer>
|
||||
#include <QDir>
|
||||
#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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
#include <QDialog>
|
||||
#include <QModelIndex>
|
||||
#include <QStandardItemModel>
|
||||
#include <QMenu>
|
||||
|
||||
namespace Ui {
|
||||
@ -47,6 +48,7 @@ private:
|
||||
QString m_selectedProfile;
|
||||
int m_tries;
|
||||
QMenu *popupMenu;
|
||||
QStandardItemModel *model;
|
||||
};
|
||||
|
||||
#endif // PROFILESELECT_H
|
||||
|
Loading…
Reference in New Issue
Block a user