2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_QT_RECEIVECOINSDIALOG_H
|
|
|
|
#define BITCOIN_QT_RECEIVECOINSDIALOG_H
|
2013-10-16 15:14:26 +02:00
|
|
|
|
2014-09-05 13:18:35 +02:00
|
|
|
#include "guiutil.h"
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
#include <QDialog>
|
2014-03-21 09:12:01 +01:00
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QItemSelection>
|
2014-01-26 06:37:17 +01:00
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QPoint>
|
2013-10-16 15:14:26 +02:00
|
|
|
#include <QVariant>
|
2014-03-21 09:12:01 +01:00
|
|
|
|
2014-09-05 13:18:35 +02:00
|
|
|
class OptionsModel;
|
2015-07-28 15:20:14 +02:00
|
|
|
class PlatformStyle;
|
2014-09-05 13:18:35 +02:00
|
|
|
class WalletModel;
|
2013-10-16 15:14:26 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ReceiveCoinsDialog;
|
|
|
|
}
|
2013-12-16 22:54:02 +01:00
|
|
|
|
2013-11-05 18:03:05 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QModelIndex;
|
|
|
|
QT_END_NAMESPACE
|
2013-10-16 15:14:26 +02:00
|
|
|
|
|
|
|
/** Dialog for requesting payment of bitcoins */
|
|
|
|
class ReceiveCoinsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-03-21 06:45:47 +01:00
|
|
|
enum ColumnWidths {
|
2014-03-21 09:12:01 +01:00
|
|
|
DATE_COLUMN_WIDTH = 130,
|
|
|
|
LABEL_COLUMN_WIDTH = 120,
|
2016-01-20 14:57:28 +01:00
|
|
|
AMOUNT_MINIMUM_COLUMN_WIDTH = 180,
|
2014-03-21 09:12:01 +01:00
|
|
|
MINIMUM_COLUMN_WIDTH = 130
|
2014-03-21 06:45:47 +01:00
|
|
|
};
|
|
|
|
|
2015-07-28 15:20:14 +02:00
|
|
|
explicit ReceiveCoinsDialog(const PlatformStyle *platformStyle, QWidget *parent = 0);
|
2013-10-16 15:14:26 +02:00
|
|
|
~ReceiveCoinsDialog();
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
void setModel(WalletModel *model);
|
2014-03-21 06:45:47 +01:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
public Q_SLOTS:
|
2013-10-16 15:14:26 +02:00
|
|
|
void clear();
|
|
|
|
void reject();
|
|
|
|
void accept();
|
|
|
|
|
2014-01-26 06:37:17 +01:00
|
|
|
protected:
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
private:
|
|
|
|
Ui::ReceiveCoinsDialog *ui;
|
2014-03-21 06:45:47 +01:00
|
|
|
GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer;
|
2013-10-16 15:14:26 +02:00
|
|
|
WalletModel *model;
|
2014-01-26 06:37:17 +01:00
|
|
|
QMenu *contextMenu;
|
2015-07-28 15:20:14 +02:00
|
|
|
const PlatformStyle *platformStyle;
|
|
|
|
|
2016-10-14 01:27:26 +02:00
|
|
|
QModelIndex selectedRow();
|
2014-01-26 06:37:17 +01:00
|
|
|
void copyColumnToClipboard(int column);
|
2014-05-06 12:52:21 +02:00
|
|
|
virtual void resizeEvent(QResizeEvent *event);
|
2013-10-16 15:14:26 +02:00
|
|
|
|
2015-07-14 13:59:05 +02:00
|
|
|
private Q_SLOTS:
|
2013-10-16 15:14:26 +02:00
|
|
|
void on_receiveButton_clicked();
|
2013-11-05 18:03:05 +01:00
|
|
|
void on_showRequestButton_clicked();
|
|
|
|
void on_removeRequestButton_clicked();
|
|
|
|
void on_recentRequestsView_doubleClicked(const QModelIndex &index);
|
2014-05-06 12:52:21 +02:00
|
|
|
void recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
2013-10-16 15:14:26 +02:00
|
|
|
void updateDisplayUnit();
|
2014-05-06 12:52:21 +02:00
|
|
|
void showMenu(const QPoint &point);
|
2016-10-14 01:27:26 +02:00
|
|
|
void copyURI();
|
2014-01-26 06:37:17 +01:00
|
|
|
void copyLabel();
|
|
|
|
void copyMessage();
|
|
|
|
void copyAmount();
|
2013-10-16 15:14:26 +02:00
|
|
|
};
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_QT_RECEIVECOINSDIALOG_H
|