Old and new [Re: [Gimp-developer] new default icon theme proposal]

2006-06-17 Thread Alan Horkan

On Thu, 15 Jun 2006, Jakub Steiner wrote:

 Date: Thu, 15 Jun 2006 14:16:26 +0200
 From: Jakub Steiner [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: gimp-developer@lists.xcf.berkeley.edu
 Subject: [Gimp-developer] new default icon theme proposal

 Hi GIMP developers,
 I write to propose a new default icon set for GIMP 2.4. As GIMP is a
 multiplatform application it will in my view benefit greatly from an
 icon set that follows the Tango style guidelines [1].

Will the old icons be offered as a seperate theme set?

If the answer is yes then I look forward to seeing both themes included
soon.  Even if your new Tango theme is not ready/complete enough to be
immediately set as the default it would be great to have the option to
start live testing it alongside the existing icons.

-- 
Alan H.
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: Old and new [Re: [Gimp-developer] new default icon theme proposal]

2006-06-17 Thread Dalai Felinto
This theme:http://art.gnome.org/themes/icon/1261Is based in Tango too, what is the differences??Regards,Dalai
2006/6/17, Alan Horkan [EMAIL PROTECTED]:
On Thu, 15 Jun 2006, Jakub Steiner wrote: Date: Thu, 15 Jun 2006 14:16:26 +0200 From: Jakub Steiner [EMAIL PROTECTED] Reply-To: 
[EMAIL PROTECTED] To: gimp-developer@lists.xcf.berkeley.edu Subject: [Gimp-developer] new default icon theme proposal Hi GIMP developers,
 I write to propose a new default icon set for GIMP 2.4. As GIMP is a multiplatform application it will in my view benefit greatly from an icon set that follows the Tango style guidelines [1].
Will the old icons be offered as a seperate theme set?If the answer is yes then I look forward to seeing both themes includedsoon.Even if your new Tango theme is not ready/complete enough to beimmediately set as the default it would be great to have the option to
start live testing it alongside the existing icons.--Alan H.___Gimp-developer mailing listGimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: Old and new [Re: [Gimp-developer] new default icon theme proposal]

2006-06-17 Thread Alan Horkan

On Sat, 17 Jun 2006, Dalai Felinto wrote:

 Date: Sat, 17 Jun 2006 11:00:13 -0300
 From: Dalai Felinto [EMAIL PROTECTED]
 To: Alan Horkan [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED], Not Photoshop gimp-developer@lists.xcf.berkeley.edu
 Subject: Re: Old and new [Re: [Gimp-developer] new default icon theme
 proposal]

 This theme:
 http://art.gnome.org/themes/icon/1261

 Is based in Tango too, what is the differences??

That is a Gnome theme.

Jimmac is working on a theme to replace the icons in the GNU Image
Manipulation Program which is more specific and has its own internal icon
themes.

-- 
Alan
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer


Re: [Gimp-developer] PixelRegions?

2006-06-17 Thread Nathan Summers

On 6/16/06, Frédéric [EMAIL PROTECTED] wrote:

On Friday 16 June 2006 21:41, Michael Thaler wrote:

 Can someone explain to me why the code iterates over all pixels in a
 region and then over all regions and not just over all pixels in a
 layer? What are PixelRegions actually, what are they used for and why
 they are needed here? (I had a look at
 http://developer.gimp.org/api/2.0/app/app-pixel-region.html but this
 doesn't explain what they are for)

As far as I understand, a region can be what you want; it can cover a
entire layer, or just a small part (like the preview for plug-ins. Have a
look here:

http://developer.gimp.org/writing-a-plug-in/2/index.html

When you have initialized a region, you can access it pixel by pixel, row
by row, or tile by tile, depending what you want to do (I guess each
method has advantages, according to the filter you want to write).


I think it's important to mention that if your algorithm supports it,
using pixel_regions_process () or the new gimp_rgn_iterate() functions
is by far the easiest and best performing way to use pixel regions.
If you use them on more than one pixel region, the regions are
registered such that through each iteration, all of the regions are
pointing to the same part.  This makes operations like copying from
one layer to another a snap to write.  You might want to look at
tile.c or threshold_alpha.c in the plug-ins/common directory for some
examples.

Rockwalrus
___
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer