mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Delete confusing PREF macro and replace as required
This commit is contained in:
parent
6f34f2605a
commit
26f5854c6b
@ -51,41 +51,41 @@ bool InitGraphGlobals()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PREF.contains("Fonts_Graph_Name")) {
|
if (!p_pref->contains("Fonts_Graph_Name")) {
|
||||||
PREF["Fonts_Graph_Name"] = "Sans Serif";
|
(*p_pref)["Fonts_Graph_Name"] = "Sans Serif";
|
||||||
PREF["Fonts_Graph_Size"] = 10;
|
(*p_pref)["Fonts_Graph_Size"] = 10;
|
||||||
PREF["Fonts_Graph_Bold"] = false;
|
(*p_pref)["Fonts_Graph_Bold"] = false;
|
||||||
PREF["Fonts_Graph_Italic"] = false;
|
(*p_pref)["Fonts_Graph_Italic"] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PREF.contains("Fonts_Title_Name")) {
|
if (!p_pref->contains("Fonts_Title_Name")) {
|
||||||
PREF["Fonts_Title_Name"] = "Sans Serif";
|
(*p_pref)["Fonts_Title_Name"] = "Sans Serif";
|
||||||
PREF["Fonts_Title_Size"] = 12;
|
(*p_pref)["Fonts_Title_Size"] = 12;
|
||||||
PREF["Fonts_Title_Bold"] = true;
|
(*p_pref)["Fonts_Title_Bold"] = true;
|
||||||
PREF["Fonts_Title_Italic"] = false;
|
(*p_pref)["Fonts_Title_Italic"] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PREF.contains("Fonts_Big_Name")) {
|
if (!p_pref->contains("Fonts_Big_Name")) {
|
||||||
PREF["Fonts_Big_Name"] = "Serif";
|
(*p_pref)["Fonts_Big_Name"] = "Serif";
|
||||||
PREF["Fonts_Big_Size"] = 35;
|
(*p_pref)["Fonts_Big_Size"] = 35;
|
||||||
PREF["Fonts_Big_Bold"] = false;
|
(*p_pref)["Fonts_Big_Bold"] = false;
|
||||||
PREF["Fonts_Big_Italic"] = false;
|
(*p_pref)["Fonts_Big_Italic"] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
defaultfont = new QFont(PREF["Fonts_Graph_Name"].toString(),
|
defaultfont = new QFont((*p_pref)["Fonts_Graph_Name"].toString(),
|
||||||
PREF["Fonts_Graph_Size"].toInt(),
|
(*p_pref)["Fonts_Graph_Size"].toInt(),
|
||||||
PREF["Fonts_Graph_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
(*p_pref)["Fonts_Graph_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
||||||
PREF["Fonts_Graph_Italic"].toBool()
|
(*p_pref)["Fonts_Graph_Italic"].toBool()
|
||||||
);
|
);
|
||||||
mediumfont = new QFont(PREF["Fonts_Title_Name"].toString(),
|
mediumfont = new QFont((*p_pref)["Fonts_Title_Name"].toString(),
|
||||||
PREF["Fonts_Title_Size"].toInt(),
|
(*p_pref)["Fonts_Title_Size"].toInt(),
|
||||||
PREF["Fonts_Title_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
(*p_pref)["Fonts_Title_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
||||||
PREF["Fonts_Title_Italic"].toBool()
|
(*p_pref)["Fonts_Title_Italic"].toBool()
|
||||||
);
|
);
|
||||||
bigfont = new QFont(PREF["Fonts_Big_Name"].toString(),
|
bigfont = new QFont((*p_pref)["Fonts_Big_Name"].toString(),
|
||||||
PREF["Fonts_Big_Size"].toInt(),
|
(*p_pref)["Fonts_Big_Size"].toInt(),
|
||||||
PREF["Fonts_Big_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
(*p_pref)["Fonts_Big_Bold"].toBool() ? QFont::Bold : QFont::Normal,
|
||||||
PREF["Fonts_Big_Italic"].toBool()
|
(*p_pref)["Fonts_Big_Italic"].toBool()
|
||||||
);
|
);
|
||||||
|
|
||||||
defaultfont->setStyleHint(QFont::AnyStyle, QFont::OpenGLCompatible);
|
defaultfont->setStyleHint(QFont::AnyStyle, QFont::OpenGLCompatible);
|
||||||
|
@ -544,7 +544,7 @@ void Machine::setInfo(MachineInfo inf)
|
|||||||
|
|
||||||
const QString Machine::getDataPath()
|
const QString Machine::getDataPath()
|
||||||
{
|
{
|
||||||
m_dataPath = PREF.Get("{home}/Profiles/")+profile->user->userName()+"/"+info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial) + "/";
|
m_dataPath = p_pref->Get("{home}/Profiles/")+profile->user->userName()+"/"+info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial) + "/";
|
||||||
|
|
||||||
//if (m_dataPath.isEmpty()) {
|
//if (m_dataPath.isEmpty()) {
|
||||||
// m_dataPath = profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/";
|
// m_dataPath = profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/";
|
||||||
|
@ -42,7 +42,7 @@ Profile::Profile(QString path)
|
|||||||
p_name = STR_GEN_Profile;
|
p_name = STR_GEN_Profile;
|
||||||
|
|
||||||
if (path.isEmpty()) {
|
if (path.isEmpty()) {
|
||||||
p_path = GetAppRoot();
|
p_path = GetAppData();
|
||||||
} else {
|
} else {
|
||||||
p_path = path;
|
p_path = path;
|
||||||
}
|
}
|
||||||
@ -493,7 +493,7 @@ void Profile::DataFormatError(Machine *m)
|
|||||||
{
|
{
|
||||||
QString msg;
|
QString msg;
|
||||||
|
|
||||||
msg = "<font size=+1>"+QObject::tr("OSCT (%1) needs to upgrade its database for %2 %3 %4").
|
msg = "<font size=+1>"+QObject::tr("OSCAR (%1) needs to upgrade its database for %2 %3 %4").
|
||||||
arg(VersionString).
|
arg(VersionString).
|
||||||
arg(m->brand()).arg(m->model()).arg(m->serial())
|
arg(m->brand()).arg(m->model()).arg(m->serial())
|
||||||
+ "</font><br/><br/>";
|
+ "</font><br/><br/>";
|
||||||
@ -900,10 +900,10 @@ Machine *Profile::GetMachine(MachineType t)
|
|||||||
//{
|
//{
|
||||||
// QMap<QDate, QList<Day *> >::iterator it_end = daylist.end();
|
// QMap<QDate, QList<Day *> >::iterator it_end = daylist.end();
|
||||||
// QMap<QDate, QList<Day *> >::iterator it;
|
// QMap<QDate, QList<Day *> >::iterator it;
|
||||||
|
//
|
||||||
// QList<QDate> datelist;
|
// QList<QDate> datelist;
|
||||||
// QList<Day *> days;
|
// QList<Day *> days;
|
||||||
|
//
|
||||||
// for (it = daylist.begin(); it != it_end; ++it) {
|
// for (it = daylist.begin(); it != it_end; ++it) {
|
||||||
// for (int i = 0; i< it.value().size(); ++i) {
|
// for (int i = 0; i< it.value().size(); ++i) {
|
||||||
// Day * day = it.value().at(i);
|
// Day * day = it.value().at(i);
|
||||||
@ -913,7 +913,7 @@ Machine *Profile::GetMachine(MachineType t)
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
//
|
||||||
// for (int i=0; i < datelist.size(); ++i) {
|
// for (int i=0; i < datelist.size(); ++i) {
|
||||||
// Day * day = days.at(i);
|
// Day * day = days.at(i);
|
||||||
// it = daylist.find(datelist.at(i));
|
// it = daylist.find(datelist.at(i));
|
||||||
@ -925,7 +925,7 @@ Machine *Profile::GetMachine(MachineType t)
|
|||||||
// }
|
// }
|
||||||
// mach->unlinkDay(days.at(i));
|
// mach->unlinkDay(days.at(i));
|
||||||
// }
|
// }
|
||||||
|
//
|
||||||
//}
|
//}
|
||||||
|
|
||||||
bool Profile::unlinkDay(Day * day)
|
bool Profile::unlinkDay(Day * day)
|
||||||
@ -953,7 +953,7 @@ QMap<QString, Profile *> profiles;
|
|||||||
|
|
||||||
void Done()
|
void Done()
|
||||||
{
|
{
|
||||||
PREF.Save();
|
p_pref->Save();
|
||||||
|
|
||||||
profiles.clear();
|
profiles.clear();
|
||||||
delete p_pref;
|
delete p_pref;
|
||||||
@ -973,7 +973,7 @@ Profile *Get(QString name)
|
|||||||
|
|
||||||
Profile *Create(QString name)
|
Profile *Create(QString name)
|
||||||
{
|
{
|
||||||
QString path = PREF.Get("{home}/Profiles/") + name;
|
QString path = p_pref->Get("{home}/Profiles/") + name;
|
||||||
QDir dir(path);
|
QDir dir(path);
|
||||||
|
|
||||||
if (!dir.exists(path)) {
|
if (!dir.exists(path)) {
|
||||||
@ -1009,7 +1009,7 @@ Profile *Get()
|
|||||||
|
|
||||||
void saveProfileList()
|
void saveProfileList()
|
||||||
{
|
{
|
||||||
QString filename = PREF.Get("{home}/profiles.xml");
|
QString filename = p_pref->Get("{home}/profiles.xml");
|
||||||
|
|
||||||
QDomDocument doc("profiles");
|
QDomDocument doc("profiles");
|
||||||
|
|
||||||
@ -1051,7 +1051,7 @@ int CleanupProfile(Profile *prof)
|
|||||||
for (auto & prf :migrateList) {
|
for (auto & prf :migrateList) {
|
||||||
if (prof->contains(prf)) {
|
if (prof->contains(prf)) {
|
||||||
qDebug() << "Migrating profile preference" << prf;
|
qDebug() << "Migrating profile preference" << prf;
|
||||||
PREF[prf] = (*prof)[prf];
|
(*p_pref)[prf] = (*prof)[prf];
|
||||||
prof->Erase(prf);
|
prof->Erase(prf);
|
||||||
cnt++;
|
cnt++;
|
||||||
}
|
}
|
||||||
@ -1068,8 +1068,9 @@ int CleanupProfile(Profile *prof)
|
|||||||
*/
|
*/
|
||||||
void Scan()
|
void Scan()
|
||||||
{
|
{
|
||||||
QString path = PREF.Get("{home}/Profiles");
|
QString path = p_pref->Get("{home}/Profiles");
|
||||||
QDir dir(path);
|
QDir dir(path);
|
||||||
|
profiles.clear();
|
||||||
|
|
||||||
if (!dir.exists(path)) {
|
if (!dir.exists(path)) {
|
||||||
return;
|
return;
|
||||||
@ -1101,7 +1102,7 @@ void Scan()
|
|||||||
|
|
||||||
if (cleanup > 0) {
|
if (cleanup > 0) {
|
||||||
qDebug() << "Saving preferences after migration";
|
qDebug() << "Saving preferences after migration";
|
||||||
PREF.Save();
|
p_pref->Save();
|
||||||
}
|
}
|
||||||
// Update profiles.xml for mobile version
|
// Update profiles.xml for mobile version
|
||||||
saveProfileList();
|
saveProfileList();
|
||||||
|
@ -249,7 +249,7 @@ extern Preferences *p_pref;
|
|||||||
extern Profile *p_profile;
|
extern Profile *p_profile;
|
||||||
|
|
||||||
// these are bad and must change
|
// these are bad and must change
|
||||||
#define PREF (*p_pref)
|
// #define PREF (*p_pref)
|
||||||
|
|
||||||
|
|
||||||
//! \brief Returns a count of all files & directories in a supplied folder
|
//! \brief Returns a count of all files & directories in a supplied folder
|
||||||
|
@ -885,26 +885,26 @@ bool PreferencesDialog::Save()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
PREF["Fonts_Application_Name"] = ui->applicationFont->currentText();
|
(*p_pref)["Fonts_Application_Name"] = ui->applicationFont->currentText();
|
||||||
PREF["Fonts_Application_Size"] = ui->applicationFontSize->value();
|
(*p_pref)["Fonts_Application_Size"] = ui->applicationFontSize->value();
|
||||||
PREF["Fonts_Application_Bold"] = ui->applicationFontBold->isChecked();
|
(*p_pref)["Fonts_Application_Bold"] = ui->applicationFontBold->isChecked();
|
||||||
PREF["Fonts_Application_Italic"] = ui->applicationFontItalic->isChecked();
|
(*p_pref)["Fonts_Application_Italic"] = ui->applicationFontItalic->isChecked();
|
||||||
|
|
||||||
|
|
||||||
PREF["Fonts_Graph_Name"] = ui->graphFont->currentText();
|
(*p_pref)["Fonts_Graph_Name"] = ui->graphFont->currentText();
|
||||||
PREF["Fonts_Graph_Size"] = ui->graphFontSize->value();
|
(*p_pref)["Fonts_Graph_Size"] = ui->graphFontSize->value();
|
||||||
PREF["Fonts_Graph_Bold"] = ui->graphFontBold->isChecked();
|
(*p_pref)["Fonts_Graph_Bold"] = ui->graphFontBold->isChecked();
|
||||||
PREF["Fonts_Graph_Italic"] = ui->graphFontItalic->isChecked();
|
(*p_pref)["Fonts_Graph_Italic"] = ui->graphFontItalic->isChecked();
|
||||||
|
|
||||||
PREF["Fonts_Title_Name"] = ui->titleFont->currentText();
|
(*p_pref)["Fonts_Title_Name"] = ui->titleFont->currentText();
|
||||||
PREF["Fonts_Title_Size"] = ui->titleFontSize->value();
|
(*p_pref)["Fonts_Title_Size"] = ui->titleFontSize->value();
|
||||||
PREF["Fonts_Title_Bold"] = ui->titleFontBold->isChecked();
|
(*p_pref)["Fonts_Title_Bold"] = ui->titleFontBold->isChecked();
|
||||||
PREF["Fonts_Title_Italic"] = ui->titleFontItalic->isChecked();
|
(*p_pref)["Fonts_Title_Italic"] = ui->titleFontItalic->isChecked();
|
||||||
|
|
||||||
PREF["Fonts_Big_Name"] = ui->bigFont->currentText();
|
(*p_pref)["Fonts_Big_Name"] = ui->bigFont->currentText();
|
||||||
PREF["Fonts_Big_Size"] = ui->bigFontSize->value();
|
(*p_pref)["Fonts_Big_Size"] = ui->bigFontSize->value();
|
||||||
PREF["Fonts_Big_Bold"] = ui->bigFontBold->isChecked();
|
(*p_pref)["Fonts_Big_Bold"] = ui->bigFontBold->isChecked();
|
||||||
PREF["Fonts_Big_Italic"] = ui->bigFontItalic->isChecked();
|
(*p_pref)["Fonts_Big_Italic"] = ui->bigFontItalic->isChecked();
|
||||||
|
|
||||||
QFont font = ui->applicationFont->currentFont();
|
QFont font = ui->applicationFont->currentFont();
|
||||||
font.setPointSize(ui->applicationFontSize->value());
|
font.setPointSize(ui->applicationFontSize->value());
|
||||||
@ -933,7 +933,7 @@ bool PreferencesDialog::Save()
|
|||||||
saveWaveInfo();
|
saveWaveInfo();
|
||||||
//qDebug() << "TODO: Save channels.xml to update channel data";
|
//qDebug() << "TODO: Save channels.xml to update channel data";
|
||||||
|
|
||||||
PREF.Save();
|
p_pref->Save();
|
||||||
profile->Save();
|
profile->Save();
|
||||||
|
|
||||||
if (recompress_events) {
|
if (recompress_events) {
|
||||||
|
@ -72,7 +72,7 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date)
|
|||||||
#ifdef Q_WS_X11
|
#ifdef Q_WS_X11
|
||||||
printer->setPrinterName("Print to File (PDF)");
|
printer->setPrinterName("Print to File (PDF)");
|
||||||
printer->setOutputFormat(QPrinter::PdfFormat);
|
printer->setOutputFormat(QPrinter::PdfFormat);
|
||||||
QString filename = PREF.Get("{home}/" + name + username + date.toString(Qt::ISODate) + ".pdf");
|
QString filename = p_pref->Get("{home}/") + name + username + date.toString(Qt::ISODate) + ".pdf";
|
||||||
|
|
||||||
printer->setOutputFileName(filename);
|
printer->setOutputFileName(filename);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user