aboutsummaryrefslogtreecommitdiff
path: root/src/qt
AgeCommit message (Collapse)Author
2012-07-24Fix spelling of successfullyStephane Glondu
2012-07-23Typofanquake
2012-07-23Fix Typofanquake
2012-07-22Replace all occurances of license.txt with COPYING, including naming the ↵Luke Dashjr
file COPYING.txt on Windows
2012-07-19re-size addressbookpage.ui to fix #1062Philip Kaufmann
2012-07-19Update a linkfanquake
2012-07-17Make sort and filters for transactions and labels case-insensitiveWladimir J. van der Laan
2012-07-17IPC-server hardening and updatePhilip Kaufmann
- add IMPLEMENT_RANDOMIZE_STACK for ipcThread() - log / print boost interprocess exceptions - use MAX_URI_LENGTH in guiconstants.h (also used in qrcodedialog.cpp) - remove unneeded includes and ipcShutdown() from qtipcserver.cpp - fix a small mem-leak by deleting mq before re-using it - make ipcThread() and ipcThread2() static functions - add some more comments
2012-07-16Merge pull request #1591 from Diapolo/lang_sel_Qt4.8Wladimir J. van der Laan
enhance lang-selection in OptionsDialog, when compiling with Qt >= 4.8
2012-07-17Give the GUI-IPC thread a name as wellGiel van Schijndel
Signed-off-by: Giel van Schijndel <me@mortis.eu>
2012-07-14Merge pull request #1592 from Diapolo/Qt_WindowTitleWladimir J. van der Laan
change Window title to "Bitcoin - Wallet" / misc related renames
2012-07-14Merge pull request #1587 from Diapolo/signverifymessagedialogWladimir J. van der Laan
fix a wrong string in signverifymessagedialog.ui
2012-07-14Merge pull request #1593 from Diapolo/testnet_icon_aboutWladimir J. van der Laan
when on testnet, set testnet icon for about dialog
2012-07-13Merge pull request #1575 from laanwj/2012_07_persistentbalancecheckWladimir J. van der Laan
(UI) Persistently poll for balance change when number of blocks changed
2012-07-13change Window title to "Bitcoin - Wallet" / misc related renamesPhilip Kaufmann
- this helps user to not think our Client is called "Bitcoin Wallet" - change "About Bitcoin-Qt" to "About Bitcoin" - change "Bitcoin debug window" to "Bitcoin - Debug window" - change "Client" in debug Window to "Bitcoin Core"
2012-07-13when on testnet, set testnet icon for about dialogPhilip Kaufmann
- add a comment
2012-07-13enhance lang-selection in OptionsDialog, when compiling with Qt >= 4.8Philip Kaufmann
2012-07-12optionsmodel cleanupPhilip Kaufmann
- cleanup optionsmodel before adding new proxy options - place SOCKS version stuff below proxy port (IP, Port, SOCKS version) - simplyfy some parts of the code (e.g. don't check IP and port, as this is done in optionsdialog anyway, remove unneeded {} in switch/case) - small cosmetic changes in the header for better readability
2012-07-12fix a wrong string in signverifymessagedialog.uiPhilip Kaufmann
2012-07-11fix some recently added translation pluralsPhilip Kaufmann
2012-07-11Translation strings updateWladimir J. van der Laan
2012-07-11Persistently poll for balance change when number of blocks changedWladimir J. van der Laan
Fixes #1452. Until we can make the logic water-tight *and* are notified in every case the balance might have changed, remove the premature optimization and simply recompute the balance every half a second when the number of blocks changed.
2012-07-10Merge pull request #1569 from Diapolo/addressbookpageWladimir J. van der Laan
replace some ugly code in addressbookpage.cpp
2012-07-09Fix Qt build on OSXGavin Andresen
Compiling boost::interprocess::message_queue against boost 1.50 macports with -arch i386 (how releases are built, for minimum download size and maximum compatibility) is failing: src/qt/qtipcserver.cpp:37: error: no matching function for call to ‘boost::interprocess::message_queue_t<boost::interprocess::offset_ptr<void, int, long unsigned int, 0u> >::timed_receive(char (*)[257], long unsigned int, size_t&, unsigned int&, boost::posix_time::ptime&)’ This is probably a boost or macports bug, but since interprocess::message_queue is only used for URI support, which isn't implemented on OSX anyway, I fixed the build by #ifdef'ing out that code.
2012-07-08replace some ugly code in addressbookpage.cppPhilip Kaufmann
- add signals signMessage() and verifyMessage() in addressbookpage.cpp - connect to them in bitcoingui.cpp to switch to the corresponding tab in the Sign/Verify Message dialog - make gotoSignMessageTab() and gotoVerifyMessageTab() private slots
2012-07-08Merge pull request #1464 from Diapolo/GUI_showSSLVersionWladimir J. van der Laan
GUI: show used OpenSSL library version in debug window
2012-07-07show used OpenSSL library version in debug windowPhilip Kaufmann
2012-07-07fix typo in optionsmodel.cppPhilip Kaufmann
2012-07-07Merge pull request #1469 from Diapolo/signverifymessagedialogWladimir J. van der Laan
GUI: merge sign/verify message into a single window with tabbed UI
2012-07-07Merge pull request #1518 from Diapolo/qrcodedialogWladimir J. van der Laan
update QRCodeDialog
2012-07-07Merge pull request #1552 from Diapolo/txdescWladimir J. van der Laan
GUI: enhance translation possibilities in TransactionDesc / misc other changes
2012-07-07Merge pull request #1559 from sje397/BalanceSignalFixWladimir J. van der Laan
Add a timer to check for changes in immature or unconfirmed balances,
2012-07-06update QRCodeDialogPhilip Kaufmann
- remove unused #include <QDebug> and lblBTC label - update Bitcoin input field to a BitcoinAmountField to allow Bitcoin unit selection - use BitcoinUnits::format for the resulting amount parameter in the generated URI (always use BTC as per BIP21) - move MAX_URI_LENGTH and EXPORT_IMAGE_SIZE to guiconstants.h - add OptionsModel in AddressBookPage and use it in on_showQRCode_clicked() to pass it to QRCodeDialog - add OptionsModel in QRCodeDialog to enable display unit updates - add updateDisplayUnit() slot to be able to imediately update currently set bitcoin unit - make all labels in the UI-file plain text - resize dialog to match for an updated layout (fields are now stacked and new field) - remove unused parameters from private slots - only enable save button, when QR Code was generated - show message when entered amound is invalid - add read-only QPlainTextEdit field to output generated URI
2012-07-06GUI: merge sign/verify message into a single window with tabbed UIPhilip Kaufmann
- add UI-feedback via QValidatedLineEdit - copy button for generated signature was moved to the signature output field - add an addressbook button to verify message tab - input fields are now evenly ordered for sign and verify tabs - update FIRST_CLASS_MESSAGING support to ensure a good UX - add a button and context menu entry in addressbook for verify message (to be consistent with sign message) - focus is now only set/changed, when clearing input fields or adding an address via addressbook - re-work / update some strings - ensure model gets initialized in the SignVerifyMessageDialog constructor - add checks for a valid model to both addressbook buttons - remove unneeded includes for Qt GUI elements that are listed in ui_signverifymessagedialog.h anyway
2012-07-05Merge branch 'uri' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2012-07-06Add a timer to check for changes in immature or unconfirmed balances,Scott Ellis
when these are non-zero. Fixed a minor mem leak.
2012-07-03enhance translation possibilities in TransactionDesc / misc other changesPhilip Kaufmann
- remove "#include <QString>" as this is included in the header - add some missing plural forms that can be translated - change "yours" into "own address", which is easier to understand and translate in that context - cleanup translatable strings to not include HTML or unneeded chars (e.g. ":") - resize TransactionDescDialog a little (remove unwanted line-breaks with non english translations)
2012-06-30Merge pull request #1540 from fanquake/masterJeff Garzik
Fix a Couple Typos
2012-06-30Fix a couple more typosfanquake
2012-06-30Fix a typo in TransactionDesccardpuncher
2012-06-30fix a typo in OptionsDialogPhilip Kaufmann
2012-06-28Merge branch 'patch-5' of https://github.com/xanatos/bitcoinGavin Andresen
2012-06-26GUI: change language selection formatPhilip Kaufmann
- display as "language - country (locale name)", when locale name consists of 2 parts - display as "language (locale name)", when locale name consists of 1 part
2012-06-23Changed a comment about a QVariant typexanatos
2012-06-20GUI: ensure a changed bitcoin unit immediately updates the tx list amountsPhilip Kaufmann
2012-06-17Merge pull request #1434 from Diapolo/GUI_fix_displayunitWladimir J. van der Laan
GUI: init with correct display unit and update it, when user changes it via options dialog
2012-06-17Merge pull request #1451 from Diapolo/sendcoinsWladimir J. van der Laan
GUI: set cursor for balance field to IBeamCursor (to show the user it IS selectable)
2012-06-17add the slot updateDisplayUnit() to overviewpage, sendcoinsdialog, ↵Philip Kaufmann
sendcoinsentry and connect it to displayUnitChanged() - this ensures all fields in the GUI, who use a display unit are imediately updated, when the user changes this setting in the optionsdialog / ensure used fields init with the current set display unit
2012-06-15Revert "Disable bitcoin: URI handling on Windows for the 0.6 release"Matt Corallo
This reverts commit 7b90edb5a6cada7176012d09d748847b5f966585.
2012-06-15Fix #956 the Boost 1.49 way.Matt Corallo