aboutsummaryrefslogtreecommitdiff
path: root/src/qt/utilitydialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* s/DOGE/DIS/gTomo Ueda2021-09-021-1/+1
|
* really s/doge/dis/g this timeTomo Ueda2021-09-021-1/+1
|
* qt: translate more user-exposed stringschromatic2021-08-141-2/+2
|
* [bugfix] fix text overflow on paper walletPatrick Lodder2021-03-201-2/+2
| | | | | | | | - use Courier instead of "monospace" as font family as the latter does not translate to an actual monospace font properly - make address and privkey fields to have equal dimensions and margins, because their fontsizes are calculated uniformly too - make the max font size 98% of the wallet, instead of 99%
* Re-add paperwallet printer (#1467)Max K2019-03-251-0/+329
| | | | | | | | | | | | | | * Add paper wallet generator to QT wallet * Replace print icon with Typeicons equivalent * Re-add printer support to Qt * depends: fix fontconfig with newer glibc See comment for more detail * Set fixed size for paper wallet dialog
* Rename binaries to match DogecoinRoss Nicoll2019-03-251-1/+1
|
* [trivial] Fix typos in commentspracticalswift2017-01-271-1/+1
|
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* qt: Avoid shutdownwindow-related memory leakWladimir J. van der Laan2016-11-231-5/+3
| | | | | Store a reference to the shutdown window on BitcoinApplication, so that it will be deleted when exiting the main loop.
* Merge branch 'master' into single_prodnameLuke Dashjr2016-02-031-2/+20
|\
| * Merge pull request #7205Wladimir J. van der Laan2016-01-051-1/+1
| |\ | | | | | | | | | | | | | | | fa71669 [devtools] Use git pretty-format for year parsing (MarcoFalke) fa24439 Bump copyright headers to 2015 (MarcoFalke) fa6ad85 [devtools] Rewrite fix-copyright-headers.py (MarcoFalke)
| | * Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
| | |
| * | [qt] Fix misleading translationMarcoFalke2015-12-161-1/+1
| |/
| * [qt] Use tr() instead of _()MarcoFalke2015-12-021-7/+7
| | | | | | | | Also, `make translate`
| * Bugfix: Default -uiplatform is not actually the platform this build was ↵Luke Dashjr2015-11-281-1/+1
| | | | | | | | compiled on
| * [qt] Move GUI related HelpMessage() part downstreamMarcoFalke2015-11-281-1/+19
| |
* | When/if the copyright line does not mention Bitcoin Core developers, add a ↵Luke Dashjr2016-02-031-1/+1
| | | | | | | | second line to copyrights in -version, About dialog, and splash screen
* | Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-3/+7
|/
* qt: define QT_NO_KEYWORDSWladimir J. van der Laan2015-07-151-1/+1
| | | | | | | | QT_NO_KEYWORDS prevents Qt from defining the `foreach`, `signals`, `slots` and `emit` macros. Avoid overlap between Qt macros and boost - for example #undef hackiness in #6421.
* Fix - bitcoin-qt usage messageLuca Venturini2015-03-101-54/+24
| | | | | | | . Closes the bug from commit e179eb3d9bfec7e67908242c71c87b716a41c97c ("bitcoin-qt -help" did not show any message) . Move all the options in init.cpp (there were already some options related to bitcoin-qt)
* qt: Don't save geometry for options and about/help windowWladimir J. van der Laan2015-02-261-2/+0
| | | | | | | | | | | | These dialogs will be something that people occasionally open, not keep open during their session, so just popping it up in a sensible place is good enough. Remembering only creates potential issues, like spawning it outside the current screen area. On Ubuntu this causes the dialogs to be positioned in the middle of the main dialog, so I didn't add code for that. YMMV. Inspired by github pull #5777 by @L-Cranston-Shadow
* [Qt] add bitcoin logo to about screenJonas Schnelli2015-02-041-0/+1
|
* Merge pull request #5632Wladimir J. van der Laan2015-01-161-2/+2
|\ | | | | | | 98c222b [Qt] optimize helpmessage dialog (Jonas Schnelli)
| * [Qt] optimize helpmessage dialogJonas Schnelli2015-01-091-2/+2
| | | | | | | | | | | | | | - enlarge standard size - remove fixed 10px font - remove left mood image - ensure that table has no ugly line-breaks on OSX, Linux
* | [Qt] add option to allow self signed root certs (for testing)Philip Kaufmann2015-01-111-0/+7
|/ | | | | | | - it is helpful to be able to test and verify payment request processing by allowing self signed root certificates (e.g. generated by Gavins "certificate authority in a box") - This option is just shown in the UI options, if -help-debug is enabled.
* Make the command-line-args dialog betterThomas Zander2015-01-051-16/+72
| | | | | | Instead of using a fixed-width font in a label, which virtually guarentees a horizontal scrollbar, use a proper text-document that can re-layout based on user input.
* Added "Core" to copyright headerssandakersmann2014-12-191-1/+1
| | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
* Remove references to X11 licenceMichael Ford2014-12-161-1/+1
|
* Separate protocol versioning from clientversionCory Fields2014-10-291-1/+1
|
* qt: Make splash and shutdown window ignore close eventsWladimir J. van der Laan2014-09-221-6/+20
| | | | | | | | It's strange to be able to close these windows while there is work in progress. Also set Qt::WA_DeleteOnClose on both windows to make sure that they are deleted eventually, no matter what happens.
* Split up util.cpp/hWladimir J. van der Laan2014-08-261-1/+2
| | | | | | | | | | | | | | | | 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.
* Move `*Version()` functions to version.h/cppWladimir J. van der Laan2014-08-261-1/+1
|
* set shutdown title to main window titlePhilip Kaufmann2014-06-271-0/+1
| | | | | | - this ensures we don't show Bitcoin-Qt as that is still our internal application name - fixes #4427
* qt: Unify AboutDialog and HelpMessageDialogWladimir J. van der Laan2014-06-121-64/+45
| | | | | They share so much code and functionality that they may as well be one class.
* Add 'about' information to `-version` outputWladimir J. van der Laan2014-06-121-6/+14
| | | | | | | Adds a copyright and attribution message to the `-version` output (the same as shown in the About dialog in the GUI). Move the message to a function LicenseInfo in init.cpp.
* Add `-version` option to get just the versionWladimir J. van der Laan2014-06-111-9/+10
| | | | | | | | | Adds a `-version` or `--version` option to print just the version of the program for bitcoind, bitcoin-cli and bitcoin-qt. Also make it that `-help` can be used to display the help (as well as existing `--help`). Up to now, `-help` was the only option that didn't work with either one or two dashes.
* Merge pull request #3922Wladimir J. van der Laan2014-03-291-2/+2
|\ | | | | | | c17f0a5 [Qt] remove space from translation of client bitness (Philip Kaufmann)
| * [Qt] remove space from translation of client bitnessPhilip Kaufmann2014-03-211-2/+2
| | | | | | | | | | - its rather easy to leave out the space on Transifex, so remove it from the string
* | improve command-line options outputCozz Lovan2014-03-251-4/+5
|/
* [Qt] allow translation of client bitnessPhilip Kaufmann2014-02-161-2/+2
|
* qt: Add closing newline to help messageWladimir J. van der Laan2014-01-291-1/+1
| | | | `bitcoin-qt --help` was missing a final newline.
* gitian: Windows 64 bit supportWladimir J. van der Laan2014-01-211-1/+10
| | | | | | - Build a 64 bit version of all dependencies - Show 32/64 bit version in "About..." for x86 - Export 64-bit .exes and installer from gitian build
* [Qt] add utilitydialog.cpp/h and helpmessage classPhilip Kaufmann2014-01-181-0/+125
- adds a nice and well formated dialog, which displays our -? help message (all options/paramaters) - moves aboutdialog.cpp/h to the new utilitydialog - move GUI shutdown window to utilitydialog