|
|
@ -8,6 +8,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
#include "bitcoingui.h"
|
|
|
|
#include "bitcoingui.h"
|
|
|
|
#include "clientmodel.h"
|
|
|
|
#include "clientmodel.h"
|
|
|
|
|
|
|
|
#include "guiconstants.h"
|
|
|
|
|
|
|
|
#include "intro.h"
|
|
|
|
|
|
|
|
#include "paymentrequestplus.h"
|
|
|
|
#include "guiutil.h"
|
|
|
|
#include "guiutil.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "clientversion.h"
|
|
|
|
#include "clientversion.h"
|
|
|
@ -70,7 +73,22 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
|
|
|
|
cursor.insertText(header);
|
|
|
|
cursor.insertText(header);
|
|
|
|
cursor.insertBlock();
|
|
|
|
cursor.insertBlock();
|
|
|
|
|
|
|
|
|
|
|
|
QString coreOptions = QString::fromStdString(HelpMessage(HMM_BITCOIN_QT));
|
|
|
|
std::string strUsage = HelpMessage(HMM_BITCOIN_QT);
|
|
|
|
|
|
|
|
const bool showDebug = GetBoolArg("-help-debug", false);
|
|
|
|
|
|
|
|
strUsage += HelpMessageGroup(_("UI Options:"));
|
|
|
|
|
|
|
|
if (showDebug) {
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-allowselfsignedrootcertificates", strprintf("Allow self signed root certificates (default: %u)", DEFAULT_SELFSIGNED_ROOTCERTS));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-choosedatadir", strprintf(_("Choose data directory on startup (default: %u)"), DEFAULT_CHOOSE_DATADIR));
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-lang=<lang>", _("Set language, for example \"de_DE\" (default: system locale)"));
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-min", _("Start minimized"));
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-rootcertificates=<file>", _("Set SSL root certificates for payment request (default: -system-)"));
|
|
|
|
|
|
|
|
strUsage += HelpMessageOpt("-splash", strprintf(_("Show splash screen on startup (default: %u)"), DEFAULT_SPLASHSCREEN));
|
|
|
|
|
|
|
|
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)");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QString coreOptions = QString::fromStdString(strUsage);
|
|
|
|
text = version + "\n" + header + "\n" + coreOptions;
|
|
|
|
text = version + "\n" + header + "\n" + coreOptions;
|
|
|
|
|
|
|
|
|
|
|
|
QTextTableFormat tf;
|
|
|
|
QTextTableFormat tf;
|
|
|
|