I'm writing an app for gnome which will support plugins. Each plugin will contain a glade file and a python script.
How do I embed the glade file from the plugin in the main interface.
Plugin glade files should contain a page/tab and will be embeded into a notebook in the main interface.
please help.
The best way would be to make the plugins load the glade file themselves and have a function that the main program can call to get the page/tab. That way the plugin can connect all the signals it needs to. gtk.Builder documentation.