Reset channel names properly on language change

This commit is contained in:
Mark Watkins 2016-03-17 18:37:08 +10:00
parent f79f12be86
commit 7962666b14
8 changed files with 14 additions and 38 deletions

View File

@ -482,6 +482,6 @@ int gXAxisPressure::minimumHeight()
#endif #endif
} }
void gXAxisPressure::paint(QPainter &painter, gGraph &graph, const QRegion &region) void gXAxisPressure::paint(QPainter & /*painter*/, gGraph &/*graph*/, const QRegion &/*region*/)
{ {
} }

View File

@ -123,7 +123,6 @@ const QString STR_GEN_UpdatesAutoCheck = "Updates_AutoCheck";
const QString STR_GEN_UpdateCheckFrequency = "Updates_CheckFrequency"; const QString STR_GEN_UpdateCheckFrequency = "Updates_CheckFrequency";
const QString STR_GEN_DataFolder = "DataFolder"; const QString STR_GEN_DataFolder = "DataFolder";
const QString STR_PREF_ResetChannelNames = "ResetChannelNames";
const QString STR_PREF_AllowEarlyUpdates = "AllowEarlyUpdates"; const QString STR_PREF_AllowEarlyUpdates = "AllowEarlyUpdates";
const QString STR_PREF_ReimportBackup = "ReimportBackup"; const QString STR_PREF_ReimportBackup = "ReimportBackup";
const QString STR_PREF_LastCPAPPath = "LastCPAPPath"; const QString STR_PREF_LastCPAPPath = "LastCPAPPath";

View File

@ -2102,6 +2102,7 @@ bool PRS1Import::ParseSummaryF5V2()
CPAPMode cpapmode = MODE_UNKNOWN; CPAPMode cpapmode = MODE_UNKNOWN;
summary_duration = data[0x18] | data[0x19] << 8; summary_duration = data[0x18] | data[0x19] << 8;
return true;
} }
bool PRS1Import::ParseSummaryF0V6() bool PRS1Import::ParseSummaryF0V6()

View File

@ -993,17 +993,6 @@ bool ChannelList::Load(QString filename)
return true; return true;
} }
void ChannelList::resetStrings()
{
QHash<ChannelID, Channel *>::iterator it;
QHash<ChannelID, Channel *>::iterator it_end = channels.end();
for (it = channels.begin(); it != it_end; ++it) {
Channel * chan = it.value();
chan->resetStrings();
}
}
void ChannelList::add(QString group, Channel *chan) void ChannelList::add(QString group, Channel *chan)
{ {
Q_ASSERT(chan != nullptr); Q_ASSERT(chan != nullptr);

View File

@ -129,11 +129,6 @@ class Channel
void setOrder(short order) { m_order = order; } void setOrder(short order) { m_order = order; }
void setShowInOverview(bool b) { m_showInOverview = b; } void setShowInOverview(bool b) { m_showInOverview = b; }
void resetStrings() {
m_fullname = default_fullname;
m_label = default_label;
m_description = default_description;
}
QString option(int i) { QString option(int i) {
if (m_options.contains(i)) { if (m_options.contains(i)) {
@ -226,8 +221,6 @@ class ChannelList
} }
} }
void resetStrings();
//! \brief Channel List indexed by integer ID //! \brief Channel List indexed by integer ID
QHash<ChannelID, Channel *> channels; QHash<ChannelID, Channel *> channels;

View File

@ -224,10 +224,12 @@ int main(int argc, char *argv[])
initializeStrings(); // Important, call this AFTER translator is installed. initializeStrings(); // Important, call this AFTER translator is installed.
a.setApplicationName(STR_TR_SleepyHead); a.setApplicationName(STR_TR_SleepyHead);
if (settings.value(LangSetting, "").toString() == lastlanguage) {
// don't reset if they selected the same language again // Do reset strings if they selected the same langauge again..
changing_language = false; // if (settings.value(LangSetting, "").toString() == lastlanguage) {
} // // don't reset if they selected the same language again
// changing_language = false;
// }
//////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Detection // OpenGL Detection
@ -402,8 +404,6 @@ retry_directory:
PREF.init(STR_GEN_UpdateCheckFrequency, 7); // days PREF.init(STR_GEN_UpdateCheckFrequency, 7); // days
PREF.init(STR_PREF_AllowEarlyUpdates, false); PREF.init(STR_PREF_AllowEarlyUpdates, false);
PREF.init(STR_PREF_ResetChannelNames, false);
//////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates.. // Check when last checked for updates..
//////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////
@ -502,13 +502,7 @@ retry_directory:
MainWindow w; MainWindow w;
mainwin = &w; mainwin = &w;
loadChannels(); loadChannels(changing_language);
if (changing_language) {
qDebug() << "Resetting Channel strings to defaults for language change";
schema::channel.resetStrings();
}
// if (check_updates) { mainwin->CheckForUpdates(); } // if (check_updates) { mainwin->CheckForUpdates(); }

View File

@ -403,7 +403,7 @@ void saveChannels()
} }
void loadChannels() void loadChannels(bool changing_language)
{ {
QString filename = p_profile->Get("{DataFolder}/") + "channels.dat"; QString filename = p_profile->Get("{DataFolder}/") + "channels.dat";
QFile f(filename); QFile f(filename);
@ -478,12 +478,13 @@ void loadChannels()
chan->setDefaultColor(color); chan->setDefaultColor(color);
// Don't import channel descriptions if event renaming is turned off. (helps pick up new translations) // Don't import channel descriptions if event renaming is turned off. (helps pick up new translations)
if (!PREF[STR_PREF_ResetChannelNames].toBool()) { if (changing_language) {
// Nothing
} else {
chan->setFullname(fullname); chan->setFullname(fullname);
chan->setLabel(label); chan->setLabel(label);
chan->setDescription(description); chan->setDescription(description);
} }
PREF[STR_PREF_ResetChannelNames]=false;
chan->setLowerThreshold(lowerThreshold); chan->setLowerThreshold(lowerThreshold);
chan->setLowerThresholdColor(lowerThresholdColor); chan->setLowerThresholdColor(lowerThresholdColor);
@ -2573,7 +2574,6 @@ void MainWindow::on_actionChange_Language_triggered()
if (QMessageBox::question(this,STR_MessageBox_Warning,tr("Changing the language will reset custom Event and Waveform names/labels/descriptions.")+"\n\n"+tr("Are you sure you want to do this?"), QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) { if (QMessageBox::question(this,STR_MessageBox_Warning,tr("Changing the language will reset custom Event and Waveform names/labels/descriptions.")+"\n\n"+tr("Are you sure you want to do this?"), QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
return; return;
} }
PREF[STR_PREF_ResetChannelNames]=true;
p_profile->Save(); p_profile->Save();
PREF.Save(); PREF.Save();

View File

@ -66,7 +66,7 @@ class Daily;
class Report; class Report;
class Overview; class Overview;
void loadChannels(); void loadChannels(bool changing_language=false);
void saveChannels(); void saveChannels();