@@ -3930,9 +3930,7 @@ ImGuiContext::ImGuiContext(ImFontAtlas* shared_font_atlas)
3930
3930
ActiveIdSource = ImGuiInputSource_None;
3931
3931
ActiveIdMouseButton = -1;
3932
3932
ActiveIdPreviousFrame = 0;
3933
- ActiveIdPreviousFrameIsAlive = false;
3934
- ActiveIdPreviousFrameHasBeenEditedBefore = false;
3935
- ActiveIdPreviousFrameWindow = NULL;
3933
+ memset(&DeactivatedItemData, 0, sizeof(DeactivatedItemData));
3936
3934
memset(&ActiveIdValueOnActivation, 0, sizeof(ActiveIdValueOnActivation));
3937
3935
LastActiveId = 0;
3938
3936
LastActiveIdTimer = 0.0f;
@@ -4175,7 +4173,7 @@ void ImGui::Shutdown()
4175
4173
g.WindowsById.Clear();
4176
4174
g.NavWindow = NULL;
4177
4175
g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL;
4178
- g.ActiveIdWindow = g.ActiveIdPreviousFrameWindow = NULL;
4176
+ g.ActiveIdWindow = NULL;
4179
4177
g.MovingWindow = NULL;
4180
4178
4181
4179
g.KeysRoutingTable.Clear();
@@ -4359,6 +4357,13 @@ void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window)
4359
4357
g.MovingWindow = NULL;
4360
4358
}
4361
4359
4360
+ // Store deactivate data
4361
+ ImGuiDeactivatedItemData* deactivated_data = &g.DeactivatedItemData;
4362
+ deactivated_data->ID = g.ActiveId;
4363
+ deactivated_data->ElapseFrame = (g.LastItemData.ID == g.ActiveId) ? g.FrameCount : g.FrameCount + 1; // FIXME: OK to use LastItemData?
4364
+ deactivated_data->HasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore;
4365
+ deactivated_data->IsAlive = (g.ActiveIdIsAlive == g.ActiveId);
4366
+
4362
4367
// This could be written in a more general way (e.g associate a hook to ActiveId),
4363
4368
// but since this is currently quite an exception we'll leave it as is.
4364
4369
// One common scenario leading to this is: pressing Key ->NavMoveRequestApplyResult() -> ClearActiveID()
@@ -5189,11 +5194,8 @@ void ImGui::NewFrame()
5189
5194
g.ActiveIdTimer += g.IO.DeltaTime;
5190
5195
g.LastActiveIdTimer += g.IO.DeltaTime;
5191
5196
g.ActiveIdPreviousFrame = g.ActiveId;
5192
- g.ActiveIdPreviousFrameWindow = g.ActiveIdWindow;
5193
- g.ActiveIdPreviousFrameHasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore;
5194
5197
g.ActiveIdIsAlive = 0;
5195
5198
g.ActiveIdHasBeenEditedThisFrame = false;
5196
- g.ActiveIdPreviousFrameIsAlive = false;
5197
5199
g.ActiveIdIsJustActivated = false;
5198
5200
if (g.TempInputId != 0 && g.ActiveId != g.TempInputId)
5199
5201
g.TempInputId = 0;
@@ -5202,6 +5204,9 @@ void ImGui::NewFrame()
5202
5204
g.ActiveIdUsingNavDirMask = 0x00;
5203
5205
g.ActiveIdUsingAllKeyboardKeys = false;
5204
5206
}
5207
+ if (g.DeactivatedItemData.ElapseFrame < g.FrameCount)
5208
+ g.DeactivatedItemData.ID = 0;
5209
+ g.DeactivatedItemData.IsAlive = false;
5205
5210
5206
5211
// Record when we have been stationary as this state is preserved while over same item.
5207
5212
// FIXME: The way this is expressed means user cannot alter HoverStationaryDelay during the frame to use varying values.
@@ -5833,13 +5838,13 @@ bool ImGui::IsItemDeactivated()
5833
5838
ImGuiContext& g = *GImGui;
5834
5839
if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDeactivated)
5835
5840
return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Deactivated) != 0;
5836
- return (g.ActiveIdPreviousFrame == g.LastItemData.ID && g.ActiveIdPreviousFrame != 0 && g.ActiveId ! = g.LastItemData.ID );
5841
+ return (g.DeactivatedItemData.ID == g.LastItemData.ID && g.LastItemData.ID != 0 && g.DeactivatedItemData.ElapseFrame > = g.FrameCount );
5837
5842
}
5838
5843
5839
5844
bool ImGui::IsItemDeactivatedAfterEdit()
5840
5845
{
5841
5846
ImGuiContext& g = *GImGui;
5842
- return IsItemDeactivated() && (g.ActiveIdPreviousFrameHasBeenEditedBefore || (g.ActiveId == 0 && g.ActiveIdHasBeenEditedBefore)) ;
5847
+ return IsItemDeactivated() && g.DeactivatedItemData.HasBeenEditedBefore ;
5843
5848
}
5844
5849
5845
5850
// == (GetItemID() == GetFocusID() && GetFocusID() != 0)
@@ -10443,8 +10448,8 @@ void ImGui::KeepAliveID(ImGuiID id)
10443
10448
ImGuiContext& g = *GImGui;
10444
10449
if (g.ActiveId == id)
10445
10450
g.ActiveIdIsAlive = id;
10446
- if (g.ActiveIdPreviousFrame == id)
10447
- g.ActiveIdPreviousFrameIsAlive = true;
10451
+ if (g.DeactivatedItemData.ID == id)
10452
+ g.DeactivatedItemData.IsAlive = true;
10448
10453
}
10449
10454
10450
10455
// Declare item bounding box for clipping and interaction.
@@ -10529,6 +10534,9 @@ bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGu
10529
10534
// window->DrawList->AddRect(g.LastItemData.NavRect.Min, g.LastItemData.NavRect.Max, IM_COL32(255,255,0,255)); // [DEBUG]
10530
10535
#endif
10531
10536
10537
+ if (id != 0 && g.DeactivatedItemData.ID == id)
10538
+ g.DeactivatedItemData.ElapseFrame = g.FrameCount;
10539
+
10532
10540
// We need to calculate this now to take account of the current clipping rectangle (as items like Selectable may change them)
10533
10541
if (is_rect_visible)
10534
10542
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Visible;
@@ -10888,7 +10896,7 @@ void ImGui::BeginGroup()
10888
10896
group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive;
10889
10897
group_data.BackupHoveredIdIsAlive = g.HoveredId != 0;
10890
10898
group_data.BackupIsSameLine = window->DC.IsSameLine;
10891
- group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive ;
10899
+ group_data.BackupDeactivatedIdIsAlive = g.DeactivatedItemData.IsAlive ;
10892
10900
group_data.EmitItem = true;
10893
10901
10894
10902
window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x;
@@ -10939,11 +10947,11 @@ void ImGui::EndGroup()
10939
10947
// Also if you grep for LastItemId you'll notice it is only used in that context.
10940
10948
// (The two tests not the same because ActiveIdIsAlive is an ID itself, in order to be able to handle ActiveId being overwritten during the frame.)
10941
10949
const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId;
10942
- const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true);
10950
+ const bool group_contains_deactivated_id = (group_data.BackupDeactivatedIdIsAlive == false) && (g.DeactivatedItemData.IsAlive == true);
10943
10951
if (group_contains_curr_active_id)
10944
10952
g.LastItemData.ID = g.ActiveId;
10945
- else if (group_contains_prev_active_id )
10946
- g.LastItemData.ID = g.ActiveIdPreviousFrame ;
10953
+ else if (group_contains_deactivated_id )
10954
+ g.LastItemData.ID = g.DeactivatedItemData.ID ;
10947
10955
g.LastItemData.Rect = group_bb;
10948
10956
10949
10957
// Forward Hovered flag
@@ -10957,7 +10965,7 @@ void ImGui::EndGroup()
10957
10965
10958
10966
// Forward Deactivated flag
10959
10967
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDeactivated;
10960
- if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame )
10968
+ if (group_contains_deactivated_id )
10961
10969
g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Deactivated;
10962
10970
10963
10971
g.GroupStack.pop_back();
0 commit comments