Skip to content

Commit 0a11bb7

Browse files
committed
WIP - (Breaking) Fonts: PushFont() default to preserve current font size.
1 parent b7befb0 commit 0a11bb7

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

imgui.cpp

+8-3
Original file line numberDiff line numberDiff line change
@@ -8530,8 +8530,13 @@ void ImGui::PushFont(ImFont* font, float font_size)
85308530
ImGuiContext& g = *GImGui;
85318531
if (font == NULL)
85328532
font = GetDefaultFont();
8533-
if (font_size < 0.0f)
8534-
font_size = font->Sources[0].SizePixels; // g.FontSize;
8533+
if (font_size <= 0.0f)
8534+
{
8535+
if (font->Flags & ImFontFlags_UseDefaultSize)
8536+
font_size = font->DefaultSize; // Legacy: use default font size. Same as doing PushFont(font, font->DefaultSize). // FIXME-NEWATLAS
8537+
else
8538+
font_size = g.FontSizeBeforeScaling; // Keep current font size
8539+
}
85358540
g.FontStack.push_back({ font, font_size });
85368541
SetCurrentFont(font, font_size);
85378542
}
@@ -8566,7 +8571,7 @@ void ImGui::PopFontSize()
85668571
static void PushDefaultFont()
85678572
{
85688573
ImGuiContext& g = *GImGui;
8569-
ImFontStackData font_stack_data = { ImGui::GetDefaultFont(), ImGui::GetDefaultFont()->Sources[0].SizePixels };
8574+
ImFontStackData font_stack_data = { ImGui::GetDefaultFont(), ImGui::GetDefaultFont()->DefaultSize };
85708575
g.FontStack.push_front(font_stack_data);
85718576
if (g.FontStack.Size == 1)
85728577
ImGui::SetCurrentFont(font_stack_data.Font, font_stack_data.FontSize);

imgui.h

+9-3
Original file line numberDiff line numberDiff line change
@@ -499,9 +499,13 @@ namespace ImGui
499499
IMGUI_API void SetScrollFromPosY(float local_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position.
500500

501501
// Parameters stacks (font)
502-
IMGUI_API void PushFont(ImFont* font, float font_size = -1); // use NULL as a shortcut to push default font. Use <0.0f to keep current font size.
502+
// *IMPORTANT* before 1.92, fonts had a single size. They can now be dynamically be adjusted.
503+
// - Before 1.92: PushFont() always used font default size.
504+
// - Since 1.92: PushFont() preserve the current shared font size.
505+
// - To use old behavior: use 'PushFont(font, font->DefaultSize)' in call site, or set 'ImFontConfig::Flags |= ImFontFlags_UseDefaultSize' before calling AddFont().
506+
IMGUI_API void PushFont(ImFont* font, float font_size = -1); // use NULL as a shortcut to push default font. Use <0.0f to keep current font size. Use font->DefaultSize to revert to font default size.
503507
IMGUI_API void PopFont();
504-
IMGUI_API void PushFontSize(float size);
508+
IMGUI_API void PushFontSize(float font_size);
505509
IMGUI_API void PopFontSize();
506510

507511
// Parameters stacks (shared)
@@ -3800,6 +3804,7 @@ enum ImFontFlags_
38003804
ImFontFlags_LockBakedSizes = 1 << 0, // Disable loading new baked sizes, disable garbage collecting current ones. e.g. if you want to lock a font to a single size.
38013805
ImFontFlags_NoLoadGlyphs = 1 << 1, // Disable loading new glyphs.
38023806
ImFontFlags_NoLoadError = 1 << 2, // Disable throwing an error/assert when calling AddFontXXX() with missing file/data. Calling code is expected to check AddFontXXX() return value.
3807+
ImFontFlags_UseDefaultSize = 1 << 3, // Legacy compatibility: make PushFont() calls without explicit size use font->DefaultSize instead of current font size.
38033808
};
38043809

38053810
// Font runtime data and rendering
@@ -3817,6 +3822,7 @@ struct ImFont
38173822
// [Internal] Members: Cold ~24-52 bytes
38183823
// Conceptually Sources[] is the list of font sources merged to create this font.
38193824
ImGuiID FontId; // Unique identifier for the font
3825+
float DefaultSize; // 4 // in // Default font size
38203826
short SourcesCount; // 2 // in // Number of ImFontConfig involved in creating this font. Usually 1, or >1 when merging multiple font sources into one ImFont.
38213827
ImFontConfig* Sources; // 4-8 // in // Pointer within ContainerAtlas->Sources[], to SourcesCount instances
38223828
ImWchar EllipsisChar; // 2-4 // out // Character used for ellipsis rendering ('...').
@@ -3841,7 +3847,7 @@ struct ImFont
38413847
IMGUI_API void RenderChar(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, ImWchar c);
38423848
IMGUI_API void RenderText(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false);
38433849
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
3844-
inline const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) { return CalcWordWrapPosition(Sources[0].SizePixels * scale, text, text_end, wrap_width); }
3850+
inline const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) { return CalcWordWrapPosition(DefaultSize * scale, text, text_end, wrap_width); }
38453851
#endif
38463852

38473853
// [Internal] Don't use!

imgui_draw.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -3008,6 +3008,7 @@ ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg)
30083008
font = IM_NEW(ImFont)();
30093009
font->FontId = FontNextUniqueID++;
30103010
font->Flags = font_cfg->Flags;
3011+
font->DefaultSize = font_cfg->SizePixels;
30113012
Fonts.push_back(font);
30123013
}
30133014
else
@@ -3251,7 +3252,7 @@ int ImFontAtlas::AddCustomRectRegular(int width, int height)
32513252
// myfont->Flags |= ImFontFlags_LockBakedSizes;
32523253
int ImFontAtlas::AddCustomRectFontGlyph(ImFont* font, ImWchar codepoint, int width, int height, float advance_x, const ImVec2& offset)
32533254
{
3254-
float font_size = font->Sources[0].SizePixels;
3255+
float font_size = font->DefaultSize;
32553256
return AddCustomRectFontGlyphForSize(font, font_size, codepoint, width, height, advance_x, offset);
32563257
}
32573258
// FIXME: we automatically set glyph.Colored=true by default.

0 commit comments

Comments
 (0)