How to make widgets packaged in gtk.Box (VBox / HBox), user-modifiable

Is it possible to make widgets inside a user-modifiable field? Hooray!

Example:

hbox.pack_start (my_scrolled_window_1, expand = True, fill = True, padding = 0)
hbox.pack_start (my_vseparator, expand = False, fill = False, padding = 5)
hbox.pack_start (my_scrolled_window_2, expand = True, fill = True, padding = 0)
...

I would like the user to be able to drag VSeparator to provide more or less the size of my_scrolled_window_1 / 2.

Link: http://www.pygtk.org/docs/pygtk/class-gtkbox.html

Is it possible to use the general view of a widget in gtk.Paned (VPaned / HPaned), as in Pane(w1,Pane(w2,Pane(w3,Pane(w4,w5)))), for example, for five widgets w?

+3
1

, GtkPaned (V H). , .

+3

All Articles