mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
#include <QApplication>
|
|
#include <QStandardPaths>
|
|
|
|
#include "main.h"
|
|
#include "settings.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
settingsManager::settingsManager()
|
|
:QSettings("qucs", "qucs_s")
|
|
{
|
|
// qDebug() << this << " created " << organizationName() << " " << applicationName();
|
|
|
|
initAliases();
|
|
initDefaults();
|
|
}
|
|
|
|
settingsManager::~settingsManager()
|
|
{
|
|
// qDebug() << this << " destroyed";
|
|
}
|
|
|
|
void settingsManager::resetDefaults(const QString &group)
|
|
{
|
|
qDebug() << "Reset settings group " << group;
|
|
|
|
if (group == "All") {
|
|
// Remove all settings (including those for which there is no default).
|
|
// clear();
|
|
|
|
// Repopulate with known defaults.
|
|
for (auto const& item : m_Defaults) {
|
|
qDebug() << "Resetting item " << item.first << " " << item.second;
|
|
setValue(item.first, item.second);
|
|
}
|
|
}
|
|
|
|
else {
|
|
beginGroup(group);
|
|
for (const QString& key : allKeys()) {
|
|
setValue(key, m_Defaults[key]);
|
|
}
|
|
}
|
|
}
|
|
|
|
void settingsManager::initDefaults()
|
|
{
|
|
m_Defaults["DefaultSimulator"] = spicecompat::simNotSpecified;
|
|
m_Defaults["firstRun"] = true;
|
|
m_Defaults["font"] = QApplication::font();
|
|
m_Defaults["appFont"] = QApplication::font();
|
|
m_Defaults["LargeFontSize"] = static_cast<double>(16.0);
|
|
m_Defaults["GridColor"] = QColor(qRgb(25, 25, 25));
|
|
m_Defaults["DefaultGraphLineWidth"] = "1";
|
|
m_Defaults["maxUndo"] = 20;
|
|
m_Defaults["QucsHomeDir"] = QDir::homePath() + QDir::toNativeSeparators("/QucsWorkspace");
|
|
|
|
#ifdef Q_OS_WIN
|
|
m_Defaults["NgspiceExecutable"] = "ngspice_con.exe";
|
|
m_Defaults["XyceExecutable"] = "Xyce.exe";
|
|
m_Defaults["RFLayoutExecutable"] = "qucsrflayout.exe";
|
|
m_Defaults["OctaveExecutable"] = "octave.exe";
|
|
#else
|
|
m_Defaults["NgspiceExecutable"] = "ngspice";
|
|
#ifndef Q_OS_MACOS
|
|
m_Defaults["XyceExecutable"] = "/usr/local/Xyce-Release-6.8.0-OPENSOURCE/bin/Xyce";
|
|
#else
|
|
m_Defaults["XyceExecutable"] = "Xyce";
|
|
#endif
|
|
m_Defaults["RFLayoutExecutable"] = "qucsrflayout";
|
|
m_Defaults["OctaveExecutable"] = "octave";
|
|
#endif
|
|
|
|
m_Defaults["XyceParExecutable"] = "mpirun -np %p /usr/local/Xyce-Release-6.8.0-OPENMPI-OPENSOURCE/bin/Xyce";
|
|
m_Defaults["S4Q_workdir"] = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
|
m_Defaults["Nprocs"] = 4;
|
|
m_Defaults["SpiceOpusExecutable"] = "spiceopus";
|
|
m_Defaults["SimParameters"] = "";
|
|
m_Defaults["GraphAntiAliasing"] = false;
|
|
m_Defaults["TextAntiAliasing"] = false;
|
|
m_Defaults["fullTraceName"] = false;
|
|
m_Defaults["NgspiceCompatMode"] = spicecompat::NgspDefault;
|
|
}
|
|
|
|
void settingsManager::initAliases()
|
|
{
|
|
m_Aliases["IgnoreVersion"] = QStringList({"IngnoreVersion"});
|
|
}
|