15 lines
498 B
C++
15 lines
498 B
C++
#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);
|