Details
gimp_progress_init ()
gboolean gimp_progress_init (gchar *message); |
Initializes the progress bar for the current plug-in.
Initializes the progress bar for the current plug-in. It is only
valid to call this procedure from a plug-in.
gimp_progress_update ()
gboolean gimp_progress_update (gdouble percentage); |
Updates the progress bar for the current plug-in.
Updates the progress bar for the current plug-in. It is only valid
to call this procedure from a plug-in.
gimp_temp_PDB_name ()
gchar* gimp_temp_PDB_name (void); |
Generates a unique temporary PDB name.
This procedure generates a temporary PDB entry name that is
guaranteed to be unique. It is many used by the interactive popup
dialogs to generate a PDB entry name.
gimp_plugin_domain_register ()
gboolean gimp_plugin_domain_register (gchar *domain_name,
gchar *domain_path); |
Registers a textdomain for localisation.
This procedure adds a textdomain to the list of domains Gimp
searches for strings when translating its menu entries. There is no
need to call this function for plug-ins that have their strings
included in the gimp-std-plugins domain as that is used by default.
If the compiled message catalog is not in the standard location, you
may specify an absolute path to another location. This procedure can
only be called in the query function of a plug-in and it has to be
called before any procedure is installed.
gimp_plugin_help_register ()
gboolean gimp_plugin_help_register (gchar *help_path); |
Register a help path for a plug-in.
This procedure changes the help rootdir for the plug-in which calls
it. All subsequent calls of gimp_help from this plug-in will be
interpreted relative to this rootdir. This procedure can only be
called in the query function of a plug-in and it has to be called
before any procedure is installed.