2014-02-08 22:50:24 +01:00
|
|
|
// Copyright (c) 2011-2014 The Bitcoin developers
|
2013-11-04 16:20:43 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
#ifndef RECEIVECOINSDIALOG_H
|
|
|
|
#define RECEIVECOINSDIALOG_H
|
|
|
|
|
|
|
|
#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-03-21 06:45:47 +01:00
|
|
|
#include "guiutil.h"
|
2013-10-16 15:14:26 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ReceiveCoinsDialog;
|
|
|
|
}
|
|
|
|
class OptionsModel;
|
2014-05-06 12:52:21 +02:00
|
|
|
class WalletModel;
|
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,
|
|
|
|
AMOUNT_MINIMUM_COLUMN_WIDTH = 160,
|
|
|
|
MINIMUM_COLUMN_WIDTH = 130
|
2014-03-21 06:45:47 +01:00
|
|
|
};
|
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
explicit ReceiveCoinsDialog(QWidget *parent = 0);
|
|
|
|
~ReceiveCoinsDialog();
|
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
void setModel(WalletModel *model);
|
2014-03-21 06:45:47 +01:00
|
|
|
|
2013-10-16 15:14:26 +02:00
|
|
|
public slots:
|
|
|
|
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;
|
|
|
|
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
|
|
|
|
|
|
|
private slots:
|
|
|
|
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);
|
2014-01-26 06:37:17 +01:00
|
|
|
void copyLabel();
|
|
|
|
void copyMessage();
|
|
|
|
void copyAmount();
|
2013-10-16 15:14:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RECEIVECOINSDIALOG_H
|