PDA

View Full Version : How is it possible to add advanced user interface to applications created by QT ?



MSDi
25th February 2019, 15:31
Hi;

Please take a look at image bellow. I know that they use QT to make user interface of most 3d software like Sidefx Houdini, but I can't find any widget in QT or Quick like this.

Thanks.

13031

anda_skoa
2nd March 2019, 12:26
Resizable/Collapsible widget arrangements can be done using QSplitter.
Potentially also QDockWidget

For tabs either QTabWidget or QTabBar

For the Shelves either QToolBar or QToolButton in a horizontal layout in some other container widget.

Cheers,
_

MSDi
5th March 2019, 09:00
Resizable/Collapsible widget arrangements can be done using QSplitter.
Potentially also QDockWidget

For tabs either QTabWidget or QTabBar

For the Shelves either QToolBar or QToolButton in a horizontal layout in some other container widget.

Cheers,
_

Hi "anda_skoa" and thank you for reply;

Actually I know that features in QT, but I would like my UI looks exactly like that image I posted.

Ginsengelf
5th March 2019, 13:37
Hi, you can build your GUI using Qt Designer, and using the classes that anda_skoa mentioned.

Ginsengelf