mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
31 lines
584 B
C++
31 lines
584 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_BALANCEDIALOG_H
|
|
#define FEATHER_BALANCEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "components.h"
|
|
#include "libwalletqt/Wallet.h"
|
|
|
|
namespace Ui {
|
|
class BalanceDialog;
|
|
}
|
|
|
|
class BalanceDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BalanceDialog(QWidget *parent, Wallet *wallet);
|
|
~BalanceDialog() override;
|
|
|
|
private:
|
|
void updateBalance();
|
|
|
|
QScopedPointer<Ui::BalanceDialog> ui;
|
|
Wallet *m_wallet;
|
|
};
|
|
|
|
#endif //FEATHER_BALANCEDIALOG_H
|