aboutsummaryrefslogtreecommitdiff
path: root/src/qt/splashscreen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2018DrahtBot2018-07-271-1/+1
|
* Drop unused init.h includesBen Woosley2018-06-251-1/+0
| | | | | | These were entirely unused, as based on successful compilation and a grep for: \bStartShutdown\(\)|\bShutdownRequested\(\)|\bInterrupt\(\)|\bShutdown\(\)|\bInitLogging\(\)|\bInitParameterInteraction\(\)|\bAppInitBasicSetup\(\)|\bAppInitParameterInteraction\(\)|\bAppInitSanityChecks\(\)|\bAppInitLockDataDirectory\(\)|\bAppInitMain\(\)|\bSetupServerArgs\(\)|\bLicenseInfo\(\)|g_wallet_init_interface|init.h
* scripted-diff: Avoid `interface` keyword to fix windows gitian buildRussell Yanofsky2018-04-071-6/+6
| | | | | | | | | | | | | | | | | | Rename `interface` to `interfaces` Build failure reported by Chun Kuan Lee <[email protected]> https://github.com/bitcoin/bitcoin/pull/10244#issuecomment-379434756 -BEGIN VERIFY SCRIPT- git mv src/interface src/interfaces ren() { git grep -l "$1" | xargs sed -i "s,$1,$2,g"; } ren interface/ interfaces/ ren interface:: interfaces:: ren BITCOIN_INTERFACE_ BITCOIN_INTERFACES_ ren "namespace interface" "namespace interfaces" -END VERIFY SCRIPT-
* Remove direct bitcoin calls from qt/splashscreen.cppRussell Yanofsky2018-04-041-21/+19
|
* Fix typosDimitris Apostolou2018-03-211-1/+1
|
* Merge #10498: Use static_cast instead of C-style casts for non-fundamental typesMarcoFalke2018-02-071-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9ad6746ccd Use static_cast instead of C-style casts for non-fundamental types (practicalswift) Pull request description: A C-style cast is equivalent to try casting in the following order: 1. `const_cast(...)` 2. `static_cast(...)` 3. `const_cast(static_cast(...))` 4. `reinterpret_cast(...)` 5. `const_cast(reinterpret_cast(...))` By using `static_cast<T>(...)` explicitly we avoid the possibility of an unintentional and dangerous `reinterpret_cast`. Furthermore `static_cast<T>(...)` allows for easier grepping of casts. For a more thorough discussion, see ["ES.49: If you must use a cast, use a named cast"](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#es49-if-you-must-use-a-cast-use-a-named-cast) in the C++ Core Guidelines (Stroustrup & Sutter). Tree-SHA512: bd6349b7ea157da93a47b8cf238932af5dff84731374ccfd69b9f732fabdad1f9b1cdfca67497040f14eaa85346391404f4c0495e22c467f26ca883cd2de4d3c
| * Use static_cast instead of C-style casts for non-fundamental typespracticalswift2017-09-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | A C-style cast is equivalent to try casting in the following order: 1. const_cast(...) 2. static_cast(...) 3. const_cast(static_cast(...)) 4. reinterpret_cast(...) 5. const_cast(reinterpret_cast(...)) By using static_cast<T>(...) explicitly we avoid the possibility of an unintentional and dangerous reinterpret_cast. Furthermore static_cast<T>(...) allows for easier grepping of casts.
* | Increment MIT Licence copyright header year on files modified in 2017Akira Takizawa2018-01-031-1/+1
| |
* | scripted-diff: Replace #include "" with #include <> (ryanofsky)MeshCollider2017-11-161-9/+9
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT-
* Drop upgrade-cancel callback registration for a generic "resumeable"Matt Corallo2017-08-201-21/+11
| | | | | | | Instead of passing a StartShutdown reference all the way up from txdb, give ShowProgress a "resumeable" boolean, which is used to inform the user if the action will be resumed, but cancel is always allowed by just calling StartShutdown().
* [Qt] allow to execute a callback during splashscreen progressJonas Schnelli2017-06-291-0/+24
|
* scripted-diff: Remove Q_FOREACHJorge Timón2017-06-051-1/+1
| | | | | | -BEGIN VERIFY SCRIPT- sed -i 's/Q_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ; -END VERIFY SCRIPT-
* 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 splash-screen related memory leakWladimir J. van der Laan2016-11-231-0/+1
| | | | | | Make splash screen queue its own deletion when it receives the finished command, instead of relying on WA_DeleteOnClose which doesn't work under these circumstances.
* Merge #8774: Qt refactors to better abstract wallet accessJonas Schnelli2016-10-191-5/+7
|\ | | | | | | | | 178cd88 Qt/splash: Specifically keep track of which wallet(s) we are connected to for later disconnecting (Luke Dashjr) 1880aeb Qt: Get the private key for signing messages via WalletModel (Luke Dashjr)
| * Qt/splash: Specifically keep track of which wallet(s) we are connected to ↵Luke Dashjr2016-10-041-5/+7
| | | | | | | | for later disconnecting
* | [Qt] fix a bug where the SplashScreen will not be hidden during startupJonas Schnelli2016-06-211-0/+5
| |
* | Merge branch 'master' into single_prodnameLuke Dashjr2016-02-031-1/+1
|\ \
| * | Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
| |/
* | When/if the copyright line does not mention Bitcoin Core developers, add a ↵Luke Dashjr2016-02-031-3/+8
| | | | | | | | second line to copyrights in -version, About dialog, and splash screen
* | splashscreen: Resize text to fit exactlyLuke Dashjr2016-01-271-4/+3
| |
* | Set copyright holders displayed in notices separately from the package nameLuke Dashjr2015-12-221-1/+1
| | | | | | | | This helps avoid accidental removal of upstream copyright names
* | Parameterise 2009 in translatable copyright stringsLuke Dashjr2015-12-181-1/+1
| |
* | Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-2/+6
|/
* typofixes (found by misspell_fixer)Veres Lajos2015-08-101-1/+1
|
* [Qt] header group cleanupPhilip Kaufmann2015-04-201-2/+3
| | | | | - seperate core from GUI headers where this was missing - remove an unneeded new-line
* [Move Only] Move wallet related things to src/wallet/Jonas Schnelli2015-03-121-1/+1
| | | | could once be renamed from /src/wallet to /src/legacywallet.
* qt: avoid hard-coding font namesCory Fields2015-01-171-1/+1
| | | | They may not contain all necessary characters for a language
* Added "Core" to copyright headerssandakersmann2014-12-191-1/+1
| | | | | Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
* Merge pull request #5470Wladimir J. van der Laan2014-12-191-1/+1
|\ | | | | | | 78253fc Remove references to X11 licence (Michael Ford)
| * Remove references to X11 licenceMichael Ford2014-12-161-1/+1
| |
* | Qt: Go back to using QIcon functionality for scalingWladimir J. van der Laan2014-12-161-2/+1
| |
* | Qt: HiDPI (retina) support for splash screenJonas Schnelli2014-12-161-7/+34
|/ | | | | | | - remove splash screen images (reduce binary size) - dynamicly draw splash screen with available icon. - remove testnet icon - dynamicly colorize testnet icon
* Merge pull request #4802Wladimir J. van der Laan2014-10-101-16/+9
|\ | | | | | | | | | | | | 6fd546d Remove CChainParams::NetworkID() (jtimon) cc97210 Add fTestnetToBeDeprecatedFieldRPC to CChainParams (jtimon) e11712d Move checkpoint data selection to chainparams (jtimon) 6de50c3 qt: add network-specific style object (Wladimir J. van der Laan)
| * qt: add network-specific style objectWladimir J. van der Laan2014-10-101-16/+9
| | | | | | | | | | | | | | | | Mainly cleanups: Gets rid of isTestNet everywhere, by keeping track of network-specific theming in a central place. Also makes GUI no longer dependent on the network ID enumeration, which alleviates concerns about #4802.
* | Qt: allow "emergency" shutdown during startupPhilip Kaufmann2014-10-021-0/+1
|/ | | | - allows closing our splash screen to abort startup
* [Qt] minor changes in splashscreen.cppPhilip Kaufmann2014-09-231-3/+1
| | | | | - guard an unused variable with Q_UNUSED() macro - remove a commented out line of code
* Merge pull request #4852Wladimir J. van der Laan2014-09-221-1/+2
|\ | | | | | | 5e83bc4 [Qt] include and file header cleanup (Philip Kaufmann)
| * [Qt] include and file header cleanupPhilip Kaufmann2014-09-181-1/+2
| | | | | | | | | | - alphabetical ordering - correct ordering own headers before normal headers etc.
* | qt: Make splash and shutdown window ignore close eventsWladimir J. van der Laan2014-09-221-2/+7
| | | | | | | | | | | | | | | | 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.
* | qt: Change splash screen to normal windowWladimir J. van der Laan2014-09-181-13/+42
|/ | | | | Makes it possible to move, minimize, unminimize the window while Bitcoin Core is initializing.
* qt/splashscreen: #include version.hJeff Garzik2014-08-271-0/+1
| | | | | | Needed to build breakage reported by Arnavion on IRC: qt/splashscreen.cpp: In constructor 'SplashScreen::SplashScreen(const QPixmap&, Qt::WindowFlags, bool)': qt/splashscreen.cpp:33:98: error: 'FormatFullVersion' was not declared in this scope
* VerifyDB progressCozz Lovan2014-06-031-0/+2
|
* [Qt] rescan progressCozz Lovan2014-04-021-0/+23
|
* Copyright header updates s/2013/2014 on files whose last git commit was done ↵gubatron2014-02-091-1/+1
| | | | | | in 2014. contrib/devtools/fix-copyright-headers.py script to be able to perform this maintenance task with ease during the rest of the year, every year. Modifications to contrib/devtools/README.md to document what fix-copyright-headers.py does.
* [Qt] very minor style cleanupsPhilip Kaufmann2014-01-221-1/+1
| | | | | | - rebuilt some ui file layout to remove unreal values from the files - remove an unneeded attribute from an ui file - add / remove some spaces in files
* qt: Remove global references in bitcoin.cppWladimir J. van der Laan2014-01-111-0/+34
| | | | | | Remove the need for global references `guiref` and `splashref` by making the BitcoinGUI and SplashScreen classes register for the UI interface signals themselves.
* qt: Move initialization/shutdown to a threadWladimir J. van der Laan2014-01-111-0/+2
| | | | | | | | Move AppInit2 and Shutdown to a thread. This allows a more responsive splash screen, prevents 'process does not respond' messages from the window system and will allow for showing a user friendly window while shutting down.
* qt: Treat regtest as testnetWladimir J. van der Laan2013-12-201-4/+3
| | | | | No need to do anything special in the GUI for regtest mode, but do treat it at testnet not mainnet to prevent confusion.
* Rebrand to `Bitcoin Core`Wladimir J. van der Laan2013-12-131-2/+2
| | | | | | | | | | | | Only messages for now, executable names and other file names can be changed later if necessary and safe. Do not do an all-sweeping change. Some occurences of Bitcoin-Qt need to be kept: - Applicationname: this is used to determine the registry entry names, we don't want to lose settings over a silly name change. - Where it refers to the executable name instead of the product name.