Gimp.Procedure.set_documentation
@accepts(Gimp.Procedure, unicode, unicode, unicode)
@returns(none)
def set_documentation(self, blurb, help, help_id):
# Python wrapper for gimp_procedure_set_documentation()
blurb is used as the self's tooltip when represented in the UI, for example as a menu entry.
For translations of tooltips to work properly, blurb should only be marked for translation but passed to this function untranslated, for example using N_("Blurb"). GIMP will look up the translation in the textdomain registered for the plug-in.
help is a free-form text that's meant as documentation for developers of scripts and plug-ins.
Sets various documentation strings on self.
Since 3.0
- self
- blurb
The self's blurb.
- help
The self's help text.
- help_id
The self's help ID.