Adding a custom GUI to Paraview

I need to add my own qt gui created in paraview. I heard about plugins with a couple that should allow this. But I do not find the textbook. How to add buttons, flags, drop-down lists in Paraview? Can someone show me an example? thanks in advance

+6
source share
1 answer

The ParaView Wiki contains a lot of information on using and configuring ParaView. In particular, see the plugins section, and the custom application entry page. They describe two different ways to customize the functionality of ParaView.

You do not indicate what language your GUI is written in, but if you can use or call Python, the easiest way to interact with ParaView can be the Python Scripting Interface .

+3
source

Source: https://habr.com/ru/post/920008/


All Articles