aboutsummaryrefslogtreecommitdiff
path: root/src/qt/splashscreen.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-1/+2
| | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* splashscreen: use TestNet() instead of unneeded string processingPhilip Kaufmann2013-10-221-3/+2
|
* update SelectParamsFromCommandLine() handling/orderPhilip Kaufmann2013-08-221-1/+2
| | | | | | | | | - move SelectParamsFromCommandLine() from init.cpp to bitcoin.cpp to allow to use TestNet() for Bitcoin-Qt instead of GetBoolArg("-testnet", false) - change order in bitcoind.cpp to match bitcoin.cpp functionality - hamonize error message strings for missing datadir and failing SelectParamsFromCommandLine() in bitcoin.cpp and bitcoind.cpp - use TestNet() call in splashscreen.cpp
* Remove #define loop from util.hGavin Andresen2013-07-311-1/+0
| | | | | Replace the loop macro with while (true). The #define caused problems for Qt.
* Bitcoin-Qt: fix QApplication includes to match our include defaultsPhilip Kaufmann2013-07-231-2/+2
| | | | | - move all QApplication includes to top of included Qt headers - undef our loop macro where it would cause compilation errors otherwise
* Merge pull request #2588 from Diapolo/GetBoolArgWladimir J. van der Laan2013-06-021-1/+1
|\ | | | | remove GetBoolArg() fDefault parameter defaulting to false
| * remove GetBoolArg() fDefault parameter defaulting to falsePhilip Kaufmann2013-06-011-1/+1
| | | | | | | | | | | | | | | | - explicitly set the default of all GetBoolArg() calls - rework getarg_test.cpp and util_tests.cpp to cover this change - some indentation fixes - move macdockiconhandler.h include in bitcoin.cpp to the "our headers" section
* | Qt5 compatibilityWladimir J. van der Laan2013-06-011-0/+1
|/ | | | | | | | | | | | This commit squashes all the changes in the Qt5 branch relative to master. Backward compatibility with Qt4 is retained. Original authors: - Philip Kaufmann <[email protected]> - Jonas Schnelli <[email protected]>
* new splash screenJonas Schnelli2013-04-171-0/+82
why: - the current splash-screen has no referring to official images on - https://en.bitcoin.it/wiki/Promotional_graphics - the current splash screen only exists in a low res jpg - current splash screen looks dark and "hackish" - new splash screen should generate positive, "trust-emotions". - new splash screen gives the user infos about the running client. - new splash screen can handle long messages (in a lot of - languages the text is cropped in current release) - new size (x2) 400x312 - contains textual information about the client - textinfos are dynamicly written to the pixmap when -testnet is switch on, the splashscreen will show the bitcoin logo in testnet-color (as well as a text [testnet]) example: https://dl.dropbox.com/u/7383846/new_bitcoin_splash.png