Home > Blockchain >  Qt Frame with movable border
Qt Frame with movable border

Time:01-14

This is probably me lacking in Google-fu.

I happen to be programming in PySide, but I assume that everyone names this feature the same across GUI toolkits. It'll certainly use the Qt nomenclature.

What's the name of the widget, frame, or whatever, that lets you have an adjustable border between two frames? Here's a screenshot from Argos -- I can grab the heavy vertical line and change the border between the "files" menu and the image window.

With a keyword, I can look it up.

enter image description here

CodePudding user response:

You are looking for QSplitter. Just add the widgets inside with addWidget(QWidget *widget)

  •  Tags:  
  • Related