I'm new in wxWidgets so I'm trying to make the window like in CMake GUI. How can I divide the area into two self-resizable areas:
I'm using linux for development & cmake. I'm not using any UI editor
PS: Sory for my English, It's not my native lang :o
The way to create a frame where the elements expand like in CMake GUI is to use a wxSplitterWindow together with sizers and use the proportion in sizer flags constructor to specify how much each item should expand.
Here's a short example:
On windows, this looks like this:
I haven't copied every widget from the CMake GUI frame, but I think there's enough there to give the idea of what's going on.