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)
45 lines
837 B
C++
45 lines
837 B
C++
// DragonX Wallet - ImGui Edition
|
|
// Copyright 2024-2026 The Hush Developers
|
|
// Released under the GPLv3
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include "../../data/wallet_state.h"
|
|
|
|
namespace dragonx {
|
|
|
|
class App;
|
|
|
|
namespace ui {
|
|
|
|
/**
|
|
* @brief Dialog showing full transaction details
|
|
*/
|
|
class TransactionDetailsDialog {
|
|
public:
|
|
/**
|
|
* @brief Show the dialog for a transaction
|
|
* @param tx The transaction to display
|
|
*/
|
|
static void show(const TransactionInfo& tx);
|
|
|
|
/**
|
|
* @brief Render the dialog (call every frame)
|
|
* @param app Pointer to app instance
|
|
*/
|
|
static void render(App* app);
|
|
|
|
/**
|
|
* @brief Check if dialog is currently open
|
|
*/
|
|
static bool isOpen();
|
|
|
|
private:
|
|
static bool s_open;
|
|
static TransactionInfo s_transaction;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace dragonx
|