mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
Qt: prepare for removal of deprecated GUI settings
If you remove a custom name and already had a deprecated name before, you'll never get rid of it. This applies to all of the deprecated settings.
This commit is contained in:
parent
b518a9a338
commit
6892cb1c7e
@ -597,15 +597,18 @@ void game_list_frame::Refresh(const bool from_drive, const bool scroll_after)
|
|||||||
if (last_played.isEmpty())
|
if (last_played.isEmpty())
|
||||||
{
|
{
|
||||||
last_played = m_gui_settings->GetValue(gui::persistent::last_played, serial, "").toString();
|
last_played = m_gui_settings->GetValue(gui::persistent::last_played, serial, "").toString();
|
||||||
|
m_gui_settings->RemoveValue(gui::persistent::last_played, serial);
|
||||||
}
|
}
|
||||||
if (playtime <= 0)
|
if (playtime <= 0)
|
||||||
{
|
{
|
||||||
playtime = m_gui_settings->GetValue(gui::persistent::playtime, serial, 0).toULongLong();
|
playtime = m_gui_settings->GetValue(gui::persistent::playtime, serial, 0).toULongLong();
|
||||||
|
m_gui_settings->RemoveValue(gui::persistent::playtime, serial);
|
||||||
}
|
}
|
||||||
// Deprecated values older than August 2nd 2020
|
// Deprecated values older than August 2nd 2020
|
||||||
if (note.isEmpty())
|
if (note.isEmpty())
|
||||||
{
|
{
|
||||||
note = m_gui_settings->GetValue(gui::persistent::notes, serial, "").toString();
|
note = m_gui_settings->GetValue(gui::persistent::notes, serial, "").toString();
|
||||||
|
m_gui_settings->RemoveValue(gui::persistent::notes, serial);
|
||||||
|
|
||||||
// Move to persistent settings
|
// Move to persistent settings
|
||||||
if (!note.isEmpty())
|
if (!note.isEmpty())
|
||||||
@ -616,6 +619,7 @@ void game_list_frame::Refresh(const bool from_drive, const bool scroll_after)
|
|||||||
if (title.isEmpty())
|
if (title.isEmpty())
|
||||||
{
|
{
|
||||||
title = m_gui_settings->GetValue(gui::persistent::titles, serial, "").toString().simplified();
|
title = m_gui_settings->GetValue(gui::persistent::titles, serial, "").toString().simplified();
|
||||||
|
m_gui_settings->RemoveValue(gui::persistent::titles, serial);
|
||||||
|
|
||||||
// Move to persistent settings
|
// Move to persistent settings
|
||||||
if (!title.isEmpty())
|
if (!title.isEmpty())
|
||||||
|
@ -186,6 +186,7 @@ void save_data_list_dialog::UpdateList()
|
|||||||
if (notes.isEmpty())
|
if (notes.isEmpty())
|
||||||
{
|
{
|
||||||
notes = m_gui_settings->GetValue(gui::m_saveNotes).toMap();
|
notes = m_gui_settings->GetValue(gui::m_saveNotes).toMap();
|
||||||
|
m_gui_settings->RemoveValue(gui::m_saveNotes);
|
||||||
|
|
||||||
// Move to persistent settings
|
// Move to persistent settings
|
||||||
if (!notes.isEmpty())
|
if (!notes.isEmpty())
|
||||||
|
@ -39,9 +39,9 @@ void settings::RemoveValue(const QString& key, const QString& name)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QVariant settings::GetValue(const gui_save& entry) const
|
void settings::RemoveValue(const gui_save& entry)
|
||||||
{
|
{
|
||||||
return m_settings ? m_settings->value(entry.key + "/" + entry.name, entry.def) : entry.def;
|
RemoveValue(entry.key, entry.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
QVariant settings::GetValue(const QString& key, const QString& name, const QVariant& def) const
|
QVariant settings::GetValue(const QString& key, const QString& name, const QVariant& def) const
|
||||||
@ -49,6 +49,11 @@ QVariant settings::GetValue(const QString& key, const QString& name, const QVari
|
|||||||
return m_settings ? m_settings->value(key + "/" + name, def) : def;
|
return m_settings ? m_settings->value(key + "/" + name, def) : def;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QVariant settings::GetValue(const gui_save& entry) const
|
||||||
|
{
|
||||||
|
return GetValue(entry.key, entry.name, entry.def);
|
||||||
|
}
|
||||||
|
|
||||||
QVariant settings::List2Var(const q_pair_list& list)
|
QVariant settings::List2Var(const q_pair_list& list)
|
||||||
{
|
{
|
||||||
QByteArray ba;
|
QByteArray ba;
|
||||||
|
@ -30,15 +30,16 @@ public:
|
|||||||
~settings();
|
~settings();
|
||||||
|
|
||||||
QString GetSettingsDir() const;
|
QString GetSettingsDir() const;
|
||||||
|
|
||||||
QVariant GetValue(const gui_save& entry) const;
|
|
||||||
QVariant GetValue(const QString& key, const QString& name, const QVariant& def) const;
|
QVariant GetValue(const QString& key, const QString& name, const QVariant& def) const;
|
||||||
|
QVariant GetValue(const gui_save& entry) const;
|
||||||
static QVariant List2Var(const q_pair_list& list);
|
static QVariant List2Var(const q_pair_list& list);
|
||||||
static q_pair_list Var2List(const QVariant& var);
|
static q_pair_list Var2List(const QVariant& var);
|
||||||
|
|
||||||
public Q_SLOTS:
|
public Q_SLOTS:
|
||||||
/** Remove entry */
|
/** Remove entry */
|
||||||
void RemoveValue(const QString& key, const QString& name);
|
void RemoveValue(const QString& key, const QString& name);
|
||||||
|
void RemoveValue(const gui_save& entry);
|
||||||
|
|
||||||
/** Write value to entry */
|
/** Write value to entry */
|
||||||
void SetValue(const gui_save& entry, const QVariant& value);
|
void SetValue(const gui_save& entry, const QVariant& value);
|
||||||
|
@ -131,6 +131,7 @@ void user_manager_dialog::Init()
|
|||||||
if (m_active_user.empty())
|
if (m_active_user.empty())
|
||||||
{
|
{
|
||||||
m_active_user = m_gui_settings->GetValue(gui::um_active_user).toString().toStdString();
|
m_active_user = m_gui_settings->GetValue(gui::um_active_user).toString().toStdString();
|
||||||
|
m_gui_settings->RemoveValue(gui::um_active_user);
|
||||||
|
|
||||||
if (!m_active_user.empty())
|
if (!m_active_user.empty())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user