@@ -6257,6 +6257,13 @@ bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char
6257
6257
return TreeNodeBehavior (window->GetID (ptr_id), flags, label, label_end);
6258
6258
}
6259
6259
6260
+ bool ImGui::TreeNodeIsOpen (ImGuiID id)
6261
+ {
6262
+ ImGuiContext& g = *GImGui;
6263
+ ImGuiStorage* storage = g.CurrentWindow ->DC .StateStorage ;
6264
+ return storage->GetInt (id, 0 ) != 0 ;
6265
+ }
6266
+
6260
6267
void ImGui::TreeNodeSetOpen (ImGuiID id, bool open)
6261
6268
{
6262
6269
ImGuiContext& g = *GImGui;
@@ -6269,7 +6276,7 @@ bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags)
6269
6276
if (flags & ImGuiTreeNodeFlags_Leaf)
6270
6277
return true ;
6271
6278
6272
- // We only write to the tree storage if the user clicks ( or explicitly use the SetNextItemOpen function)
6279
+ // We only write to the tree storage if the user clicks, or explicitly use the SetNextItemOpen function
6273
6280
ImGuiContext& g = *GImGui;
6274
6281
ImGuiWindow* window = g.CurrentWindow ;
6275
6282
ImGuiStorage* storage = window->DC .StateStorage ;
@@ -6311,6 +6318,7 @@ bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags)
6311
6318
}
6312
6319
6313
6320
// Store ImGuiTreeNodeStackData for just submitted node.
6321
+ // Currently only supports 32 level deep and we are fine with (1 << Depth) overflowing into a zero, easy to increase.
6314
6322
static void TreeNodeStoreStackData (ImGuiTreeNodeFlags flags)
6315
6323
{
6316
6324
ImGuiContext& g = *GImGui;
@@ -6393,7 +6401,6 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
6393
6401
// Store data for the current depth to allow returning to this node from any child item.
6394
6402
// For this purpose we essentially compare if g.NavIdIsAlive went from 0 to 1 between TreeNode() and TreePop().
6395
6403
// It will become tempting to enable ImGuiTreeNodeFlags_NavLeftJumpsBackHere by default or move it to ImGuiStyle.
6396
- // Currently only supports 32 level deep and we are fine with (1 << Depth) overflowing into a zero, easy to increase.
6397
6404
bool store_tree_node_stack_data = false ;
6398
6405
if (!(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
6399
6406
{
@@ -6517,7 +6524,6 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
6517
6524
text_pos.x -= text_offset_x -padding.x ;
6518
6525
if (flags & ImGuiTreeNodeFlags_ClipLabelForTrailingButton)
6519
6526
frame_bb.Max .x -= g.FontSize + style.FramePadding .x ;
6520
-
6521
6527
if (g.LogEnabled )
6522
6528
LogSetNextTextDecoration (" ###" , " ###" );
6523
6529
}
@@ -6550,7 +6556,7 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
6550
6556
if (store_tree_node_stack_data && is_open)
6551
6557
TreeNodeStoreStackData (flags); // Call before TreePushOverrideID()
6552
6558
if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
6553
- TreePushOverrideID (id);
6559
+ TreePushOverrideID (id); // Could use TreePush(label) but this avoid computing twice
6554
6560
6555
6561
IMGUI_TEST_ENGINE_ITEM_INFO (id, label, g.LastItemData .StatusFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0 ));
6556
6562
return is_open;
0 commit comments