Merge pull request #7006
f71bfef
add UI help for -resetguisettings (Jonas Schnelli)ae98388
[Qt] add startup option to reset Qt settings (Jonas Schnelli)
This commit is contained in:
commit
26af1ac7cb
4 changed files with 13 additions and 9 deletions
|
@ -501,6 +501,7 @@ std::string HelpMessage(HelpMessageMode mode)
|
|||
strUsage += HelpMessageOpt("-min", _("Start minimized"));
|
||||
strUsage += HelpMessageOpt("-rootcertificates=<file>", _("Set SSL root certificates for payment request (default: -system-)"));
|
||||
strUsage += HelpMessageOpt("-splash", _("Show splash screen on startup (default: 1)"));
|
||||
strUsage += HelpMessageOpt("-resetguisettings", _("Reset all settings changes made over the GUI"));
|
||||
if (showDebug) {
|
||||
strUsage += HelpMessageOpt("-uiplatform", "Select platform to customize UI for (one of windows, macosx, other; default: platform compiled on)");
|
||||
}
|
||||
|
|
|
@ -202,7 +202,7 @@ public:
|
|||
void createPaymentServer();
|
||||
#endif
|
||||
/// Create options model
|
||||
void createOptionsModel();
|
||||
void createOptionsModel(bool resetSettings);
|
||||
/// Create main window
|
||||
void createWindow(const NetworkStyle *networkStyle);
|
||||
/// Create splash screen
|
||||
|
@ -352,9 +352,9 @@ void BitcoinApplication::createPaymentServer()
|
|||
}
|
||||
#endif
|
||||
|
||||
void BitcoinApplication::createOptionsModel()
|
||||
void BitcoinApplication::createOptionsModel(bool resetSettings)
|
||||
{
|
||||
optionsModel = new OptionsModel();
|
||||
optionsModel = new OptionsModel(NULL, resetSettings);
|
||||
}
|
||||
|
||||
void BitcoinApplication::createWindow(const NetworkStyle *networkStyle)
|
||||
|
@ -645,7 +645,7 @@ int main(int argc, char *argv[])
|
|||
qInstallMessageHandler(DebugMessageHandler);
|
||||
#endif
|
||||
// Load GUI settings from QSettings
|
||||
app.createOptionsModel();
|
||||
app.createOptionsModel(mapArgs.count("-resetguisettings") != 0);
|
||||
|
||||
// Subscribe to global signals from core
|
||||
uiInterface.InitMessage.connect(InitMessage);
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
#include <QSettings>
|
||||
#include <QStringList>
|
||||
|
||||
OptionsModel::OptionsModel(QObject *parent) :
|
||||
OptionsModel::OptionsModel(QObject *parent, bool resetSettings) :
|
||||
QAbstractListModel(parent)
|
||||
{
|
||||
Init();
|
||||
Init(resetSettings);
|
||||
}
|
||||
|
||||
void OptionsModel::addOverriddenOption(const std::string &option)
|
||||
|
@ -38,8 +38,11 @@ void OptionsModel::addOverriddenOption(const std::string &option)
|
|||
}
|
||||
|
||||
// Writes all missing QSettings with their default values
|
||||
void OptionsModel::Init()
|
||||
void OptionsModel::Init(bool resetSettings)
|
||||
{
|
||||
if (resetSettings)
|
||||
Reset();
|
||||
|
||||
QSettings settings;
|
||||
|
||||
// Ensure restart flag is unset on client startup
|
||||
|
|
|
@ -24,7 +24,7 @@ class OptionsModel : public QAbstractListModel
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit OptionsModel(QObject *parent = 0);
|
||||
explicit OptionsModel(QObject *parent = 0, bool resetSettings = false);
|
||||
|
||||
enum OptionID {
|
||||
StartAtStartup, // bool
|
||||
|
@ -48,7 +48,7 @@ public:
|
|||
OptionIDRowCount,
|
||||
};
|
||||
|
||||
void Init();
|
||||
void Init(bool resetSettings = false);
|
||||
void Reset();
|
||||
|
||||
int rowCount(const QModelIndex & parent = QModelIndex()) const;
|
||||
|
|
Loading…
Reference in a new issue