- Add expanded address icon picker with search, bottom-aligned actions, and improved modal sizing - Embed a pickaxe icon font subset and wire it into typography/address icon rendering - Track view-only shielded addresses and prevent sends from non-spendable z-addresses - Improve address transfer dialog sizing, max amount handling, and text clipping - Tune main header layout values in ui.toml - Update README, codebase overview, and third-party license documentation
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
// DragonX Wallet - Embedded font data declarations (INCBIN)
|
|
// Copyright 2024-2026 The Hush Developers
|
|
// Released under the GPLv3
|
|
//
|
|
// The actual data is emitted in generated/embedded_fonts.cpp via the
|
|
// assembler .incbin directive, so the compiler never parses 122K lines
|
|
// of hex literals.
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
// These symbols are defined in generated/embedded_fonts.cpp (via INCBIN).
|
|
// INCBIN creates: g_<name>_data[] (const unsigned char)
|
|
// g_<name>_size (const unsigned int)
|
|
// g_<name>_end (const unsigned char*)
|
|
|
|
extern "C" {
|
|
extern const unsigned char g_ubuntu_regular_data[];
|
|
extern const unsigned int g_ubuntu_regular_size;
|
|
|
|
extern const unsigned char g_ubuntu_light_data[];
|
|
extern const unsigned int g_ubuntu_light_size;
|
|
|
|
extern const unsigned char g_ubuntu_medium_data[];
|
|
extern const unsigned int g_ubuntu_medium_size;
|
|
|
|
extern const unsigned char g_material_icons_data[];
|
|
extern const unsigned int g_material_icons_size;
|
|
|
|
extern const unsigned char g_mdi_pickaxe_subset_data[];
|
|
extern const unsigned int g_mdi_pickaxe_subset_size;
|
|
|
|
extern const unsigned char g_noto_cjk_subset_data[];
|
|
extern const unsigned int g_noto_cjk_subset_size;
|
|
}
|