feat: use icons in spreadsheet app toolbar

This commit is contained in:
2026-04-08 20:13:57 +02:00
parent c3a5a1c739
commit 27fcdd425f
3 changed files with 63 additions and 6 deletions
+14
View File
@@ -12,6 +12,7 @@
#include <gui/gui.hpp>
#include <gui/truetype.hpp>
#include <gui/stb_math.h>
#include <gui/svg.hpp>
extern "C" {
#include <string.h>
@@ -266,6 +267,19 @@ void auto_fit_column(int col);
void render(uint32_t* pixels);
// ============================================================================
// Icons
// ============================================================================
extern SvgIcon g_icon_folder;
extern SvgIcon g_icon_save;
extern SvgIcon g_icon_cut;
extern SvgIcon g_icon_copy;
extern SvgIcon g_icon_paste;
void ss_load_icons();
void ss_unload_icons();
// ============================================================================
// Function declarations — main.cpp
// ============================================================================