mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Changed: Delete clients and profiles operations
This commit is contained in:
parent
06981b5483
commit
56697a355b
2 changed files with 74 additions and 9 deletions
|
@ -668,45 +668,109 @@ bool COperationDialog::createAddRemoveEntry()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool COperationDialog::deleteAddRemoveEntry()
|
||||||
|
{
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
|
QSettings settings("HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Ryzom", QSettings::NativeFormat);
|
||||||
|
settings.remove("");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
emit done();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void COperationDialog::deleteComponentsServers()
|
void COperationDialog::deleteComponentsServers()
|
||||||
{
|
{
|
||||||
m_currentOperation = QApplication::tr("Delete client files");
|
m_currentOperation = QApplication::tr("Delete client files");
|
||||||
m_currentOperationProgressFormat = QApplication::tr("Deleting %1...");
|
m_currentOperationProgressFormat = QApplication::tr("Deleting %1...");
|
||||||
|
|
||||||
// connect(m_downloader, SIGNAL(downloadPrepare()), SLOT(onProgressPrepare()));
|
emit prepare();
|
||||||
// connect(m_downloader, SIGNAL(downloadInit(qint64, qint64)), SLOT(onProgressInit(qint64, qint64)));
|
emit init(0, m_components.servers.size());
|
||||||
// connect(m_downloader, SIGNAL(downloadStart()), SLOT(onProgressStart()));
|
emit start();
|
||||||
// connect(m_downloader, SIGNAL(downloadStop()), SLOT(onProgressStop()));
|
|
||||||
// connect(m_downloader, SIGNAL(downloadProgress(qint64, QString)), SLOT(onProgressProgress(qint64, QString)));
|
|
||||||
|
|
||||||
|
|
||||||
CConfigFile *config = CConfigFile::getInstance();
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
foreach(int serverIndex, m_components.servers)
|
foreach(int serverIndex, m_components.servers)
|
||||||
{
|
{
|
||||||
|
if (operationShouldStop())
|
||||||
|
{
|
||||||
|
emit stop();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const CServer &server = config->getServer(serverIndex);
|
const CServer &server = config->getServer(serverIndex);
|
||||||
|
|
||||||
|
emit progress(i++, server.name);
|
||||||
|
|
||||||
QString path = config->getInstallationDirectory() + "/" + server.id;
|
QString path = config->getInstallationDirectory() + "/" + server.id;
|
||||||
|
|
||||||
QDir dir(path);
|
QDir dir(path);
|
||||||
|
|
||||||
if (!dir.exists() || !dir.removeRecursively())
|
if (dir.exists() && !dir.removeRecursively())
|
||||||
{
|
{
|
||||||
emit onProgressFail(tr("Uninstall to delete files for client %1").arg(server.name));
|
emit fail(tr("Unable to delete files for client %1").arg(server.name));
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
emit onProgressSuccess(m_components.servers.size());
|
emit success(m_components.servers.size());
|
||||||
emit done();
|
emit done();
|
||||||
}
|
}
|
||||||
|
|
||||||
void COperationDialog::deleteComponentsProfiles()
|
void COperationDialog::deleteComponentsProfiles()
|
||||||
{
|
{
|
||||||
|
m_currentOperation = QApplication::tr("Delete profiles");
|
||||||
|
m_currentOperationProgressFormat = QApplication::tr("Deleting profile %1...");
|
||||||
|
|
||||||
|
emit prepare();
|
||||||
|
emit init(0, m_components.servers.size());
|
||||||
|
|
||||||
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
foreach(int profileIndex, m_components.profiles)
|
||||||
|
{
|
||||||
|
if (operationShouldStop())
|
||||||
|
{
|
||||||
|
emit stop();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const CProfile &profile = config->getProfile(profileIndex);
|
||||||
|
|
||||||
|
emit progress(i++, profile.name);
|
||||||
|
|
||||||
|
QString path = config->getProfileDirectory() + "/" + profile.id;
|
||||||
|
|
||||||
|
QDir dir(path);
|
||||||
|
|
||||||
|
if (dir.exists() && !dir.removeRecursively())
|
||||||
|
{
|
||||||
|
emit fail(tr("Unable to delete files for profile %1").arg(profile.name));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
emit success(m_components.servers.size());
|
||||||
emit done();
|
emit done();
|
||||||
}
|
}
|
||||||
|
|
||||||
void COperationDialog::deleteComponentsInstaller()
|
void COperationDialog::deleteComponentsInstaller()
|
||||||
{
|
{
|
||||||
|
m_currentOperation = QApplication::tr("Delete installer");
|
||||||
|
m_currentOperationProgressFormat = QApplication::tr("Deleting %1...");
|
||||||
|
|
||||||
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
// TODO: delete installer
|
||||||
|
|
||||||
|
deleteAddRemoveEntry();
|
||||||
|
|
||||||
|
emit onProgressSuccess(m_components.servers.size());
|
||||||
emit done();
|
emit done();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -107,6 +107,7 @@ protected:
|
||||||
bool createDefaultProfile();
|
bool createDefaultProfile();
|
||||||
bool createDefaultShortcuts();
|
bool createDefaultShortcuts();
|
||||||
bool createAddRemoveEntry();
|
bool createAddRemoveEntry();
|
||||||
|
bool deleteAddRemoveEntry();
|
||||||
void deleteComponentsServers();
|
void deleteComponentsServers();
|
||||||
void deleteComponentsProfiles();
|
void deleteComponentsProfiles();
|
||||||
void deleteComponentsInstaller();
|
void deleteComponentsInstaller();
|
||||||
|
|
Loading…
Reference in a new issue