Files
thehub/hub-qt/sendcoinsdialog.h
T

118 lines
3.7 KiB
C++
Raw Permalink Normal View History

2017-11-09 19:34:51 +01:00
/*
* 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/>.
*/
2013-11-04 16:20:43 +01:00
2018-01-16 10:47:52 +00:00
#ifndef FLOWEE_QT_SENDCOINSDIALOG_H
#define FLOWEE_QT_SENDCOINSDIALOG_H
2011-05-08 22:23:31 +02:00
#include "walletmodel.h"
2011-05-08 22:23:31 +02:00
#include <QDialog>
2013-08-12 17:03:03 +02:00
#include <QString>
2011-05-08 22:23:31 +02:00
2014-11-02 00:14:47 +01:00
class ClientModel;
2013-04-13 00:13:08 -05:00
class OptionsModel;
2015-07-28 15:20:14 +02:00
class PlatformStyle;
2011-07-16 19:01:05 +02:00
class SendCoinsEntry;
2011-08-07 16:04:48 +02:00
class SendCoinsRecipient;
2013-04-13 00:13:08 -05:00
namespace Ui {
class SendCoinsDialog;
}
2014-09-05 13:18:35 +02:00
QT_BEGIN_NAMESPACE
class QUrl;
QT_END_NAMESPACE
const int defaultConfirmTarget = 25;
2011-11-13 13:19:52 +01:00
/** Dialog for sending bitcoins */
2011-05-08 22:23:31 +02:00
class SendCoinsDialog : public QDialog
{
Q_OBJECT
2011-05-12 14:44:52 +02:00
2011-05-08 22:23:31 +02:00
public:
2015-07-28 15:20:14 +02:00
explicit SendCoinsDialog(const PlatformStyle *platformStyle, QWidget *parent = 0);
2011-05-12 14:44:52 +02:00
~SendCoinsDialog();
2011-05-08 22:23:31 +02:00
2014-11-02 00:14:47 +01:00
void setClientModel(ClientModel *clientModel);
void setModel(WalletModel *model);
2011-05-30 20:20:12 +02:00
2012-09-22 13:32:28 +08:00
/** Set up the tab chain manually, as Qt messes up the tab chain by default in some cases (issue https://bugreports.qt-project.org/browse/QTBUG-10907).
2011-11-13 13:19:52 +01:00
*/
2011-07-16 19:01:05 +02:00
QWidget *setupTabChain(QWidget *prev);
void setAddress(const QString &address);
2011-08-07 16:04:48 +02:00
void pasteEntry(const SendCoinsRecipient &rv);
bool handlePaymentRequest(const SendCoinsRecipient &recipient);
2011-08-07 16:04:48 +02:00
2015-07-14 13:59:05 +02:00
public Q_SLOTS:
2011-07-07 17:33:15 +02:00
void clear();
void reject();
void accept();
2011-08-07 16:04:48 +02:00
SendCoinsEntry *addEntry();
void updateTabsAndLabels();
2014-04-22 15:46:19 -07:00
void setBalance(const CAmount& balance, const CAmount& unconfirmedBalance, const CAmount& immatureBalance,
const CAmount& watchOnlyBalance, const CAmount& watchUnconfBalance, const CAmount& watchImmatureBalance);
2011-07-07 17:33:15 +02:00
2011-05-12 14:44:52 +02:00
private:
Ui::SendCoinsDialog *ui;
2014-11-02 00:14:47 +01:00
ClientModel *clientModel;
WalletModel *model;
bool fNewRecipientAllowed;
2014-11-02 00:14:47 +01:00
bool fFeeMinimized;
2015-07-28 15:20:14 +02:00
const PlatformStyle *platformStyle;
2011-05-12 17:55:24 +02:00
// Process WalletModel::SendCoinsReturn and generate a pair consisting
2015-07-14 13:59:05 +02:00
// of a message and message flags for use in Q_EMIT message().
// Additional parameter msgArg can be used via .arg(msgArg).
void processSendCoinsReturn(const WalletModel::SendCoinsReturn &sendCoinsReturn, const QString &msgArg = QString());
2014-11-02 00:14:47 +01:00
void minimizeFeeSection(bool fMinimize);
void updateFeeMinimizedLabel();
2015-07-14 13:59:05 +02:00
private Q_SLOTS:
2011-05-12 17:55:24 +02:00
void on_sendButton_clicked();
2014-11-02 00:14:47 +01:00
void on_buttonChooseFee_clicked();
void on_buttonMinimizeFee_clicked();
2011-07-16 19:01:05 +02:00
void removeEntry(SendCoinsEntry* entry);
void updateDisplayUnit();
2013-08-12 17:03:03 +02:00
void coinControlFeatureChanged(bool);
void coinControlButtonClicked();
void coinControlChangeChecked(int);
void coinControlChangeEdited(const QString &);
void coinControlUpdateLabels();
void coinControlClipboardQuantity();
void coinControlClipboardAmount();
void coinControlClipboardFee();
void coinControlClipboardAfterFee();
void coinControlClipboardBytes();
void coinControlClipboardPriority();
void coinControlClipboardLowOutput();
void coinControlClipboardChange();
2014-11-02 00:14:47 +01:00
void setMinimumFee();
void updateFeeSectionControls();
void updateMinFeeLabel();
void updateSmartFeeLabel();
void updateGlobalFeeVariables();
2015-07-14 13:59:05 +02:00
Q_SIGNALS:
// Fired when a message should be reported to the user
void message(const QString &title, const QString &message, unsigned int style);
2011-05-08 22:23:31 +02:00
};
2018-01-16 10:47:52 +00:00
#endif