mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-12 18:29:04 +00:00
parent
db1a7fbad3
commit
3e9a3404d1
1 changed files with 24 additions and 4 deletions
|
@ -234,6 +234,9 @@ void COperationDialog::updateAddRemoveComponents()
|
||||||
|
|
||||||
// remove profiles that still exist
|
// remove profiles that still exist
|
||||||
profilesToDelete.removeAll(profile.id);
|
profilesToDelete.removeAll(profile.id);
|
||||||
|
|
||||||
|
// delete all shortcuts, they'll be recreated later
|
||||||
|
profile.deleteShortcuts();
|
||||||
}
|
}
|
||||||
|
|
||||||
// update components to remove
|
// update components to remove
|
||||||
|
@ -256,10 +259,9 @@ void COperationDialog::processUpdateProfilesNextStep()
|
||||||
{
|
{
|
||||||
updateAddRemoveComponents();
|
updateAddRemoveComponents();
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: check all servers are downloaded
|
// TODO: check all servers are downloaded
|
||||||
// TODO: delete profiles directories that are not used anymore
|
// TODO: delete profiles directories that are not used anymore
|
||||||
// TODO: create shortcuts
|
|
||||||
|
|
||||||
|
|
||||||
if (!m_removeComponents.profiles.isEmpty())
|
if (!m_removeComponents.profiles.isEmpty())
|
||||||
{
|
{
|
||||||
|
@ -275,9 +277,10 @@ void COperationDialog::processUpdateProfilesNextStep()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
if (!m_addComponents.servers.isEmpty())
|
if (!m_addComponents.servers.isEmpty())
|
||||||
{
|
{
|
||||||
CConfigFile *config = CConfigFile::getInstance();
|
|
||||||
const CServer &defaultServer = config->getServer();
|
const CServer &defaultServer = config->getServer();
|
||||||
|
|
||||||
// servers files to download/update
|
// servers files to download/update
|
||||||
|
@ -334,6 +337,12 @@ void COperationDialog::processUpdateProfilesNextStep()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// recreate shortcuts
|
||||||
|
foreach(const CProfile &profile, config->getProfiles())
|
||||||
|
{
|
||||||
|
profile.createShortcuts();
|
||||||
|
}
|
||||||
|
|
||||||
updateAddRemoveEntry();
|
updateAddRemoveEntry();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1010,6 +1019,17 @@ void COperationDialog::deleteComponentsServers()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// delete all links to clients
|
||||||
|
for (int i = 0; i < config->getProfilesCount(); ++i)
|
||||||
|
{
|
||||||
|
const CProfile &profile = config->getProfile(i);
|
||||||
|
|
||||||
|
if (profile.server == serverId)
|
||||||
|
{
|
||||||
|
profile.deleteShortcuts();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
emit success(m_removeComponents.servers.size());
|
emit success(m_removeComponents.servers.size());
|
||||||
|
@ -1072,7 +1092,7 @@ void COperationDialog::deleteComponentsProfiles()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: delete links
|
profile.deleteShortcuts();
|
||||||
|
|
||||||
// delete profile
|
// delete profile
|
||||||
config->removeProfile(profileId);
|
config->removeProfile(profileId);
|
||||||
|
|
Loading…
Reference in a new issue