2015-12-13 14:51:43 +01:00
// Copyright (c) 2011-2015 The Bitcoin Core developers
2019-01-29 15:53:14 +01:00
// Copyright (c) 2014-2019 The Dash Core developers
2014-12-13 05:09:33 +01:00
// Distributed under the MIT software license, see the accompanying
2014-01-16 16:05:44 +01:00
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2016-02-04 13:41:58 +01:00
# if defined(HAVE_CONFIG_H)
2020-03-19 23:46:56 +01:00
# include <config/dash-config.h>
2016-02-04 13:41:58 +01:00
# endif
2020-03-19 23:46:56 +01:00
# include <qt/utilitydialog.h>
2014-01-16 16:05:44 +01:00
2020-03-19 23:46:56 +01:00
# include <qt/forms/ui_helpmessagedialog.h>
2014-01-16 16:05:44 +01:00
2020-03-19 23:46:56 +01:00
# include <qt/bitcoingui.h>
# include <qt/clientmodel.h>
# include <qt/guiconstants.h>
# include <qt/guiutil.h>
# include <qt/intro.h>
# include <qt/paymentrequestplus.h>
2014-01-16 16:05:44 +01:00
2020-03-19 23:46:56 +01:00
# include <clientversion.h>
# include <init.h>
# include <util.h>
2014-01-16 16:05:44 +01:00
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
# include <stdio.h>
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 */
2016-11-20 07:54:33 +01:00
HelpMessageDialog : : HelpMessageDialog ( QWidget * parent , HelpMode helpMode ) :
2014-01-16 16:05:44 +01:00
QDialog ( parent ) ,
2014-06-11 21:44:47 +02:00
ui ( new Ui : : HelpMessageDialog )
2014-01-16 16:05:44 +01:00
{
ui - > setupUi ( this ) ;
2020-06-16 00:11:08 +02:00
GUIUtil : : updateFonts ( ) ;
2016-02-04 13:41:58 +01:00
QString version = tr ( PACKAGE_NAME ) + " " + 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
2017-01-29 16:05:06 +01:00
* 32 and 64 bit builds . On other architectures , 32 / 64 bit may be more ambiguous .
2014-06-11 21:44:47 +02:00
*/
2014-01-20 13:38:50 +01:00
# if defined(__x86_64__)
2014-06-11 21:44:47 +02:00
version + = " " + tr ( " (%1-bit) " ) . arg ( 64 ) ;
2014-01-20 13:38:50 +01:00
# elif defined(__i386__ )
2014-06-11 21:44:47 +02:00
version + = " " + tr ( " (%1-bit) " ) . arg ( 32 ) ;
2014-01-20 13:38:50 +01:00
# endif
2014-01-16 16:05:44 +01:00
2016-11-20 07:54:33 +01:00
if ( helpMode = = about )
2014-06-11 21:44:47 +02:00
{
2016-02-04 13:41:58 +01:00
setWindowTitle ( tr ( " About %1 " ) . arg ( tr ( PACKAGE_NAME ) ) ) ;
2014-06-11 21:44:47 +02:00
2014-06-10 16:02:46 +02:00
/// HTML-format the license message from the core
QString licenseInfo = QString : : fromStdString ( LicenseInfo ( ) ) ;
2014-06-11 21:44:47 +02:00
QString licenseInfoHTML = licenseInfo ;
2015-05-28 00:07:53 +02:00
2014-06-10 16:02:46 +02:00
// Make URLs clickable
QRegExp uri ( " <(.*) > " , Qt::CaseSensitive, QRegExp::RegExp2) ;
uri . setMinimal ( true ) ; // use non-greedy matching
2020-07-14 15:11:07 +02:00
licenseInfoHTML . replace ( uri , QString ( " <a style= \" %1 \" href= \" \\ 1 \" > \\ 1</a> " ) . arg ( GUIUtil : : getThemedStyleQString ( GUIUtil : : ThemedStyle : : TS_COMMAND ) ) ) ;
2014-06-10 16:02:46 +02:00
// Replace newlines with HTML breaks
2016-02-04 13:41:58 +01:00
licenseInfoHTML . replace ( " \n " , " <br> " ) ;
2014-06-11 21:44:47 +02: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 ) ;
text = version + " \n " + licenseInfo ;
2014-12-29 00:25:18 +01:00
ui - > aboutMessage - > setText ( version + " <br><br> " + licenseInfoHTML ) ;
ui - > aboutMessage - > setWordWrap ( true ) ;
ui - > helpMessage - > setVisible ( false ) ;
2016-11-20 07:54:33 +01:00
} else if ( helpMode = = cmdline ) {
2014-06-11 21:44:47 +02:00
setWindowTitle ( tr ( " Command-line options " ) ) ;
QString header = tr ( " Usage: " ) + " \n " +
2015-04-05 23:56:58 +02:00
" dash-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 08:29:59 +01:00
cursor . insertText ( header ) ;
2014-12-29 00:25:18 +01:00
cursor . insertBlock ( ) ;
2015-03-09 08:29:59 +01:00
2020-06-09 05:44:04 +02:00
std : : string strUsage = HelpMessage ( HelpMessageMode : : BITCOIN_QT ) ;
2019-06-24 18:44:27 +02:00
const bool showDebug = gArgs . GetBoolArg ( " -help-debug " , false ) ;
2015-12-02 16:37:43 +01:00
strUsage + = HelpMessageGroup ( tr ( " UI Options: " ) . toStdString ( ) ) ;
2015-11-09 19:23:46 +01:00
if ( showDebug ) {
strUsage + = HelpMessageOpt ( " -allowselfsignedrootcertificates " , strprintf ( " Allow self signed root certificates (default: %u) " , DEFAULT_SELFSIGNED_ROOTCERTS ) ) ;
}
2015-12-02 16:37:43 +01:00
strUsage + = HelpMessageOpt ( " -choosedatadir " , strprintf ( tr ( " Choose data directory on startup (default: %u) " ) . toStdString ( ) , DEFAULT_CHOOSE_DATADIR ) ) ;
2020-07-12 21:32:04 +02:00
strUsage + = HelpMessageOpt ( " -custom-css-dir " , " Set a directory which contains custom css files. Those will be used as stylesheets for the UI. " ) ;
2020-06-30 19:05:42 +02:00
strUsage + = HelpMessageOpt ( " -font-family " , tr ( " Set the font family. Possible values: %1. (default: %2) " ) . arg ( " SystemDefault, Montserrat " ) . arg ( GUIUtil : : fontFamilyToString ( GUIUtil : : getFontFamilyDefault ( ) ) ) . toStdString ( ) ) ;
2020-06-15 14:16:00 +02:00
strUsage + = HelpMessageOpt ( " -font-scale " , tr ( " Set a scale factor which gets applied to the base font size. Possible range %1 (smallest fonts) to %2 (largest fonts). (default: %3) " ) . arg ( - 100 ) . arg ( 100 ) . arg ( GUIUtil : : getFontScaleDefault ( ) ) . toStdString ( ) ) ;
strUsage + = HelpMessageOpt ( " -font-weight-bold " , tr ( " Set the font weight for bold texts. Possible range %1 to %2 (default: %3) " ) . arg ( 0 ) . arg ( 8 ) . arg ( GUIUtil : : weightToArg ( GUIUtil : : getFontWeightBoldDefault ( ) ) ) . toStdString ( ) ) ;
strUsage + = HelpMessageOpt ( " -font-weight-normal " , tr ( " Set the font weight for normal texts. Possible range %1 to %2 (default: %3) " ) . arg ( 0 ) . arg ( 8 ) . arg ( GUIUtil : : weightToArg ( GUIUtil : : getFontWeightNormalDefault ( ) ) ) . toStdString ( ) ) ;
2015-12-02 16:37:43 +01:00
strUsage + = HelpMessageOpt ( " -lang=<lang> " , tr ( " Set language, for example \" de_DE \" (default: system locale) " ) . toStdString ( ) ) ;
strUsage + = HelpMessageOpt ( " -min " , tr ( " Start minimized " ) . toStdString ( ) ) ;
strUsage + = HelpMessageOpt ( " -rootcertificates=<file> " , tr ( " Set SSL root certificates for payment request (default: -system-) " ) . toStdString ( ) ) ;
strUsage + = HelpMessageOpt ( " -splash " , strprintf ( tr ( " Show splash screen on startup (default: %u) " ) . toStdString ( ) , DEFAULT_SPLASHSCREEN ) ) ;
2017-09-07 17:59:00 +02:00
strUsage + = HelpMessageOpt ( " -resetguisettings " , tr ( " Reset all settings changed in the GUI " ) . toStdString ( ) ) ;
2015-11-09 19:23:46 +01:00
if ( showDebug ) {
2015-11-28 22:44:55 +01:00
strUsage + = HelpMessageOpt ( " -uiplatform " , strprintf ( " Select platform to customize UI for (one of windows, macosx, other; default: %s) " , BitcoinGUI : : DEFAULT_UIPLATFORM ) ) ;
2020-07-14 22:16:38 +02:00
strUsage + = HelpMessageOpt ( " -debug-ui " , " Updates the UI's stylesheets in realtime with changes made to the css files in -custom-css-dir and forces some widgets to show up which are usually only visible under certain circumstances. (default: 0) " ) ;
2015-11-09 19:23:46 +01:00
}
2020-06-11 10:38:46 +02:00
strUsage + = HelpMessageOpt ( " -windowtitle=<name> " , _ ( " Sets a window title which is appended to \" Dash Core - \" " ) ) ;
2015-11-09 19:23:46 +01:00
QString coreOptions = QString : : fromStdString ( strUsage ) ;
2015-03-09 08:29:59 +01: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-06-11 21:44:47 +02:00
2014-12-29 00:25:18 +01:00
QTextCharFormat bold ;
bold . setFontWeight ( QFont : : Bold ) ;
2015-03-09 08:29:59 +01:00
2019-07-05 09:07:45 +02:00
for ( const QString & line : coreOptions . split ( " \n " ) ) {
2015-03-09 08:29:59 +01: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 08:29:59 +01: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
}
2015-01-10 14:48:55 +01:00
}
2014-12-29 00:25:18 +01:00
ui - > helpMessage - > moveCursor ( QTextCursor : : Start ) ;
ui - > scrollArea - > setVisible ( false ) ;
2016-11-20 07:54:33 +01:00
} else if ( helpMode = = pshelp ) {
setWindowTitle ( tr ( " PrivateSend information " ) ) ;
ui - > aboutMessage - > setTextFormat ( Qt : : RichText ) ;
ui - > scrollArea - > setVerticalScrollBarPolicy ( Qt : : ScrollBarAsNeeded ) ;
ui - > aboutMessage - > setText ( tr ( " \
< h3 > PrivateSend Basics < / h3 > \
PrivateSend gives you true financial privacy by obscuring the origins of your funds . \
All the Dash in your wallet is comprised of different \ " inputs \" which you can think of as separate, discrete coins.<br> \
PrivateSend uses an innovative process to mix your inputs with the inputs of two other people , without having your coins ever leave your wallet . \
2018-06-18 18:07:09 +02:00
You retain control of your money at all times . < hr > \
2016-11-20 07:54:33 +01:00
< b > The PrivateSend process works like this : < / b > \
< ol type = \ " 1 \" > \
< li > PrivateSend begins by breaking your transaction inputs down into standard denominations . \
2018-11-23 15:41:00 +01:00
These denominations are 0.001 DASH , 0.01 DASH , 0.1 DASH , 1 DASH and 10 DASH - - sort of like the paper money you use every day . < / li > \
2016-11-20 07:54:33 +01:00
< li > Your wallet then sends requests to specially configured software nodes on the network , called \ " masternodes. \" \
These masternodes are informed then that you are interested in mixing a certain denomination . \
No identifiable information is sent to the masternodes , so they never know \ " who \" you are.</li> \
< li > When two other people send similar messages , indicating that they wish to mix the same denomination , a mixing session begins . \
The masternode mixes up the inputs and instructs all three users ' wallets to pay the now - transformed input back to themselves . \
Your wallet pays that denomination directly to itself , but in a different address ( called a change address ) . < / li > \
< li > In order to fully obscure your funds , your wallet must repeat this process a number of times with each denomination . \
Each time the process is completed , it ' s called a \ " round. \" Each round of PrivateSend makes it exponentially more difficult to determine where your funds originated.</li> \
< li > This mixing process happens in the background without any intervention on your part . When you wish to make a transaction , \
2019-11-21 21:49:35 +01:00
your funds will already be mixed . No additional waiting is required . < / li > \
2016-11-20 07:54:33 +01:00
< / ol > < hr > \
< b > IMPORTANT : < / b > Your wallet only contains 1000 of these \ " change addresses. \" Every time a mixing event happens, up to 9 of your addresses are used up. \
This means those 1000 addresses last for about 100 mixing events . When 900 of them are used , your wallet must create more addresses . \
It can only do this , however , if you have automatic backups enabled . < br > \
Consequently , users who have backups disabled will also have PrivateSend disabled . < hr > \
2020-07-14 15:11:07 +02:00
For more information , see the < a style = \ " %1 \" href= \" https://docs.dash.org/en/stable/wallets/dashcore/privatesend-instantsend.html \" >PrivateSend documentation</a>. "
) . arg ( GUIUtil : : getThemedStyleQString ( GUIUtil : : ThemedStyle : : TS_COMMAND ) ) ) ;
2016-11-20 07:54:33 +01:00
ui - > aboutMessage - > setWordWrap ( true ) ;
ui - > helpMessage - > setVisible ( false ) ;
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 )
{
2019-11-21 16:02:43 +01:00
setObjectName ( " ShutdownWindow " ) ;
2020-07-19 18:29:55 +02:00
GUIUtil : : loadStyleSheet ( this ) ;
2019-11-21 16:02:43 +01:00
2014-09-22 10:08:47 +02:00
QVBoxLayout * layout = new QVBoxLayout ( ) ;
layout - > addWidget ( new QLabel (
2016-02-04 13:41:58 +01:00
tr ( " %1 is shutting down... " ) . arg ( tr ( PACKAGE_NAME ) ) + " <br /><br /> " +
2014-09-22 10:08:47 +02:00
tr ( " Do not shut down the computer until this window disappears. " ) ) ) ;
setLayout ( layout ) ;
}
2017-09-11 15:38:14 +02:00
QWidget * ShutdownWindow : : showShutdownWindow ( BitcoinGUI * window )
2014-01-16 16:05:44 +01:00
{
if ( ! window )
2017-09-11 15:38:14 +02:00
return nullptr ;
2014-01-16 16:05:44 +01:00
// Show a simple window indicating shutdown status
2014-09-22 10:08:47 +02:00
QWidget * shutdownWindow = new ShutdownWindow ( ) ;
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 ( ) ;
2017-09-11 15:38:14 +02:00
return shutdownWindow ;
2014-01-16 16:05:44 +01:00
}
2014-09-22 10:08:47 +02:00
void ShutdownWindow : : closeEvent ( QCloseEvent * event )
{
event - > ignore ( ) ;
}