GimpUi.ProcedureDialog.prototype.fill_paned

function fill_paned(container_id: String, orientation: Gtk.Orientation, child1_id: String, child2_id: String): Gtk.Widget {
    // Gjs wrapper for gimp_procedure_dialog_fill_paned()
}
  

Creates and populates a new Gtk.Paned containing widgets corresponding to child1_id and child2_id. This is similar of how GimpUi.ProcedureDialog.prototype.fill works except that it creates a new widget which is not inside dialog itself.

The container_id must be a unique ID which is neither the name of a property of the Gimp.ProcedureConfig associated to dialog, 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 dialog itself.

container_id

a container identifier.

orientation
child1_id

the first child's ID.

child2_id

the second child's ID.

Returns

the Gtk.Paned representing @property. The object belongs to dialog and must not be freed.