Re: [Gimp-developer] problem with gimp progress bar

2007-04-16 Thread coolhand
>Just create this before you do any gimp_progress calls and place it at >the bottom of the first dialog. > > >Sven If it redirects all calls to a progress bar created by me, it "kills" my problem, so thanks!!. -- View this message in context: http://www.nabble.com/problem-with-gimp-progress-

Re: [Gimp-developer] problem with gimp progress bar

2007-04-15 Thread Sven Neumann
Hi, On Fri, 2007-04-13 at 01:34 -0700, coolhand wrote: > Yes; sorry by my bad english: when a progress bar is associated with a > plugin, it don't dissapear until the plugin finish. I need to close/hide the > progress bar before the plugin ends its execution. This plugin shows a > dialog, then th

Re: [Gimp-developer] problem with gimp progress bar

2007-04-13 Thread gg
On Fri, 13 Apr 2007 12:05:22 +0200, coolhand <[EMAIL PROTECTED]> wrote: > gimp_progress_bar_init you should find something useful in this lot: grep -R gimp_progress_bar libg* libgimp/gimpui.def: gimp_progress_bar_get_type libgimp/gimpui.def: gimp_progress_bar_new libgimp/gimpprogressb

Re: [Gimp-developer] problem with gimp progress bar

2007-04-13 Thread coolhand
>Why do you expect the dialogue to disappear on its own just because you >set it's position to 100% ? This may be what is required in a general >context and it would be wrong for it to disappear automatically. Is there are in gimp two functions to get a progress bar working from/associate to

Re: [Gimp-developer] problem with gimp progress bar

2007-04-13 Thread gg
On Fri, 13 Apr 2007 10:34:24 +0200, coolhand <[EMAIL PROTECTED]> wrote: > >> gtk_widget_hide() doesn't do the trick? > > Oh! i didn't think on it... > >> Anyway, it's not considered good style to hide and show widgets. Perhaps >> you could explain us what exactly you want to achieve? >> >> >> Sv

Re: [Gimp-developer] problem with gimp progress bar

2007-04-13 Thread coolhand
>gtk_widget_hide() doesn't do the trick? Oh! i didn't think on it... >Anyway, it's not considered good style to hide and show widgets. Perhaps >you could explain us what exactly you want to achieve? > > >Sven Yes; sorry by my bad english: when a progress bar is associated with a plugin, it don'

Re: [Gimp-developer] problem with gimp progress bar

2007-04-12 Thread Sven Neumann
Hi, On Thu, 2007-04-12 at 03:42 -0700, coolhand wrote: > I use in a gimp dialog a progress bar. The problem is that when the progress > bar reaches 100%, don't disapear (only when the dialog closes). ¿There are > some way to do this before the end of the plugin? gtk_widget_hide() doesn't do the t