2017-11-09 19:34:51 +01:00
|
|
|
/*
|
|
|
|
|
* This file is part of the Flowee project
|
|
|
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2014-01-16 16:05:44 +01:00
|
|
|
|
|
|
|
|
#include "utilitydialog.h"
|
|
|
|
|
|
|
|
|
|
#include "ui_helpmessagedialog.h"
|
|
|
|
|
|
|
|
|
|
#include "bitcoingui.h"
|
|
|
|
|
#include "clientmodel.h"
|
2015-11-09 19:23:46 +01:00
|
|
|
#include "guiconstants.h"
|
|
|
|
|
#include "intro.h"
|
|
|
|
|
#include "paymentrequestplus.h"
|
2014-01-16 16:05:44 +01:00
|
|
|
#include "guiutil.h"
|
|
|
|
|
|
2014-10-28 21:33:23 -04:00
|
|
|
#include "clientversion.h"
|
2014-01-16 16:05:44 +01:00
|
|
|
#include "init.h"
|
2015-01-10 14:48:55 +01:00
|
|
|
#include "util.h"
|
2014-01-16 16:05:44 +01:00
|
|
|
|
2017-08-17 20:53:23 -06:00
|
|
|
#include <cstdio>
|
2014-08-21 16:11:09 +02:00
|
|
|
|
2014-09-22 10:08:47 +02:00
|
|
|
#include <QCloseEvent>
|
2014-01-16 16:05:44 +01:00
|
|
|
#include <QLabel>
|
2014-06-10 16:02:46 +02:00
|
|
|
#include <QRegExp>
|
2014-12-29 00:25:18 +01:00
|
|
|
#include <QTextTable>
|
|
|
|
|
#include <QTextCursor>
|
2014-01-16 16:05:44 +01:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
2014-06-11 21:44:47 +02:00
|
|
|
/** "Help message" or "About" dialog box */
|
|
|
|
|
HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) :
|
2014-01-16 16:05:44 +01:00
|
|
|
QDialog(parent),
|
|
|
|
|
ui(new Ui::HelpMessageDialog)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
2017-11-13 23:09:33 +01:00
|
|
|
QString version = tr("Flowee the Hub") + " " + tr("version") + " " + QString::fromStdString(FormatFullVersion());
|
2014-06-11 21:44:47 +02:00
|
|
|
/* On x86 add a bit specifier to the version so that users can distinguish between
|
|
|
|
|
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
|
|
|
|
|
*/
|
|
|
|
|
#if defined(__x86_64__)
|
|
|
|
|
version += " " + tr("(%1-bit)").arg(64);
|
|
|
|
|
#elif defined(__i386__ )
|
|
|
|
|
version += " " + tr("(%1-bit)").arg(32);
|
|
|
|
|
#endif
|
2014-01-16 16:05:44 +01:00
|
|
|
|
2014-06-11 21:44:47 +02:00
|
|
|
if (about)
|
|
|
|
|
{
|
2017-11-13 23:09:33 +01:00
|
|
|
setWindowTitle(tr("About Flowee the Hub"));
|
2014-01-16 16:05:44 +01:00
|
|
|
|
2014-12-29 00:25:18 +01:00
|
|
|
ui->aboutMessage->setTextFormat(Qt::RichText);
|
2014-06-11 21:44:47 +02:00
|
|
|
ui->scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
2017-11-13 23:09:33 +01:00
|
|
|
text = version ;
|
2014-12-29 00:25:18 +01:00
|
|
|
ui->aboutMessage->setWordWrap(true);
|
|
|
|
|
ui->helpMessage->setVisible(false);
|
2014-06-11 21:44:47 +02:00
|
|
|
} else {
|
|
|
|
|
setWindowTitle(tr("Command-line options"));
|
2015-03-09 00:29:59 -07:00
|
|
|
QString header = tr("Usage:") + "\n" +
|
|
|
|
|
" bitcoin-qt [" + tr("command-line options") + "] " + "\n";
|
2014-12-29 00:25:18 +01:00
|
|
|
QTextCursor cursor(ui->helpMessage->document());
|
|
|
|
|
cursor.insertText(version);
|
|
|
|
|
cursor.insertBlock();
|
2015-03-09 00:29:59 -07:00
|
|
|
cursor.insertText(header);
|
2014-12-29 00:25:18 +01:00
|
|
|
cursor.insertBlock();
|
2015-03-09 00:29:59 -07:00
|
|
|
|
2019-04-02 17:45:04 +02:00
|
|
|
std::string strUsage = Settings::HubQt().helpMessage();
|
2015-11-09 19:23:46 +01:00
|
|
|
QString coreOptions = QString::fromStdString(strUsage);
|
2015-03-09 00:29:59 -07:00
|
|
|
text = version + "\n" + header + "\n" + coreOptions;
|
|
|
|
|
|
2014-12-29 00:25:18 +01:00
|
|
|
QTextTableFormat tf;
|
|
|
|
|
tf.setBorderStyle(QTextFrameFormat::BorderStyle_None);
|
|
|
|
|
tf.setCellPadding(2);
|
|
|
|
|
QVector<QTextLength> widths;
|
2015-01-09 20:57:17 +01:00
|
|
|
widths << QTextLength(QTextLength::PercentageLength, 35);
|
|
|
|
|
widths << QTextLength(QTextLength::PercentageLength, 65);
|
2014-12-29 00:25:18 +01:00
|
|
|
tf.setColumnWidthConstraints(widths);
|
2014-01-16 16:05:44 +01:00
|
|
|
|
2014-12-29 00:25:18 +01:00
|
|
|
QTextCharFormat bold;
|
|
|
|
|
bold.setFontWeight(QFont::Bold);
|
2015-03-09 00:29:59 -07:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_FOREACH (const QString &line, coreOptions.split("\n")) {
|
2015-03-09 00:29:59 -07:00
|
|
|
if (line.startsWith(" -"))
|
|
|
|
|
{
|
|
|
|
|
cursor.currentTable()->appendRows(1);
|
|
|
|
|
cursor.movePosition(QTextCursor::PreviousCell);
|
2014-12-29 00:25:18 +01:00
|
|
|
cursor.movePosition(QTextCursor::NextRow);
|
2015-03-09 00:29:59 -07:00
|
|
|
cursor.insertText(line.trimmed());
|
|
|
|
|
cursor.movePosition(QTextCursor::NextCell);
|
|
|
|
|
} else if (line.startsWith(" ")) {
|
|
|
|
|
cursor.insertText(line.trimmed()+' ');
|
|
|
|
|
} else if (line.size() > 0) {
|
|
|
|
|
//Title of a group
|
|
|
|
|
if (cursor.currentTable())
|
|
|
|
|
cursor.currentTable()->appendRows(1);
|
|
|
|
|
cursor.movePosition(QTextCursor::Down);
|
|
|
|
|
cursor.insertText(line.trimmed(), bold);
|
|
|
|
|
cursor.insertTable(1, 2, tf);
|
2014-12-29 00:25:18 +01:00
|
|
|
}
|
|
|
|
|
}
|
2014-06-11 21:44:47 +02:00
|
|
|
|
2014-12-29 00:25:18 +01:00
|
|
|
ui->helpMessage->moveCursor(QTextCursor::Start);
|
|
|
|
|
ui->scrollArea->setVisible(false);
|
2015-02-04 15:15:52 +01:00
|
|
|
ui->aboutLogo->setVisible(false);
|
2014-06-11 21:44:47 +02:00
|
|
|
}
|
2014-01-16 16:05:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HelpMessageDialog::~HelpMessageDialog()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpMessageDialog::printToConsole()
|
|
|
|
|
{
|
|
|
|
|
// On other operating systems, the expected action is to print the message to the console.
|
2014-06-11 21:44:47 +02:00
|
|
|
fprintf(stdout, "%s\n", qPrintable(text));
|
2014-01-16 16:05:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpMessageDialog::showOrPrint()
|
|
|
|
|
{
|
|
|
|
|
#if defined(WIN32)
|
2014-06-11 21:44:47 +02:00
|
|
|
// On Windows, show a message box, as there is no stderr/stdout in windowed applications
|
|
|
|
|
exec();
|
2014-01-16 16:05:44 +01:00
|
|
|
#else
|
2014-06-11 21:44:47 +02:00
|
|
|
// On other operating systems, print help text to console
|
|
|
|
|
printToConsole();
|
2014-01-16 16:05:44 +01:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpMessageDialog::on_okButton_accepted()
|
|
|
|
|
{
|
|
|
|
|
close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** "Shutdown" window */
|
2014-09-22 10:08:47 +02:00
|
|
|
ShutdownWindow::ShutdownWindow(QWidget *parent, Qt::WindowFlags f):
|
|
|
|
|
QWidget(parent, f)
|
|
|
|
|
{
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout();
|
|
|
|
|
layout->addWidget(new QLabel(
|
2017-11-13 23:09:33 +01:00
|
|
|
tr("Flowee is shutting down...") + "<br /><br />" +
|
2014-09-22 10:08:47 +02:00
|
|
|
tr("Do not shut down the computer until this window disappears.")));
|
|
|
|
|
setLayout(layout);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-16 16:05:44 +01:00
|
|
|
void ShutdownWindow::showShutdownWindow(BitcoinGUI *window)
|
|
|
|
|
{
|
|
|
|
|
if (!window)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Show a simple window indicating shutdown status
|
2014-09-22 10:08:47 +02:00
|
|
|
QWidget *shutdownWindow = new ShutdownWindow();
|
|
|
|
|
// We don't hold a direct pointer to the shutdown window after creation, so use
|
|
|
|
|
// Qt::WA_DeleteOnClose to make sure that the window will be deleted eventually.
|
|
|
|
|
shutdownWindow->setAttribute(Qt::WA_DeleteOnClose);
|
2014-06-27 15:09:41 +02:00
|
|
|
shutdownWindow->setWindowTitle(window->windowTitle());
|
2014-01-16 16:05:44 +01:00
|
|
|
|
|
|
|
|
// Center shutdown window at where main window was
|
|
|
|
|
const QPoint global = window->mapToGlobal(window->rect().center());
|
|
|
|
|
shutdownWindow->move(global.x() - shutdownWindow->width() / 2, global.y() - shutdownWindow->height() / 2);
|
|
|
|
|
shutdownWindow->show();
|
|
|
|
|
}
|
2014-09-22 10:08:47 +02:00
|
|
|
|
|
|
|
|
void ShutdownWindow::closeEvent(QCloseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
event->ignore();
|
|
|
|
|
}
|