// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once namespace dragonx { class App; namespace ui { /** * @brief Render the Market tab * Shows price information and charts */ void RenderMarketTab(App* app); // True while the full-window Manage-portfolio modal is open (used to suppress panel theme-effects // frame-wide so their foreground borders don't bleed over the overlay). bool PortfolioEditorActive(); } // namespace ui } // namespace dragonx