Max Frai
Max Frai

Reputation: 64276

Qt interface based on panels

I want to build interface which looks like this:enter image description here

There are panels QDockPanel to the sides. The main question is how to make main viewport (which is dark in the screen). When I resize, for example, right panel, it also changes the size. Could I use QDockPanel with layouts to achieve this?

Upvotes: 0

Views: 128

Answers (1)

user362638
user362638

Reputation:

Use QMainWindow. It does exactly that. The "main viewport" is called a central widget in the QMainWindow.

Upvotes: 1

Related Questions