GimpUi.ProcedureDialog.fill_notebook_list

@accepts(GimpUi.ProcedureDialog, unicode, [unicode], [unicode])
@returns(Gtk.Widget)
def fill_notebook_list(self, container_id, label_list, page_list):
    # Python wrapper for gimp_procedure_dialog_fill_notebook_list()
  

Creates and populates a new Gtk.Notebook with widgets corresponding to every listed properties. This is similar of how GimpUi.ProcedureDialog.fill_list works except that it creates a new widget which is not inside self itself.

The container_id must be a unique ID which is neither the name of a property of the Gimp.ProcedureConfig associated to self, nor is it the ID of any previously created container. This ID can later be used together with property names to be packed in other containers or inside self itself.

self

the GimpUi.ProcedureDialog.

container_id

a container identifier.

label_list

the list of label IDs.

page_list

the list of page IDs.

Returns