MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / TreeNodeBehavior

Method TreeNodeBehavior

lib/imgui/imgui_widgets.cpp:5299–5482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5297}
5298
5299bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end)
5300{
5301 ImGuiWindow* window = GetCurrentWindow();
5302 if (window->SkipItems)
5303 return false;
5304
5305 ImGuiContext& g = *GImGui;
5306 const ImGuiStyle& style = g.Style;
5307 const bool display_frame = (flags & ImGuiTreeNodeFlags_Framed) != 0;
5308 const ImVec2 padding = (display_frame || (flags & ImGuiTreeNodeFlags_FramePadding)) ? style.FramePadding : ImVec2(style.FramePadding.x, ImMin(window->DC.CurrLineTextBaseOffset, style.FramePadding.y));
5309
5310 if (!label_end)
5311 label_end = FindRenderedTextEnd(label);
5312 const ImVec2 label_size = CalcTextSize(label, label_end, false);
5313
5314 // We vertically grow up to current line height up the typical widget height.
5315 const float frame_height = ImMax(ImMin(window->DC.CurrLineSize.y, g.FontSize + style.FramePadding.y*2), label_size.y + padding.y*2);
5316 ImRect frame_bb;
5317 frame_bb.Min.x = (flags & ImGuiTreeNodeFlags_SpanFullWidth) ? window->WorkRect.Min.x : window->DC.CursorPos.x;
5318 frame_bb.Min.y = window->DC.CursorPos.y;
5319 frame_bb.Max.x = window->WorkRect.Max.x;
5320 frame_bb.Max.y = window->DC.CursorPos.y + frame_height;
5321 if (display_frame)
5322 {
5323 // Framed header expand a little outside the default padding, to the edge of InnerClipRect
5324 // (FIXME: May remove this at some point and make InnerClipRect align with WindowPadding.x instead of WindowPadding.x*0.5f)
5325 frame_bb.Min.x -= IM_FLOOR(window->WindowPadding.x * 0.5f - 1.0f);
5326 frame_bb.Max.x += IM_FLOOR(window->WindowPadding.x * 0.5f);
5327 }
5328
5329 const float text_offset_x = g.FontSize + (display_frame ? padding.x*3 : padding.x*2); // Collapser arrow width + Spacing
5330 const float text_offset_y = ImMax(padding.y, window->DC.CurrLineTextBaseOffset); // Latch before ItemSize changes it
5331 const float text_width = g.FontSize + (label_size.x > 0.0f ? label_size.x + padding.x*2 : 0.0f); // Include collapser
5332 ImVec2 text_pos(window->DC.CursorPos.x + text_offset_x, window->DC.CursorPos.y + text_offset_y);
5333 ItemSize(ImVec2(text_width, frame_height), padding.y);
5334
5335 // For regular tree nodes, we arbitrary allow to click past 2 worth of ItemSpacing
5336 ImRect interact_bb = frame_bb;
5337 if (!display_frame && (flags & (ImGuiTreeNodeFlags_SpanAvailWidth | ImGuiTreeNodeFlags_SpanFullWidth)) == 0)
5338 interact_bb.Max.x = frame_bb.Min.x + text_width + style.ItemSpacing.x * 2.0f;
5339
5340 // Store a flag for the current depth to tell if we will allow closing this node when navigating one of its child.
5341 // For this purpose we essentially compare if g.NavIdIsAlive went from 0 to 1 between TreeNode() and TreePop().
5342 // This is currently only support 32 level deep and we are fine with (1 << Depth) overflowing into a zero.
5343 const bool is_leaf = (flags & ImGuiTreeNodeFlags_Leaf) != 0;
5344 bool is_open = TreeNodeBehaviorIsOpen(id, flags);
5345 if (is_open && !g.NavIdIsAlive && (flags & ImGuiTreeNodeFlags_NavLeftJumpsBackHere) && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
5346 window->DC.TreeJumpToParentOnPopMask |= (1 << window->DC.TreeDepth);
5347
5348 bool item_add = ItemAdd(interact_bb, id);
5349 window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HasDisplayRect;
5350 window->DC.LastItemDisplayRect = frame_bb;
5351
5352 if (!item_add)
5353 {
5354 if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
5355 TreePushOverrideID(id);
5356 IMGUI_TEST_ENGINE_ITEM_INFO(window->DC.LastItemId, label, window->DC.ItemFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0));

Callers

nothing calls this directly

Calls 8

GetCurrentWindowFunction · 0.85
ImVec2Class · 0.85
ImMinFunction · 0.85
ImMaxFunction · 0.85
ItemSizeClass · 0.85
RenderBulletFunction · 0.85
RenderArrowFunction · 0.85
SetIntMethod · 0.80

Tested by

no test coverage detected