gimpprogress

gimpprogress — Functions for embedding the progress bar into a plug-in's GUI.

Synopsis




void        (*GimpProgressStartCallback)    (const gchar *message,
                                             gboolean cancelable,
                                             gpointer user_data);
void        (*GimpProgressEndCallback)      (gpointer user_data);
void        (*GimpProgressTextCallback)     (const gchar *message,
                                             gpointer user_data);
void        (*GimpProgressValueCallback)    (gdouble percentage,
                                             gpointer user_data);
gboolean    gimp_progress_init              (const gchar *message);
gboolean    gimp_progress_update            (gdouble percentage);
gboolean    gimp_progress_pulse             (void);
gboolean    gimp_progress_set_text          (const gchar *format,
                                             ...);
const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
                                             GimpProgressEndCallback end_callback,
                                             GimpProgressTextCallback text_callback,
                                             GimpProgressValueCallback value_callback,
                                             gpointer user_data);
gpointer    gimp_progress_uninstall         (const gchar *progress_callback);
gboolean    gimp_progress_cancel            (const gchar *progress_callback);

Description

Functions for embedding the progress bar into a plug-in's GUI.

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
                                             gboolean cancelable,
                                             gpointer user_data);

message :
cancelable :
user_data :

GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

user_data :

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
                                             gpointer user_data);

message :
user_data :

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
                                             gpointer user_data);

percentage :
user_data :

gimp_progress_init ()

gboolean    gimp_progress_init              (const 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.

message : Message to use in the progress dialog.
Returns : TRUE on success.

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.

percentage : Percentage of progress completed which must be between 0.0 and 1.0.
Returns : TRUE on success.

gimp_progress_pulse ()

gboolean    gimp_progress_pulse             (void);

Pulses 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. Use this function instead of gimp_progress_update() if you cannot tell how much progress has been made. This usually causes the the progress bar to enter \"activity mode\", where a block bounces back and forth.

Returns : TRUE on success.

Since GIMP 2.4


gimp_progress_set_text ()

gboolean    gimp_progress_set_text          (const gchar *format,
                                             ...);

Changes the text in the progress bar for the current plug-in.

This function allows to change the text in the progress bar for the current plug-in. Unlike gimp_progress_init() it does not change the displayed value.

format : a standard printf() format string
... : arguments for format
Returns : TRUE on success.

Since GIMP 2.4


gimp_progress_install ()

const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
                                             GimpProgressEndCallback end_callback,
                                             GimpProgressTextCallback text_callback,
                                             GimpProgressValueCallback value_callback,
                                             gpointer user_data);

start_callback : the function to call when progress starts
end_callback : the function to call when progress finishes
text_callback : the function to call to change the text
value_callback : the function to call to change the value
user_data : a pointer that is returned when uninstalling the progress
Returns : the name of the temporary procedure that's been installed

Since GIMP 2.2 Note that since GIMP 2.4, @value_callback can be called with negative values. This is triggered by calls to gimp_progress_pulse(). The callback should then implement a progress indicating business, e.g. by calling gtk_progress_bar_pulse().


gimp_progress_uninstall ()

gpointer    gimp_progress_uninstall         (const gchar *progress_callback);

Uninstalls a temporary progress procedure that was installed using gimp_progress_install().

progress_callback : the name of the temporary procedure to uninstall
Returns : the user_data that was passed to gimp_progress_install().

Since GIMP 2.2


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

Cancels a running progress.

This function cancels the currently running progress.

progress_callback : The name of the callback registered for this progress.
Returns : TRUE on success.

Since GIMP 2.2