mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-18 02:07:41 +00:00
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
|
|
|
#ifndef FEATHER_SENDWIDGET_H
|
|
#define FEATHER_SENDWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "appcontext.h"
|
|
#include "widgets/CCSWidget.h"
|
|
|
|
namespace Ui {
|
|
class SendWidget;
|
|
}
|
|
|
|
class SendWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SendWidget(QSharedPointer<AppContext> ctx, QWidget *parent = nullptr);
|
|
void fill(const QString &address, const QString &description, double amount = 0);
|
|
void fill(double amount);
|
|
void clearFields();
|
|
void payToMany();
|
|
~SendWidget() override;
|
|
|
|
public slots:
|
|
void skinChanged();
|
|
void scanClicked();
|
|
void sendClicked();
|
|
void clearClicked();
|
|
void aliasClicked();
|
|
void btnMaxClicked();
|
|
void amountEdited(const QString &text);
|
|
void addressEdited();
|
|
void currencyComboChanged(int index);
|
|
void fillAddress(const QString &address);
|
|
void updateConversionLabel();
|
|
void onOpenAliasResolveError(const QString &err);
|
|
void onOpenAliasResolved(const QString &address, const QString &openAlias);
|
|
void onPreferredFiatCurrencyChanged();
|
|
|
|
void onInitiateTransaction();
|
|
void onEndTransaction();
|
|
|
|
private:
|
|
void setupComboBox();
|
|
double amountDouble();
|
|
|
|
QScopedPointer<Ui::SendWidget> ui;
|
|
QSharedPointer<AppContext> m_ctx;
|
|
quint64 amount();
|
|
double conversionAmount();
|
|
};
|
|
|
|
#endif // FEATHER_SENDWIDGET_H
|