aboutsummaryrefslogtreecommitdiff
path: root/src/noui.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump copyright headers to 2014MarcoFalke2016-01-051-1/+1
|
* 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
|
* add missing header end commentsPhilip Kaufmann2014-08-281-1/+1
| | | | | | - ensures a consistent usage in header files - also add a blank line after the copyright header where missing - also remove orphan new-lines at the end of some files
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-0/+10
| | | | | | | | | 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.
* Move from noui.h / ui.h to one ui_interface.h with dummy implementation for ↵Wladimir J. van der Laan2012-04-041-76/+0
| | | | the daemon.
* qtui.h/noui.h interface cleanupWladimir J. van der Laan2012-04-041-9/+4
| | | | | | | - rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2
* support RPC stop and encryptwallet with UIWladimir J. van der Laan2012-04-041-0/+7
|
* move translation function _ to qtui.h/noui.h instead of util.hWladimir J. van der Laan2012-04-041-0/+5
|
* remove unused CalledSetStatusBar and UIThreadCall notificationsWladimir J. van der Laan2012-04-041-9/+0
|
* Update UI through async calls MainFrameRepaint and AddressBookRepaint ↵Wladimir J. van der Laan2012-04-041-0/+4
| | | | | | | | instead of a timer. - Overall, this is better design - This fixes problems with the address book UI not updating when the address book is changed through RPC - Move Statusbar change detection responsibility to ClientModel
* Update all copyrights to 2012Gavin Andresen2012-02-071-1/+1
|
* Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan2011-12-211-3/+1
| | | | This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
* Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr2011-12-201-1/+3
|
* assure that base bitcoind and bitcoin still buildWladimir J. van der Laan2011-09-181-0/+4
|
* Unify copyright notices.Matt Corallo2011-08-091-0/+1
| | | | | | To a variation on: // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers
* move wallet code to separate filePieter Wuille2011-06-151-0/+2
| | | | | | This introduces two new source files, keystore.cpp and wallet.cpp with corresponding headers. Code is moved from main and db, in a preparation for a follow-up commit which introduces the classes CWallet and CKeyStore.
* make bitcoin include files more modularWladimir J. van der Laan2011-05-151-4/+9
|
* directory re-organization (keeps the old build system)Jaromil2011-04-231-0/+62
there is no internal modification of any file in this commit files are moved into directories according to established standards in sourcecode distribution; these directories contain: src - Files that are used in constructing the executable binaries, but are not installed. doc - Files in HTML and text format that document usage, quirks of the implementation, and contributor checklists. locale - Files that contain human language translation of strings used in the program contrib - Files contributed from distributions or other third party implementing scripts and auxiliary programs