Skip to content

Commit ac7d6fb

Browse files
committed
Internals: Added TreeNodeIsOpen() to facilitate discoverability. (ocornut#7553, ocornut#1131, ocornut#2958, ocornut#2079, ocornut#722)
1 parent 9c2f600 commit ac7d6fb

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

imgui_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -3469,6 +3469,7 @@ namespace ImGui
34693469
IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f, ImU32 bg_col = 0);
34703470
IMGUI_API bool TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end = NULL);
34713471
IMGUI_API void TreePushOverrideID(ImGuiID id);
3472+
IMGUI_API bool TreeNodeIsOpen(ImGuiID id);
34723473
IMGUI_API void TreeNodeSetOpen(ImGuiID id, bool open);
34733474
IMGUI_API bool TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags); // Return open state. Consume previous SetNextItemOpen() data, if any. May return true when logging.
34743475
IMGUI_API void SetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data);

imgui_widgets.cpp

+10-4
Original file line numberDiff line numberDiff line change
@@ -6257,6 +6257,13 @@ bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char
62576257
return TreeNodeBehavior(window->GetID(ptr_id), flags, label, label_end);
62586258
}
62596259

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+
62606267
void ImGui::TreeNodeSetOpen(ImGuiID id, bool open)
62616268
{
62626269
ImGuiContext& g = *GImGui;
@@ -6269,7 +6276,7 @@ bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags)
62696276
if (flags & ImGuiTreeNodeFlags_Leaf)
62706277
return true;
62716278

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
62736280
ImGuiContext& g = *GImGui;
62746281
ImGuiWindow* window = g.CurrentWindow;
62756282
ImGuiStorage* storage = window->DC.StateStorage;
@@ -6311,6 +6318,7 @@ bool ImGui::TreeNodeUpdateNextOpen(ImGuiID id, ImGuiTreeNodeFlags flags)
63116318
}
63126319

63136320
// 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.
63146322
static void TreeNodeStoreStackData(ImGuiTreeNodeFlags flags)
63156323
{
63166324
ImGuiContext& g = *GImGui;
@@ -6393,7 +6401,6 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
63936401
// Store data for the current depth to allow returning to this node from any child item.
63946402
// For this purpose we essentially compare if g.NavIdIsAlive went from 0 to 1 between TreeNode() and TreePop().
63956403
// 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.
63976404
bool store_tree_node_stack_data = false;
63986405
if (!(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
63996406
{
@@ -6517,7 +6524,6 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
65176524
text_pos.x -= text_offset_x -padding.x;
65186525
if (flags & ImGuiTreeNodeFlags_ClipLabelForTrailingButton)
65196526
frame_bb.Max.x -= g.FontSize + style.FramePadding.x;
6520-
65216527
if (g.LogEnabled)
65226528
LogSetNextTextDecoration("###", "###");
65236529
}
@@ -6550,7 +6556,7 @@ bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* l
65506556
if (store_tree_node_stack_data && is_open)
65516557
TreeNodeStoreStackData(flags); // Call before TreePushOverrideID()
65526558
if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen))
6553-
TreePushOverrideID(id);
6559+
TreePushOverrideID(id); // Could use TreePush(label) but this avoid computing twice
65546560

65556561
IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0));
65566562
return is_open;

0 commit comments

Comments
 (0)