mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-24 19:45:50 +00:00
45 lines
996 B
C++
45 lines
996 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
|
|
|
#ifndef FEATHER_ACCOUNTSWITCHERDIALOG_H
|
|
#define FEATHER_ACCOUNTSWITCHERDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "libwalletqt/Wallet.h"
|
|
#include "components.h"
|
|
#include "model/SubaddressAccountModel.h"
|
|
|
|
namespace Ui {
|
|
class AccountSwitcherDialog;
|
|
}
|
|
|
|
class AccountSwitcherDialog : public WindowModalDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AccountSwitcherDialog(Wallet *wallet, QWidget *parent = nullptr);
|
|
~AccountSwitcherDialog() override;
|
|
|
|
void update();
|
|
|
|
private slots:
|
|
void showContextMenu(const QPoint& point);
|
|
void updateSelection();
|
|
|
|
private:
|
|
void switchAccount();
|
|
void copyLabel();
|
|
void copyBalance();
|
|
void editLabel();
|
|
|
|
AccountRow* currentEntry();
|
|
|
|
QScopedPointer<Ui::AccountSwitcherDialog> ui;
|
|
Wallet *m_wallet;
|
|
SubaddressAccountModel *m_model;
|
|
SubaddressAccountProxyModel *m_proxyModel;
|
|
};
|
|
|
|
#endif //FEATHER_ACCOUNTSWITCHERDIALOG_H
|