Initial commit: registry_dashboard — Dashboard ImGui para fn_registry
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "data.h"
|
||||
|
||||
// Draw the full dashboard. Call every frame.
|
||||
void draw_dashboard(RegistryData& data);
|
||||
|
||||
// Individual views (called by draw_dashboard)
|
||||
void draw_kpi_row(const RegistryStats& stats);
|
||||
void draw_charts(RegistryData& data);
|
||||
void draw_recent_functions(const std::vector<FunctionRow>& funcs);
|
||||
void draw_apps_list(const std::vector<AppRow>& apps);
|
||||
void draw_analysis_list(const std::vector<AnalysisRow>& analyses);
|
||||
void draw_types_list(const std::vector<TypeRow>& types);
|
||||
Reference in New Issue
Block a user