2
h4xx3r
6y

Are there out solutions to create cross-platform GUIs withing a GUI (like Blend in Visual Studio) which does interface with C++?(leave out Qt)

Searching the web I only found GUI libraries in C++, which are big turnoff for designers.

Further research leaded me to a viable solution that seems haven't been built yet anywhere, I'm taking about OpenGL\Vulkan as the engine for a cross-platform GUI builder within a GUI.

Comments
  • 1
    I know some programs have c++ backends and a c# frontend. If you don’t want to wait for dotNet core 3, you can try https://github.com/AvaloniaUI/... or make a browser GUI.
  • 0
    @Artemix great, you need to build from scratch on Linux to make use of it, and Windows binaries are lagging behind a good amount of versions.

    I'll give it a try anyway, thanks.
  • 0
    @bkwilliams @Artemix anyway, if this is the state of the affairs, it's pretty deluding 🙁
  • 1
    @okstar there is no true cross platform for c++, at best you can do it make some of the business layer common but your presentation layer will have to be platform specific. A MVC or like design will give you the best outcome.
Add Comment