RSS/Atom feed Twitter
Site is read-only, email is disabled

Hide progress bar

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

Hide progress bar Cristi Balas 06 Oct 16:08
  Hide progress bar Aurimas Juška 06 Oct 20:30
  Hide progress bar Sven Neumann 06 Oct 20:31
Cristi Balas
2009-10-06 16:08:28 UTC (about 15 years ago)

Hide progress bar

Hi!
I have a perl plugin that calls gimp-file-load-layer. and when i call this function, a progress bar apears in the status bar (if the status bar is hidden, then it's temporary made visible). I want my plugin not to display any progress bar / status bar.

Is gimp-progress-install function going to help me? if so, how do i use it?

I looked everywhere for this function, but can't find a usage scenario to test it if it's gonna help me.
Thanks

Aurimas Juška
2009-10-06 20:30:56 UTC (about 15 years ago)

Hide progress bar

Hi,

On Tue, Oct 6, 2009 at 5:08 PM, Cristi Balas wrote:

I have a perl plugin that calls gimp-file-load-layer. and when i call this function, a progress bar apears in the status bar (if the status bar is hidden, then it's temporary made visible). I want my plugin not to display any progress bar / status bar.

Is gimp-progress-install function going to help me? if so, how do i use it?

You can simply create a hidden GimpProgressBar, which will handle all the difficulties of gimp-progress-install for you. All progress / status info will go to the created GimpProgressBar, but user will not see it.

Sven Neumann
2009-10-06 20:31:27 UTC (about 15 years ago)

Hide progress bar

On Tue, 2009-10-06 at 17:08 +0300, Cristi Balas wrote:

Hi!
I have a perl plugin that calls gimp-file-load-layer. and when i call this function, a progress bar apears in the status bar (if the status bar is hidden, then it's temporary made visible). I want my plugin not to display any progress bar / status bar.

Is gimp-progress-install function going to help me? if so, how do i use it?

You can use gimp_progress_install() to take over responsibility of the progress handling. Then your plug-in can just do nothing from the installed callbacks and the result will be no progress bar.

Sven