aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoin.cpp
AgeCommit message (Collapse)Author
2012-04-06Bugfix: Replace "URL" with "URI" where we aren't actually working with URLsLuke Dashjr
2012-04-04qtui.h/noui.h interface cleanupWladimir J. van der Laan
- 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
2012-04-04support RPC stop and encryptwallet with UIWladimir J. van der Laan
2012-04-04remove unused CalledSetStatusBar and UIThreadCall notificationsWladimir J. van der Laan
2012-04-04Update UI through async calls MainFrameRepaint and AddressBookRepaint ↵Wladimir J. van der Laan
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
2012-04-04Code deduplication: make function in GUIUtil to get connection type to call ↵Wladimir J. van der Laan
object slot in GUI thread with invokeMethod.
2012-04-04move QT_PLUGINS stuff to qt main file, where it belongsWladimir J. van der Laan
2012-04-03VC2010 compile fixesWladimir J. van der Laan
2012-03-26Disable bitcoin: URI handling on Windows for the 0.6 releaseGavin Andresen
2012-03-21Correct dateMichael
2012-02-26Reworked QT settingsGavin Andresen
2012-02-24Add option "-splash" so we can disable the splash screen.Chris Moore
Don't show splash screen when -min is specified on the command line.
2012-02-20Merge pull request #857 from laanwj/2012_02_fixhelpwindowWladimir J. van der Laan
On windows, show message box with help, as there is no stderr (fixes #702)
2012-02-17Allow setting UI language from commandline (implements #678)Wladimir J. van der Laan
2012-02-17On windows, show message box with help, as there is no stderr (fixes #702)Wladimir J. van der Laan
2012-02-10Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start.Matt Corallo
2012-02-07Update all copyrights to 2012Gavin Andresen
2012-01-05Add support for opening bitcoin: URIs directly.Matt Corallo
2011-12-23Comments updateWladimir J. van der Laan
2011-12-21Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
2011-12-20Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr
2011-12-19Merge pull request #690 from runeksvendsen/qt-cmdline-options-parsingGavin Andresen
When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main()
2011-12-13Fix status bar not displaying Alerts.Matt Corallo
2011-12-09When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main()Rune K Svendsen
2011-12-04Implement -min option to start minimizedWladimir J. van der Laan
2011-11-03Merge git://github.com/p2k/bitcoin-qtGavin Andresen
2011-11-02Mac Deployment Scriptp2k
See notes.txt in contrib/macdeploy. Also added a dash to the application name in src/qt/bitcoin.cpp
2011-10-23Translation lookup logic improvementsWladimir J. van der Laan
- use wildcard for TRANSLATIONS in bitcoin-qt.pro to automatically build all translations present in src/qt/locale (thanks @tcatm) - first load translations/<language>.qm, then translations/<language>_<TERRITORY>.qm, so that territory-specific translations take precedence, but the fallback is on the base language if no territory-specific translation exists.
2011-10-09Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k
Now it can't be told if this is was a Windows App before. All Mac design principles are fulfilled and some cosmetics have been applied to suit the native look and feel. The biggest change there is the proper use of the Dock icon which takes the role of the Tray icon on Mac. The QDoubleSpinBox improves entering of Bitcoin amounts, no two separate fields are required anymore. All functionality and validation effects have been retained; pressing the comma key will be internally translated to a period to keep it consistent throughout the application and eases entering in countries which use the comma as decimal separator. Additionally, Notificator now supports Growl, Mac's native notification system. This is provided via Apple Script in order to avoid linking to Growl on compile time. Other changes involve encapsulation of Toolbar and Menubar creation, loading of Qt's own translation and some clean up.
2011-10-01only install translator when not emptyWladimir J. van der Laan
2011-09-27translation handling improvementsWladimir J. van der Laan
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation
2011-09-07Pull request #21: windows fixes/cleanup by MatokingJanne Pulkkinen
2011-08-28add russian translation and add unicode compatibility (merges pull request #20)Misbakh-Soloviev Vadim A
2011-08-16fix issue #13Wladimir J. van der Laan
2011-08-08QtUI code cleanup / comment improvementsWladimir J. van der Laan
2011-08-07don't include <QDebug>Wladimir J. van der Laan
2011-08-02update readme and splash screen textWladimir J. van der Laan
2011-08-02add splash screenWladimir J. van der Laan
2011-07-29Full support for other units, add configuration option for default unit ↵Wladimir J. van der Laan
(used when displaying amounts)
2011-07-09wxp/mingw build fixesWladimir J. van der Laan
2011-07-09add better windows7/vista look by nico_wWladimir J. van der Laan
2011-07-03windows build fixesWladimir J. van der Laan
2011-06-30Split off WalletModel from ClientModel, to be able to support multi-wallets ↵Wladimir J. van der Laan
in future
2011-06-26update core to d0d80170a2ca73004e08fb85007fe055cbf4e411 (CWallet class)Wladimir J. van der Laan
2011-06-23experiment with internationalization (nl), unbreak build (externui.h->qtui.h)Wladimir J. van der Laan
2011-06-18Use explicit resource initialization, apparently needed on some platformsWladimir J. van der Laan
2011-06-18remove commented code, use // for one-line comments and comments inside ↵Wladimir J. van der Laan
functions
2011-06-13Internationalization -- initial step, make _ return a std::string to prevent ↵Wladimir J. van der Laan
memory leaks
2011-06-11move back to original directory structureWladimir J. van der Laan