bitcoin/src/qt/walletcontroller.h

90 lines
2.2 KiB
C
Raw Normal View History

2019-01-04 15:49:26 -03:00
// Copyright (c) 2019 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_WALLETCONTROLLER_H
#define BITCOIN_QT_WALLETCONTROLLER_H
#include <qt/walletmodel.h>
#include <sync.h>
#include <list>
#include <memory>
#include <vector>
2019-01-21 13:58:20 -03:00
#include <QMessageBox>
2019-01-04 15:49:26 -03:00
#include <QMutex>
#include <QThread>
2019-01-04 15:49:26 -03:00
class OptionsModel;
class PlatformStyle;
namespace interfaces {
class Handler;
class Node;
} // namespace interfaces
2019-01-21 13:58:20 -03:00
class OpenWalletActivity;
2019-01-04 15:49:26 -03:00
/**
* Controller between interfaces::Node, WalletModel instances and the GUI.
*/
class WalletController : public QObject
{
Q_OBJECT
WalletModel* getOrCreateWallet(std::unique_ptr<interfaces::Wallet> wallet);
void removeAndDeleteWallet(WalletModel* wallet_model);
public:
WalletController(interfaces::Node& node, const PlatformStyle* platform_style, OptionsModel* options_model, QObject* parent);
~WalletController();
std::vector<WalletModel*> getWallets() const;
std::vector<std::string> getWalletsAvailableToOpen() const;
2019-01-21 13:58:20 -03:00
OpenWalletActivity* openWallet(const std::string& name, QWidget* parent = nullptr);
2019-01-04 15:49:26 -03:00
private Q_SLOTS:
void addWallet(WalletModel* wallet_model);
Q_SIGNALS:
void walletAdded(WalletModel* wallet_model);
void walletRemoved(WalletModel* wallet_model);
void coinsSent(WalletModel* wallet_model, SendCoinsRecipient recipient, QByteArray transaction);
private:
QThread m_activity_thread;
2019-01-04 15:49:26 -03:00
interfaces::Node& m_node;
const PlatformStyle* const m_platform_style;
OptionsModel* const m_options_model;
mutable QMutex m_mutex;
std::vector<WalletModel*> m_wallets;
std::unique_ptr<interfaces::Handler> m_handler_load_wallet;
2019-01-21 13:58:20 -03:00
friend class OpenWalletActivity;
};
class OpenWalletActivity : public QObject
{
Q_OBJECT
public:
OpenWalletActivity(WalletController* wallet_controller, const std::string& name);
public Q_SLOTS:
void open();
Q_SIGNALS:
void message(QMessageBox::Icon icon, const QString text);
void finished();
void opened(WalletModel* wallet_model);
private:
WalletController* const m_wallet_controller;
std::string const m_name;
2019-01-04 15:49:26 -03:00
};
#endif // BITCOIN_QT_WALLETCONTROLLER_H