Re: [Gimp-developer] Where to post rotate brushes bugfix?

2009-09-28 Thread Alexia Death
On Fri, Sep 25, 2009 at 11:42 PM, Tal ta...@inbox.com wrote: I found and solved a new bug in the bilinear rotate transform algorithm that sometimes caused artifacting on brush edges for brushes rotated 90, -90, -180, 180 degrees. Since the previous bugzilla report

Re: [Gimp-developer] Where to post rotate brushes bugfix?

2009-09-28 Thread Michael Natterer
On Fri, 2009-09-25 at 12:42 -0800, Tal wrote: I found and solved a new bug in the bilinear rotate transform algorithm that sometimes caused artifacting on brush edges for brushes rotated 90, -90, -180, 180 degrees. Since the previous bugzilla report

Re: [Gimp-developer] Peter's single-window proposal

2009-09-28 Thread peter sikking
Jon A. Cruz wrote: I think I might have one that can count as subtly different. Working on a prime image and drawing pieces, reference, etc from other images. Especially since I tend to think spatially, this is one I do a lot. I also tend to combine this workflow with others you have

Re: [Gimp-developer] Peter's single-window proposal

2009-09-28 Thread saulgoode
Citing a passage regarding the image parade on Peter Sikking's blog post: What I find very intriguing is that the notion of which file is open starts to blur. Having a file being loaded from disk becomes a side effect of clicking it to make it the current file. Similarly GIMP can decide

[Gimp-developer] Can I have tabs and Apply button in the plugin GUI?

2009-09-28 Thread Louise Hoffman
Dear developers, Can someone tell if this GUI design is possible? http://pastebin.com/m1ccbcd06 The reason I would like to have tabs is because of the work flow, and the values in the Modify tab will be different depending to the loaded audio[0] file. If tabs is possible, can I also have the

Re: [Gimp-developer] We should go for a single-window mode in 2.8

2009-09-28 Thread Cole
/ For developers: CurlyAnkles gtk+ lib has tab/tile widgets I'm talking // about: URL. / Eeek, here is the missing URL: http://curlyankles.sourceforge.net/widgets_docking.html Alexandre Hello, I think the term single-window mode is potentially confusing. It's how you dock the windows

Re: [Gimp-developer] Where to post rotate brushes bugfix?

2009-09-28 Thread Martin Nordholts
On 09/28/2009 10:06 AM, Michael Natterer wrote: On Fri, 2009-09-25 at 12:42 -0800, Tal wrote: I found and solved a new bug in the bilinear rotate transform algorithm that sometimes caused artifacting on brush edges for brushes rotated 90, -90, -180, 180 degrees. Since the previous bugzilla

Re: [Gimp-developer] Can I have tabs and Apply button in the plugin GUI?

2009-09-28 Thread Martin Nordholts
On 09/28/2009 02:21 PM, Louise Hoffman wrote: Dear developers, Can someone tell if this GUI design is possible? http://pastebin.com/m1ccbcd06 The reason I would like to have tabs is because of the work flow, and the values in the Modify tab will be different depending to the loaded

Re: [Gimp-developer] Can I have tabs and Apply button in the plugin GUI?

2009-09-28 Thread Louise Hoffman
Yes it's possible, you can create any GTK+ interface in plug-ins. To get tabs you'd use GtkNotebook. You can hook any code to an Apply button, including code that takes the active tab into account. Hi Martin, Thank you very much for the detailed answer. That is just perfect =) Can I ask

Re: [Gimp-developer] We should go for a single-window mode in 2.8

2009-09-28 Thread peter sikking
Cole wrote: I think the term single-window mode is potentially confusing. It's how you dock the windows together that gives the user the *perceived* single-window or multiple-window mode. well, if I have to formulate it, then single-window is users' preference for a flat working surface,

Re: [Gimp-developer] Peter's single-window proposal

2009-09-28 Thread peter sikking
saul goode wrote: Citing a passage regarding the image parade on Peter Sikking's blog post: What I find very intriguing is that the notion of which file is open starts to blur. It should be noted that many plug-ins and filters provide dialogs in which the user is prompted (via drop-down

Re: [Gimp-developer] Can I have tabs and Apply button in the plugin GUI?

2009-09-28 Thread Louise Hoffman
Yes, just pass NULL to the image_type argument to gimp_install_procedure() [1] That's how file plug-ins and plug-ins under File - Create for example is able to run without any image opened. That's much better than I expected =) I will start on that tomorrow. Thanks a lot =) Hugs, Louise

Re: [Gimp-developer] Peter's single-window proposal

2009-09-28 Thread Daniel Hornung
On Monday 28 September 2009, saulgo...@flashingtwelve.brickfilms.com wrote: It should be noted that many plug-ins and filters provide dialogs in which the user is prompted (via drop-down lists) to select images/layers/channels/paths from amongst those available in currently opened images. It