Giter VIP home page Giter VIP logo

Comments (8)

zMidair avatar zMidair commented on July 18, 2024 1

How can I detect when a Combo() is opened?

It's also worth explaining why you need this, as this might be a XY Problem question.

I need this since im using the Combo to choose a file in a folder and I want to update the list when the Combo is opened.

from imgui.

GamingMinds-DanielC avatar GamingMinds-DanielC commented on July 18, 2024

If you can rework your call to Combo() to a BeginCombo() / EndCombo() pair, the combo is open if BeginCombo() returns true. You would then have to submit your items yourself, but you can look at the Combo() implementation for how to do that.

If you want to keep using the more compact Combo() function, you can calculate the popup id with ImHashStr("##ComboPopup", 0, GetItemID()) and check if that popup is currently open.

from imgui.

ocornut avatar ocornut commented on July 18, 2024

How can I detect when a Combo() is opened?

It's also worth explaining why you need this, as this might be a XY Problem question.

from imgui.

zMidair avatar zMidair commented on July 18, 2024

If you can rework your call to Combo() to a BeginCombo() / EndCombo() pair, the combo is open if BeginCombo() returns true. You would then have to submit your items yourself, but you can look at the Combo() implementation for how to do that.

If you want to keep using the more compact Combo() function, you can calculate the popup id with ImHashStr("##ComboPopup", 0, GetItemID()) and check if that popup is currently open.

Can you give me an example?

from imgui.

ocornut avatar ocornut commented on July 18, 2024

I need this since im using the Combo to choose a file in a folder and I want to update the list when the Combo is opened.

Then you should use if (ImGui::IsWindowAppearing())

from imgui.

GamingMinds-DanielC avatar GamingMinds-DanielC commented on July 18, 2024

Can you give me an example?

As I said, you can look at the implementation of Combo() for an example of how to use those functions. After all, that is just a wrapper for the step by step approach. Here is the exact place:
https://github.com/ocornut/imgui/blob/master/imgui_widgets.cpp#L1951-L1978

As Omar hinted at, you can use IsWindowAppearing() to test if a window has just been opened. Right after BeginCombo() returns true is the best place for that, then you are testing if the opened popup is just appearing.

from imgui.

zMidair avatar zMidair commented on July 18, 2024

I need this since im using the Combo to choose a file in a folder and I want to update the list when the Combo is opened.

Then you should use if (ImGui::IsWindowAppearing())

Doesnt it need a parameter? Or where should I put it? Before or after the Combo is created

from imgui.

zMidair avatar zMidair commented on July 18, 2024

Can you give me an example?

As I said, you can look at the implementation of Combo() for an example of how to use those functions. After all, that is just a wrapper for the step by step approach. Here is the exact place: https://github.com/ocornut/imgui/blob/master/imgui_widgets.cpp#L1951-L1978

As Omar hinted at, you can use IsWindowAppearing() to test if a window has just been opened. Right after BeginCombo() returns true is the best place for that, then you are testing if the opened popup is just appearing.

Alr thanks, I will try this

from imgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.