mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
f239861eba
3a0e76fc12b91b2846d756981e15f09b767a9c37 Replace remaining 0 with nullptr in Qt code (Ben Woosley) 9096276e0b2d5b7e19af9a5f3c144ef108ee55e0 Don't use zero as null pointer constant (-Wzero-as-null-pointer-constant) (practicalswift) Pull request description: This corrects all violations of `-Wzero-as-null-pointer-constant` identified in the Qt codebase. These changes are extracted from #15112 as suggested by @MarcoFalke to ease review. This is in service of enabling `-Wzero-as-null-pointer-constant`, which should eliminate this as a concern going forward. Note there are 2 non-Qt changes: `src/test/allocator_tests.cpp` and `src/wallet/db.cpp`. Tree-SHA512: 206bd668802147ba42bc413c2d7d259cb59aca9ec1da74a6bf2ca3932e60ae492faacbc61bcee0fd6b4b49a4d59d075b7e5404f0526b36c47718f9b0587e7768
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_ADDRESSBOOKPAGE_H
|
|
#define BITCOIN_QT_ADDRESSBOOKPAGE_H
|
|
|
|
#include <QDialog>
|
|
|
|
class AddressBookSortFilterProxyModel;
|
|
class AddressTableModel;
|
|
|
|
namespace Ui {
|
|
class AddressBookPage;
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QItemSelection;
|
|
class QMenu;
|
|
class QModelIndex;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Widget that shows a list of sending or receiving addresses.
|
|
*/
|
|
class AddressBookPage : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Tabs {
|
|
SendingTab = 0,
|
|
ReceivingTab = 1
|
|
};
|
|
|
|
enum Mode {
|
|
ForSelection, /**< Open address book to pick address */
|
|
ForEditing /**< Open address book for editing */
|
|
};
|
|
|
|
explicit AddressBookPage(Mode mode, Tabs tab, QWidget* parent = nullptr);
|
|
~AddressBookPage();
|
|
|
|
void setModel(AddressTableModel *model);
|
|
const QString &getReturnValue() const { return returnValue; }
|
|
|
|
public Q_SLOTS:
|
|
void done(int retval) override;
|
|
|
|
private:
|
|
Ui::AddressBookPage *ui;
|
|
AddressTableModel *model;
|
|
Mode mode;
|
|
Tabs tab;
|
|
QString returnValue;
|
|
AddressBookSortFilterProxyModel *proxyModel;
|
|
QMenu *contextMenu;
|
|
QAction *deleteAction; // to be able to explicitly disable it
|
|
QString newAddressToSelect;
|
|
|
|
private Q_SLOTS:
|
|
/** Delete currently selected address entry */
|
|
void on_deleteAddress_clicked();
|
|
/** Create a new address for receiving coins and / or add a new address book entry */
|
|
void on_newAddress_clicked();
|
|
/** Copy address of currently selected address entry to clipboard */
|
|
void on_copyAddress_clicked();
|
|
/** Copy label of currently selected address entry to clipboard (no button) */
|
|
void onCopyLabelAction();
|
|
/** Edit currently selected address entry (no button) */
|
|
void onEditAction();
|
|
/** Show QR code for the currently selected address */
|
|
void on_showAddressQRCode_clicked();
|
|
/** Export button clicked */
|
|
void on_exportButton_clicked();
|
|
|
|
/** Set button states based on selected tab and selection */
|
|
void selectionChanged();
|
|
/** Spawn contextual menu (right mouse menu) for address book entry */
|
|
void contextualMenu(const QPoint &point);
|
|
/** New entry/entries were added to address table */
|
|
void selectNewAddress(const QModelIndex &parent, int begin, int /*end*/);
|
|
|
|
Q_SIGNALS:
|
|
void sendCoins(QString addr);
|
|
};
|
|
|
|
#endif // BITCOIN_QT_ADDRESSBOOKPAGE_H
|