aboutsummaryrefslogtreecommitdiff
path: root/src/qt/receivecoinsdialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [Qt] fix Qt slot problem in receivecoinsdialogPhilip Kaufmann2014-05-061-10/+9
| | | | | | | | - fixes error from debug.log: QMetaObject::connectSlotsByName: No matching signal for on_recentRequestsView_selectionChanged(QItemSelection,QItemSelection) - small style fixes (e.g. alphabetical ordering if includes etc.) - fixes #3992
* [Qt] fix style, formating, comment and indentation problemsPhilip Kaufmann2014-03-271-10/+8
| | | | - introduced by #3920
* [Qt] Fix enable/disable show and remove buttonsCozz Lovan2014-03-211-4/+5
|
* [QT] Fixes feel when resizing the last column on tables (issue #2862)gubatron2014-03-211-17/+24
| | | | | | | | | Re-submitting this pull request with a single commit. This patch introduces a GUIUtil class that is used when setting up the 2 tables we have so far on the Qt-GUI. In the past you could only resize the last column, which has BTC amounts from the right border of the column header, something that was rather unnatural. If a new table were ever to be added to the interface, fixing the last columns resizing behavior is rather simple. Just look at how we initialize here a TableViewLastColumnResizingFixer object when setting up the table header's behavior, and then how we override the resize event of the component (can be the table, or the dialog) and we invoke columnResizingFixer->stretchColumnWidth(columnIndex);
* qt: Enable and disable the Show and Remove buttons for requested payments ↵Haakon Nilsen2014-03-151-0/+15
| | | | | | history based on whether any entry is selected.
* 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] minor receive tab improvementsCozz Lovan2014-01-291-0/+78
|
* [Qt] Add sorting feature to the requested payments tableCozz Lovan2014-01-191-0/+2
|
* Merge pull request #3207Wladimir J. van der Laan2013-12-091-1/+54
|\ | | | | | | 666893b qt: keep a list of requested payments (Wladimir J. van der Laan)
| * qt: keep a list of requested paymentsWladimir J. van der Laan2013-11-191-1/+54
| | | | | | | | | | | | | | | | | | Keep a list of requested payments in the Receive tab so that a user can recall previously created requests after closing their windows. Currently this list is not stored between bitcoin-qt sessions. This can be implemented later, but it is not clear where it should be stored as I don't think it belongs in the wallet (maybe in QSettings?)
* | [Qt] small notificator and style changesPhilip Kaufmann2013-12-031-2/+2
|/ | | | | | - remove default arguments for notificator - re-order some calls to use same ordering in Qt files - style police changes (spaces, comments and such)
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* qt: show payment information in one text areaWladimir J. van der Laan2013-10-231-1/+2
| | | | | | Simplifies the dialog (makes it look less crowded) as well as the code and makes it possible to copy multiple fields at once. Also format bitcoin URI as URI, add copy button for URI.
* qt: use SendCoinsRecipient for payment request informationWladimir J. van der Laan2013-10-231-2/+3
| | | | | | This brings some symmetry into the design by using the same object both for incoming URIs that are parsed as for outgoing URIs that are formatted.
* qt: rework "receive coins" workflowWladimir J. van der Laan2013-10-231-0/+105