for the curious ones, this is how the color-theme editor looks like...
it is just imgui doing the heavy lifting, yes :)
love that little library for such things
@xinniw on DPF (the plugin framework I created and used here for the new plugin), one of the rendering modes is using opengl, so plugging imgui for that was simple enough, check https://github.com/DISTRHO/DPF-Widgets/blob/main/opengl/DearImGui.cpp for the implementation.
I only needed to do that once, now everytime I need some imgui things is just creating a ImGuiWidget based class and do custom drawing on the virtual draw function.
See https://github.com/trummerschlunk/PodcastPlugins/blob/main/plugins/ui-widgets/InspectorWindow.hpp for the theme editor, its just a few lines
@falktx what was your experience hooking up imgui for use in a car like? (I've been using juce for UI and looking for simpler alternatives)