mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-02-14 18:43:27 +00:00
67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
#include <QtWidgets>
|
|
#include "mainwindow.h"
|
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
: QMainWindow(parent)
|
|
{
|
|
setupUi();
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
}
|
|
|
|
void MainWindow::setupUi()
|
|
{
|
|
// Determine the appropriate plugin extension based on the platform
|
|
QString pluginExtension;
|
|
#if defined(Q_OS_WIN)
|
|
pluginExtension = ".dll";
|
|
#elif defined(Q_OS_MAC)
|
|
pluginExtension = ".dylib";
|
|
#else // Linux and other Unix-like systems
|
|
pluginExtension = ".so";
|
|
#endif
|
|
|
|
QString pluginPath = QCoreApplication::applicationDirPath() + "/../blockchain_ui" + pluginExtension;
|
|
QPluginLoader loader(pluginPath);
|
|
|
|
QWidget* blockchainWidget = nullptr;
|
|
|
|
if (loader.load()) {
|
|
QObject* plugin = loader.instance();
|
|
if (plugin) {
|
|
// Try to create the blockchain widget using the plugin's createWidget method
|
|
QMetaObject::invokeMethod(plugin, "createWidget",
|
|
Qt::DirectConnection,
|
|
Q_RETURN_ARG(QWidget*, blockchainWidget));
|
|
}
|
|
}
|
|
|
|
if (blockchainWidget) {
|
|
setCentralWidget(blockchainWidget);
|
|
} else {
|
|
qWarning() << "================================================";
|
|
qWarning() << "Failed to load blockchain UI plugin from:" << pluginPath;
|
|
qWarning() << "Error:" << loader.errorString();
|
|
qWarning() << "================================================";
|
|
|
|
// Fallback: show a message when plugin is not found
|
|
QWidget* fallbackWidget = new QWidget(this);
|
|
QVBoxLayout* layout = new QVBoxLayout(fallbackWidget);
|
|
|
|
QLabel* messageLabel = new QLabel("Blockchain UI module not loaded", fallbackWidget);
|
|
QFont font = messageLabel->font();
|
|
font.setPointSize(14);
|
|
messageLabel->setFont(font);
|
|
messageLabel->setAlignment(Qt::AlignCenter);
|
|
|
|
layout->addWidget(messageLabel);
|
|
setCentralWidget(fallbackWidget);
|
|
}
|
|
|
|
// Set window title and size
|
|
setWindowTitle("Logos Blockchain UI App");
|
|
resize(800, 600);
|
|
}
|