Gimp.PlugIn.prototype.add_temp_procedure
function add_temp_procedure(procedure: Gimp.Procedure): void {
// Gjs wrapper for gimp_plug_in_add_temp_procedure()
}
This function adds a temporary procedure to plug_in. It is usually called from a Gimp.PDBProcType.persistent procedure's [vfunc@Procedure.run].
A temporary procedure is a procedure which is only available while one of your plug-in's "real" procedures is running.
The procedure's type _must_ be Gimp.PDBProcType.temporary or the function will fail.
NOTE: Normally, plug-in communication is triggered by the plug-in and the GIMP core only responds to the plug-in's requests. You must explicitly enable receiving of temporary procedure run requests using either [method@PlugIn.persistent_enable] or [method@PlugIn.persistent_process]. See their respective documentation for details.
Since 3.0
- procedure
A Gimp.Procedure of type Gimp.PDBProcType.temporary.