Full-node GUI wallet for DragonX cryptocurrency. Built with Dear ImGui, SDL3, and OpenGL3/DX11. Features: - Send/receive shielded and transparent transactions - Autoshield with merged transaction display - Built-in CPU mining (xmrig) - Peer management and network monitoring - Wallet encryption with PIN lock - QR code generation for receive addresses - Transaction history with pagination - Console for direct RPC commands - Cross-platform (Linux, Windows)
21 lines
412 B
C++
21 lines
412 B
C++
// DragonX Wallet - ImGui Edition
|
|
// Copyright 2024-2026 The Hush Developers
|
|
// Released under the GPLv3
|
|
|
|
#include "main_window.h"
|
|
#include "../../app.h"
|
|
#include "imgui.h"
|
|
|
|
namespace dragonx {
|
|
namespace ui {
|
|
|
|
void RenderMainWindow(App* app)
|
|
{
|
|
// Main window rendering is handled by App::render()
|
|
// This file is for any shared window utilities
|
|
(void)app;
|
|
}
|
|
|
|
} // namespace ui
|
|
} // namespace dragonx
|