-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IsItemDeactivatedAfterEdit and InputTextMultiline #8004
Comments
I will try to look into this next week.
Underlying problem has been that So there are two approaches here:
I'm not thrilled by the long term prospect of something that feature of allowing user to not persist the modified buffer, so (2) is evidently the ideal target, but we'll have to see based on ease of implementation. Both approaches might be a little simpler to implement thanks to some of the recent changes made. |
Aha yes, I have to say that currently, for my purpose In the mean time, before either (1) or (2) are realised, does this mean my only option is to keep around my own storage buffer for every multi-line text control, and explicitly detect when to copy model values into it? In pseudo-code what I would be writing (for each control) would be some equivalent of this: void render_page(Thing &selectedThing)
{
static std::optional<Thing> previously_selected_thing;
static std::string edit_value;
if (!previously_selected_thing || (selected_thing != *previously_selected_thing))
{
edit_value = selectedThing.getModelValue();
previously_selected_thing = selectedThing;
}
ImGui::InputTextMultiLine("my_input", &edit_value);
if (ImGui::IsItemDeactivatedAfterEdit())
{
selectedThing.setModelValue(edit_value);
}
if (something_happens)
{
previously_selected_thing.reset();
}
}
And basically repeating this for every editable field of |
Yes unfortunately I think you currently have to do that until we investigate further. |
I believe should now be fixed by a604d4f I'm assuming it is fixed in your specific, but please confirm and if it's not the case we can reopen this. Thanks! |
Version/Branch of Dear ImGui:
imgui-node-editor docking branch
Back-ends:
imgui_impl_sdl2.cpp + imgui_impl_opengl.cpp
Compiler, OS:
Linux, gcc-12
Full config/build information:
No response
Details:
I've read the discussion on this issue and some of the related issues like #4714 , #5904, #6766 but I'm still left confused about the status of
IsItemDeactivatedAfterEdit()
.In my case I'm not using
IsItemDeactivatedAfterEdit()
to implement undo/redo, but simply because I want to delay updating my model state until my text edit is deactivated, either by pressing enter, clicking outside of it, tabbing out, a popup appearing, basically any reason the control would lose focus.Right now I do this using something that looks like this:
This has been working for
InputText
, in the sense thatIsItemDeactivatedAfterEdit()
is triggered when the control is deactivated by UI interactions, andedit_value
will hold the last edit state (whatever was shown in the control at the time of the event).For
InputTextMultiline
though, this approach does not seem to work at all. Depending on how the control was deactivated, theedit_value
may either hold the last edit state, or themodel_value
that it was assigned right before outputting the control. For example, clicking outside the control in some empty area or the UI or on a checkbox,edit_value
will hold the last edit state, but when tabbing out or clicking on a different text input control,edit_value
will hold themodel_value
. It looks as if, depending on the reason the multi-line control was changed,IsItemDeactivated()
is triggered with 1 frame delay, which means theedit_value
will already have been overwritten with themodel_value
.My feeling right now is that what I'm doing is fundamentally wrong and only works for
InputText
by accident. But the only alternative approach I can come up with is to implement my own temporary backing buffer for any text control I want to use for delayed model updates, and manually track which one was active so I can copy the model value to the edit value whenever the active control changes. In my case this could become a huge mess because most of my input controls are not fixed but output by iterating some dynamic model state, so I cannot rely on compile-time known variables to use as backing buffers for each control. It also seems like this would be duplicating effort I would expect to be on the ImGui side?Maybe I'm lacking some understanding on how to deal with widget deactivation or have not discovered some common ImGui idioms to help me out in which case I apologize adding noise, but by now I've spent way too much time trying to get ImGui to do what I want. It would be great to know if it's difficult because of some ImGui limitation/bug or because I'm doing something wrong.
The text was updated successfully, but these errors were encountered: