// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once #include namespace dragonx { class App; namespace ui { /** * @brief Dialog for backing up wallet.dat */ class BackupWalletDialog { public: // Show the dialog static void show(); // Render the dialog (call each frame) static void render(App* app); // Check if dialog is open static bool isOpen(); }; } // namespace ui } // namespace dragonx