I am trying to create a GTK python app for configuring settings and I have been looking at creating a GTK design for the app using Glade.
So far I have created a design with 5 notebooks and it looks somewhat like this:
However, I actually want to use a Gtktoolbar with primary-style toolbar buttons that open the settings in the adjacent pane when the Gtktoolbar buttons are clicked. The current Gtkprimarytoolbar implementation looks like this:
I am very new to Gtk designing and I tried setting the on_tool_unitysettings_clicked
signal to handle nb_unitysettings
. I'll admit I don't know what I am doing.
The idea is when I click on the toolbar button, the related notebook gets loaded in the pane below the toolbar buttons. How exactly do I do that? I would be very much happy with a Glade solution.