I am rather new to desktop GUI development.
I am trying to get a frame with 3 parallel vertical panels, all expanding vertically to fill the window.
I want the first two panels not to be flexible but to have a fixed size.
Ex:
Fixed W.
|========|
############################
# # # # ^
#Fix.#Fix.# # |
#|--|#|--|# <--Flexible--> # Flexible vertically all 3 panels.
# # # # |
# # # # v
############################
How can I obtain this layout? I am tried Grid, Vertical, Horizontal but I think I got it all spaghetti-like and confused.
Thank you.
You need a
You just have to set a fixed width for your fixed widgets (in the left).
Here is a complete working example in C++:
And the screenshot: