diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-04-18 15:21:57 +0300 |
---|---|---|
committer | Jarol Rodriguez <jarolrod@tutanota.com> | 2021-05-17 14:01:00 -0400 |
commit | a2e122f0fe72d695762db2b83905e246f451300c (patch) | |
tree | fdd3597de977b512ae070a1c61a8160ec6d8e9c3 /src/qt/guiutil.h | |
parent | 4ee9ee72363d46c5ba0c71b8d8283d9c5621e3ed (diff) |
qt: Add GUIUtil::AddButtonShortcut
Co-authored-by: Jarol Rodriguez <jarolrod@tutanota.com>
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r-- | src/qt/guiutil.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 6395ec6abd..972d6348fc 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -31,10 +31,12 @@ namespace interfaces } QT_BEGIN_NAMESPACE +class QAbstractButton; class QAbstractItemView; class QAction; class QDateTime; class QFont; +class QKeySequence; class QLineEdit; class QMenu; class QPoint; @@ -60,6 +62,14 @@ namespace GUIUtil // Set up widget for address void setupAddressWidget(QValidatedLineEdit *widget, QWidget *parent); + /** + * Connects an additional shortcut to a QAbstractButton. Works around the + * one shortcut limitation of the button's shortcut property. + * @param[in] button QAbstractButton to assign shortcut to + * @param[in] shortcut QKeySequence to use as shortcut + */ + void AddButtonShortcut(QAbstractButton* button, const QKeySequence& shortcut); + // Parse "bitcoin:" URI into recipient object, return true on successful parsing bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out); bool parseBitcoinURI(QString uri, SendCoinsRecipient *out); |