Home
last modified time | relevance | path

Searched refs:IsItemDeactivatedAfterEdit (Results 1 - 5 of 5) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui.h612 IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).
1491 static inline bool IsItemDeactivatedAfterChange() { return IsItemDeactivatedAfterEdit(); } in IsItemDeactivatedAfterChange()
H A Dimgui.cpp381 - 2018/08/22 (1.63) - renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API. Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent).
2712 // This marking is solely to be able to provide info for IsItemDeactivatedAfterEdit(). in MarkItemEdited()
4236 bool ImGui::IsItemDeactivatedAfterEdit() in IsItemDeactivatedAfterEdit() function in ImGui
/third_party/skia/third_party/externals/imgui/
H A Dimgui.h845 IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that requires continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item).
997 ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to every time the value was modified). Consider looking at the IsItemDeactivatedAfterEdit() function.
2866 //static inline bool IsItemDeactivatedAfterChange() { return IsItemDeactivatedAfterEdit(); } // OBSOLETED in 1.63 (from Aug 2018)
H A Dimgui_demo.cpp2249 "IsItemDeactivatedAfterEdit() = %d\n" in ShowDemoWindowWidgets()
2268 ImGui::IsItemDeactivatedAfterEdit(), in ShowDemoWindowWidgets()
H A Dimgui.cpp416 - ImGui::IsItemDeactivatedAfterChange() -> use ImGui::IsItemDeactivatedAfterEdit().
509 - 2018/08/22 (1.63) - renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API. Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent).
3150 // This marking is solely to be able to provide info for IsItemDeactivatedAfterEdit(). in MarkItemEdited()
4895 bool ImGui::IsItemDeactivatedAfterEdit() in IsItemDeactivatedAfterEdit() function in ImGui

Completed in 76 milliseconds