aboutsummaryrefslogtreecommitdiff
path: root/src/qt/receivecoinsdialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Increment MIT Licence copyright header year on files modified in 2016isle29832016-12-311-1/+1
| | | | | | Edited via: $ contrib/devtools/copyright_header.py update .
* qt: Plug many memory leaksWladimir J. van der Laan2016-11-231-2/+3
| | | | | | | | | None of these are very serious, and are leaks in objects that are created at most one time. In most cases this means properly using the QObject parent hierarchy, except for BanTablePriv/PeerTablePriv which are not QObject, so use a std::unique_ptr instead.
* Merge #8918: Qt: Add "Copy URI" to payment request context menuWladimir J. van der Laan2016-10-181-8/+31
|\ | | | | | | 21f5a63 Qt: Add "Copy URI" to payment request context menu (Luke Dashjr)
| * Qt: Add "Copy URI" to payment request context menuLuke Dashjr2016-10-131-8/+31
| |
* | Do not shadow in src/qtPavel Janík2016-09-231-13/+13
| |
* | [Qt] rename "amount" to "requested amount" in receive coins tableJonas Schnelli2016-01-201-0/+1
| |
* | Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|/
* qt: Introduce PlatformStyleWladimir J. van der Laan2015-07-311-15/+16
| | | | | | | | | | | | | | Introduce a PlatformStyle to handle platform-specific customization of the UI. This replaces 'scicon', as well as #ifdefs to determine whether to place icons on buttons. The selected PlatformStyle defaults to the platform that the application was compiled on, but can be overridden from the command line with `-uiplatform=<x>`. Also fixes the warning from #6328.
* qt: define QT_NO_KEYWORDSWladimir J. van der Laan2015-07-151-1/+1
| | | | | | | | QT_NO_KEYWORDS prevents Qt from defining the `foreach`, `signals`, `slots` and `emit` macros. Avoid overlap between Qt macros and boost - for example #undef hackiness in #6421.
* [Qt] constify foreach uses where possiblePhilip Kaufmann2015-07-071-2/+1
| | | | | - this doesn't replace BOOST_FOREACH, it just makes used arguments const where possible
* Adopt style colour for button iconsLuke Dashjr2014-12-271-0/+6
|
* 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
|
* [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