103 lines
3.0 KiB
C++
103 lines
3.0 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2011-2015 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FLOWEE_QT_ADDRESSBOOKPAGE_H
|
|
#define FLOWEE_QT_ADDRESSBOOKPAGE_H
|
|
|
|
#include <QDialog>
|
|
|
|
class AddressTableModel;
|
|
class OptionsModel;
|
|
class PlatformStyle;
|
|
|
|
namespace Ui {
|
|
class AddressBookPage;
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QItemSelection;
|
|
class QMenu;
|
|
class QModelIndex;
|
|
class QSortFilterProxyModel;
|
|
class QTableView;
|
|
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(const PlatformStyle *platformStyle, Mode mode, Tabs tab, QWidget *parent);
|
|
~AddressBookPage();
|
|
|
|
void setModel(AddressTableModel *model);
|
|
const QString &getReturnValue() const { return returnValue; }
|
|
|
|
public Q_SLOTS:
|
|
void done(int retval);
|
|
|
|
private:
|
|
Ui::AddressBookPage *ui;
|
|
AddressTableModel *model;
|
|
Mode mode;
|
|
Tabs tab;
|
|
QString returnValue;
|
|
QSortFilterProxyModel *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();
|
|
/** 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
|