GIMP Library Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
gboolean gimp_progress_init (gchar *message); gboolean gimp_progress_update (gdouble percentage); gchar* gimp_temp_PDB_name (void); gboolean gimp_plugin_domain_register (gchar *domain_name, gchar *domain_path); gboolean gimp_plugin_help_register (gchar *help_path); |
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.
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.
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.
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.
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.