I need for my app a groupbox with a button in title. Or something equivalent.
Here is my usecase.
The app reads a datastructure and build a propery panel out of it. Some properties can be added/removed via this property panel.
If a property is a terminal, like a string or an integer, the property is represented as a classic label plus the proper widget. I can easily add a delete button to this layout.
But if a property is more complex and has itself some subproperties, it is represented as a groupbox. The original QGroupBox allow only a string as a title while I would like to add a delete button there.
I am new to QT and may be missing something, any idea ?