From 153269671b2553e2c61cdcffada63d900e9eed68 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 21 Mar 2025 17:55:04 +0100 Subject: [PATCH] WIP - Fonts: Tools: added option to hide font preview text. Move code. --- imgui.cpp | 36 +++++++++++++++++++++++------------- imgui_internal.h | 1 + 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 966ec613c..fe80a444a 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -8538,16 +8538,6 @@ void ImGui::PushFont(ImFont* font, float font_size) SetCurrentFont(font, font_size); } -// NewFrame() calls this and we do this really unusual thing of calling *push_front()*, the reason behind that we want to support the PushFont()/NewFrame()/PopFont() idiom. -static void PushDefaultFont() -{ - ImGuiContext& g = *GImGui; - ImFontStackData font_stack_data = { ImGui::GetDefaultFont(), ImGui::GetDefaultFont()->Sources[0].SizePixels }; - g.FontStack.push_front(font_stack_data); - if (g.FontStack.Size == 1) - ImGui::SetCurrentFont(font_stack_data.Font, font_stack_data.FontSize); -} - void ImGui::PopFont() { ImGuiContext& g = *GImGui; @@ -8574,6 +8564,16 @@ void ImGui::PopFontSize() PopFont(); } +// NewFrame() calls this and we do this really unusual thing of calling *push_front()*, the reason behind that we want to support the PushFont()/NewFrame()/PopFont() idiom. +static void PushDefaultFont() +{ + ImGuiContext& g = *GImGui; + ImFontStackData font_stack_data = { ImGui::GetDefaultFont(), ImGui::GetDefaultFont()->Sources[0].SizePixels }; + g.FontStack.push_front(font_stack_data); + if (g.FontStack.Size == 1) + ImGui::SetCurrentFont(font_stack_data.Font, font_stack_data.FontSize); +} + void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) { ImGuiContext& g = *GImGui; @@ -21259,6 +21259,8 @@ namespace ImGuiFreeType { IMGUI_API const ImFontLoader* GetFontLoader(); IMGUI_A // [DEBUG] List fonts in a font atlas and display its texture void ImGui::ShowFontAtlas(ImFontAtlas* atlas) { + ImGuiContext& g = *GImGui; + SeparatorText("Backend Support for Dynamic Fonts"); BeginDisabled(); CheckboxFlags("io.BackendFlags: RendererHasTextures", &GetIO().BackendFlags, ImGuiBackendFlags_RendererHasTextures); @@ -21271,6 +21273,9 @@ void ImGui::ShowFontAtlas(ImFontAtlas* atlas) SameLine(0, 0); Text(" for details on font loading."); + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + Checkbox("Show font preview", &cfg->ShowFontPreview); + // Font loaders if (TreeNode("Loader", "Loader: \'%s\'", atlas->FontLoaderName ? atlas->FontLoaderName : "NULL")) { @@ -22338,6 +22343,8 @@ void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, co // [DEBUG] Display details for a single font, called by ShowStyleEditor(). void ImGui::DebugNodeFont(ImFont* font) { + ImGuiContext& g = *GImGui; + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; ImFontAtlas* atlas = font->ContainerAtlas; bool opened = TreeNode(font, "Font: \"%s\": %d sources(s)", font->GetDebugName(), font->SourcesCount); @@ -22345,9 +22352,12 @@ void ImGui::DebugNodeFont(ImFont* font) if (!opened) Indent(); Indent(); - PushFont(font); - Text("The quick brown fox jumps over the lazy dog"); - PopFont(); + if (cfg->ShowFontPreview) + { + PushFont(font); + Text("The quick brown fox jumps over the lazy dog"); + PopFont(); + } if (!opened) { Unindent(); diff --git a/imgui_internal.h b/imgui_internal.h index 294712776..38a9e8087 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -2262,6 +2262,7 @@ struct ImGuiMetricsConfig int ShowTablesRectsType = -1; int HighlightMonitorIdx = -1; ImGuiID HighlightViewportID = 0; + bool ShowFontPreview = true; }; struct ImGuiStackLevelInfo