mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 19:47:30 -03:00
b7f6a89a3e
7b7cd11244
clang-tidy, qt: Force checks for headers in `src/qt` (Hennadii Stepanov)69eacf2c5e
clang-tidy, qt: Fix `modernize-use-default-member-init` in headers (Hennadii Stepanov) Pull request description: This PR split from bitcoin/bitcoin#26705 and contains only changes in `src/qt`. Effectively, it fixes the clang-tidy's `modernize-use-default-member-init` errors, and forces clang-tidy checks for all headers in the `src/qt` directory. ACKs for top commit: jarolrod: ACK7b7cd11244
Tree-SHA512: 79525bb0f31ae7cad88c781e55091a21467c0485ddc1ed03ad62e051480fda3b3710619ea11af480437edba3c6e038f7c40edc6b373e3a37408c006d11b34686
118 lines
3.2 KiB
C++
118 lines
3.2 KiB
C++
// Copyright (c) 2011-2022 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_BITCOIN_H
|
|
#define BITCOIN_QT_BITCOIN_H
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config/bitcoin-config.h>
|
|
#endif
|
|
|
|
#include <interfaces/node.h>
|
|
#include <qt/initexecutor.h>
|
|
|
|
#include <assert.h>
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
#include <QApplication>
|
|
|
|
class BitcoinGUI;
|
|
class ClientModel;
|
|
class NetworkStyle;
|
|
class OptionsModel;
|
|
class PaymentServer;
|
|
class PlatformStyle;
|
|
class SplashScreen;
|
|
class WalletController;
|
|
class WalletModel;
|
|
namespace interfaces {
|
|
class Init;
|
|
} // namespace interfaces
|
|
|
|
|
|
/** Main Bitcoin application object */
|
|
class BitcoinApplication: public QApplication
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BitcoinApplication();
|
|
~BitcoinApplication();
|
|
|
|
#ifdef ENABLE_WALLET
|
|
/// Create payment server
|
|
void createPaymentServer();
|
|
#endif
|
|
/// parameter interaction/setup based on rules
|
|
void parameterSetup();
|
|
/// Create options model
|
|
[[nodiscard]] bool createOptionsModel(bool resetSettings);
|
|
/// Initialize prune setting
|
|
void InitPruneSetting(int64_t prune_MiB);
|
|
/// Create main window
|
|
void createWindow(const NetworkStyle *networkStyle);
|
|
/// Create splash screen
|
|
void createSplashScreen(const NetworkStyle *networkStyle);
|
|
/// Create or spawn node
|
|
void createNode(interfaces::Init& init);
|
|
/// Basic initialization, before starting initialization/shutdown thread. Return true on success.
|
|
bool baseInitialize();
|
|
|
|
/// Request core initialization
|
|
void requestInitialize();
|
|
|
|
/// Get process return value
|
|
int getReturnValue() const { return returnValue; }
|
|
|
|
/// Get window identifier of QMainWindow (BitcoinGUI)
|
|
WId getMainWinId() const;
|
|
|
|
/// Setup platform style
|
|
void setupPlatformStyle();
|
|
|
|
interfaces::Node& node() const { assert(m_node); return *m_node; }
|
|
|
|
public Q_SLOTS:
|
|
void initializeResult(bool success, interfaces::BlockAndHeaderTipInfo tip_info);
|
|
/// Request core shutdown
|
|
void requestShutdown();
|
|
/// Handle runaway exceptions. Shows a message box with the problem and quits the program.
|
|
void handleRunawayException(const QString &message);
|
|
|
|
/**
|
|
* A helper function that shows a message box
|
|
* with details about a non-fatal exception.
|
|
*/
|
|
void handleNonFatalException(const QString& message);
|
|
|
|
Q_SIGNALS:
|
|
void requestedInitialize();
|
|
void requestedShutdown();
|
|
void windowShown(BitcoinGUI* window);
|
|
|
|
protected:
|
|
bool event(QEvent* e) override;
|
|
|
|
private:
|
|
std::optional<InitExecutor> m_executor;
|
|
OptionsModel* optionsModel{nullptr};
|
|
ClientModel* clientModel{nullptr};
|
|
BitcoinGUI* window{nullptr};
|
|
QTimer* pollShutdownTimer{nullptr};
|
|
#ifdef ENABLE_WALLET
|
|
PaymentServer* paymentServer{nullptr};
|
|
WalletController* m_wallet_controller{nullptr};
|
|
#endif
|
|
int returnValue{0};
|
|
const PlatformStyle* platformStyle{nullptr};
|
|
std::unique_ptr<QWidget> shutdownWindow;
|
|
SplashScreen* m_splash = nullptr;
|
|
std::unique_ptr<interfaces::Node> m_node;
|
|
|
|
void startThread();
|
|
};
|
|
|
|
int GuiMain(int argc, char* argv[]);
|
|
|
|
#endif // BITCOIN_QT_BITCOIN_H
|