Customizing File/Tools Menu in Custom Application

Hi, Can someone please guide me how to customize file menu or tools menu in my custom application.
In clone 2 example File Menu only has open menu, but how to get other options as well (not the complete list)
This only returns 1 action, how to get others e.g. load state or save state etc.
QList<QAction *> qa = this->Internals->menu_File->actions();

Take a look at the SimpleParaView example.

Best,

Thanks. And is it also possible to create a new button and add it to my GUI which when clicked would call my own simulation (Written in C++) and the data generated in paraview is passed to that simulation in the form of matrix?

Yes of course.

1 Like

Thanks. I will try to figure it out