mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Merge with develop
This commit is contained in:
parent
f983a551a2
commit
f888b9f3bf
5 changed files with 19 additions and 25 deletions
|
@ -188,6 +188,11 @@ bool CConfigFile::save() const
|
|||
return true;
|
||||
}
|
||||
|
||||
bool CConfigFile::remove()
|
||||
{
|
||||
return QFile::remove(m_configPath);
|
||||
}
|
||||
|
||||
CConfigFile* CConfigFile::getInstance()
|
||||
{
|
||||
return s_instance;
|
||||
|
@ -729,11 +734,8 @@ QString CConfigFile::getInstallerOriginalDirPath() const
|
|||
|
||||
QString CConfigFile::getInstallerMenuLinkFullPath() const
|
||||
{
|
||||
#ifdef Q_OS_WIN32
|
||||
return QString("%1/%2/%2 Installer.lnk").arg(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)).arg(QApplication::applicationName());
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
// don't put extension
|
||||
return QString("%1/%2/%2 Installer").arg(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)).arg(QApplication::applicationName());
|
||||
}
|
||||
|
||||
QStringList CConfigFile::getInstallerRequiredFiles() const
|
||||
|
|
|
@ -38,6 +38,7 @@ public:
|
|||
bool load();
|
||||
bool load(const QString &filename);
|
||||
bool save() const;
|
||||
bool remove();
|
||||
|
||||
static CConfigFile* getInstance();
|
||||
|
||||
|
|
|
@ -1179,6 +1179,9 @@ void COperationDialog::deleteComponentsInstaller()
|
|||
}
|
||||
}
|
||||
|
||||
// delete configuration file
|
||||
config->remove();
|
||||
|
||||
// reset it once it's done
|
||||
m_removeComponents.installer = false;
|
||||
|
||||
|
|
|
@ -65,24 +65,12 @@ QString CProfile::getClientFullPath() const
|
|||
|
||||
QString CProfile::getClientDesktopShortcutFullPath() const
|
||||
{
|
||||
#ifdef Q_OS_WIN32
|
||||
return CConfigFile::getInstance()->getDesktopDirectory() + "/" + name + ".lnk";
|
||||
#elif defined(Q_OS_MAC)
|
||||
return "";
|
||||
#else
|
||||
return CConfigFile::getInstance()->getDesktopDirectory() + "/" + name + ".desktop";
|
||||
#endif
|
||||
return CConfigFile::getInstance()->getDesktopDirectory() + "/" + name;
|
||||
}
|
||||
|
||||
QString CProfile::getClientMenuShortcutFullPath() const
|
||||
{
|
||||
#ifdef Q_OS_WIN32
|
||||
return CConfigFile::getInstance()->getMenuDirectory() + "/" + name + ".lnk";
|
||||
#elif defined(Q_OS_MAC)
|
||||
return "";
|
||||
#else
|
||||
return CConfigFile::getInstance()->getMenuDirectory() + "/" + name + ".desktop";
|
||||
#endif
|
||||
return CConfigFile::getInstance()->getMenuDirectory() + "/" + name;
|
||||
}
|
||||
|
||||
void CProfile::createShortcuts() const
|
||||
|
|
|
@ -152,17 +152,15 @@ bool createLink(const QString &link, const QString &name, const QString &executa
|
|||
psl->SetArguments(qToWide(arguments));
|
||||
psl->SetWorkingDirectory(qToWide(QDir::toNativeSeparators(workingDir)));
|
||||
|
||||
// Query IShellLink for the IPersistFile interface, used for saving the
|
||||
// shortcut in persistent storage.
|
||||
// Query IShellLink for the IPersistFile interface, used for saving the shortcut in persistent storage.
|
||||
hres = psl->QueryInterface(IID_IPersistFile, (LPVOID*)&ppf);
|
||||
|
||||
if (SUCCEEDED(hres))
|
||||
{
|
||||
// Add code here to check return value from MultiByteWideChar
|
||||
// for success.
|
||||
QString path(link + ".lnk");
|
||||
|
||||
// Save the link by calling IPersistFile::Save.
|
||||
hres = ppf->Save(qToWide(QDir::toNativeSeparators(link)), TRUE);
|
||||
hres = ppf->Save(qToWide(QDir::toNativeSeparators(path)), TRUE);
|
||||
ppf->Release();
|
||||
}
|
||||
psl->Release();
|
||||
|
@ -261,8 +259,10 @@ bool createLink(const QString &link, const QString &name, const QString &executa
|
|||
data.replace("$COMMAND", command);
|
||||
data.replace("$ICON", icon);
|
||||
|
||||
QString path(link + ".desktop");
|
||||
|
||||
// write file
|
||||
file.setFileName(link);
|
||||
file.setFileName(path);
|
||||
|
||||
if (!file.open(QFile::WriteOnly)) return false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue