Re: [Gimp-developer] easy questions

2004-07-07 Thread Dave Neary
Hi Zack, Quoting Zack [EMAIL PROTECTED]: The first is, how intimately is the GIMP tied to GTK+? Very. Although the GUI code has been separated out from the internals, the GIMP depends on GTK+ to a huge extent. It is inextricably linked to glib and gobject too. The second is, I haven't looked

Lists, Arrays and Vectors [was Re: [Gimp-developer] Re: Tiny-Fu: A new plug-in for GIMP]

2004-07-07 Thread Shlomi Fish
On Wednesday 07 July 2004 05:05, Kevin Cozens wrote: On Tue, 2004-07-06 at 19:45, Sven Neumann wrote: The fact that the PDB uses arrays doesn't necessarily mean that a language binding such as Tiny-Fu needs to represent them as arrays. One of the most annoying bits of Script-Fu is that it

Re: [Gimp-developer] color management

2004-07-07 Thread Alastair M. Robinson
Hi, (Second try, this time sent to the list at large. Brains where art thou!) Sven Neumann wrote: Well, we have only one internal color space. We just need to agree on what we want to call it... My two-penneth (as author of the separate plugin, and a day-to-day user of the GIMP in a pre-press

Re: Re: [Gimp-developer] start perl server

2004-07-07 Thread kovzol
On Thu, 17 Jun 2004, Seth Burgess wrote: I'd recommend putting the call inside an 'eval' block, so that it failing doesn't stop the execution of the script. Sorry, I'm here again... ;-) If I run the attached script without parameters, then I can see that gimp appears and I can generate my

[Gimp-developer] OSCon attendance

2004-07-07 Thread Dave Neary
Hi all, As everyone knows (hopefully), the GIMP won an OSI award recently. Part of the results of that is that the GIMP is one of the candidates for the annual golden award (with a large cash prize) which will be presented to the winning project in Portland at the O'Reilly Open Source

Re: [Gimp-developer] easy questions

2004-07-07 Thread David Odin
On Wed, Jul 07, 2004 at 10:06:58AM +0200, David Neary wrote: Hi Zack, Quoting Zack [EMAIL PROTECTED]: The first is, how intimately is the GIMP tied to GTK+? Very. Although the GUI code has been separated out from the internals, the GIMP depends on GTK+ to a huge extent. It is

Re: Lists, Arrays and Vectors [was Re: [Gimp-developer] Re: Tiny-Fu: A new plug-in for GIMP]

2004-07-07 Thread Kevin Cozens
At 05:17 AM 07/07/2004, Shlomi Fish wrote: Are you sure using lists instead of vectors is the right thing to do? Lists are linked lists and as such accessing the i'th element is O(i). In vectors it is O(1). This can cause an order of complexity increase in handling them. No, I'm not sure. For the

[Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread Christoph Lutz
Hi, I think, a very common problem is to put particular points of two (or more) different pictures/drawables on top of each other. This could be done by a perspective transformation and is useful, if you for example want to create an animated gif out of many slightly different pictures

Re: [Gimp-developer] Script-fu-server and queuing

2004-07-07 Thread pcg
Because the Gimp was not originally designed as a server, it does not follow some conventions that are necessary for such a mode. This includes the issue of managing shared resources among different threads of execution. A few of the resources that are not 'thread-safe' include the

Re: [Gimp-developer] OSCon attendance

2004-07-07 Thread Carol Spears
On Wed, Jul 07, 2004 at 04:06:38PM +0200, Dave Neary wrote: As everyone knows (hopefully), the GIMP won an OSI award recently. Part of the results of that is that the GIMP is one of the candidates for the annual golden award (with a large cash prize) which will be presented to the winning

Re: [Gimp-developer] easy questions

2004-07-07 Thread Dave Neary
Hi, Quoting David Odin [EMAIL PROTECTED]: The second is, I haven't looked at the code at all, but is the GIMP multithreaded and/or does it absolutely require a multitasking OS? You won't be able to use any plugin without a multitasking OS... Won't the plug-in just become modular over

Re: [Gimp-developer] OSCon attendance

2004-07-07 Thread Dave Neary
Hi, Quoting Carol Spears [EMAIL PROTECTED]: On Wed, Jul 07, 2004 at 04:06:38PM +0200, Dave Neary wrote: Part of the results of that is that the GIMP is one of the candidates for the annual golden award (with a large cash prize) which will be presented to the winning project in

Re: [Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread William Skaggs
Christof Lutz writes: Could your help me in that point? I just need to know how to grab the point-coordinates of a click to an image! If you go into the plug-ins/common directory of the source and grep for GDK_BUTTON_PRESS, you will find plenty of examples that will quickly show you how to do

[Gimp-developer] what's required to develop GIMP

2004-07-07 Thread Chamal De Silva
Hi, I am completly new to GIMP development. And I would like to be a gimp developer. Please give me information on the following quetion. 1. What is the programming language used to develop gimp. 2. What are the tools and compilers that i need to compile gimpe source code. 3. What is the latest

Re: [Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread Sven Neumann
Hi, William Skaggs [EMAIL PROTECTED] writes: Christof Lutz writes: Could your help me in that point? I just need to know how to grab the point-coordinates of a click to an image! If you go into the plug-ins/common directory of the source and grep for GDK_BUTTON_PRESS, you will find

Re: [Gimp-developer] what's required to develop GIMP

2004-07-07 Thread Raphaƫl Quinet
On Wed, 7 Jul 2004 09:41:48 -0700, Chamal De Silva [EMAIL PROTECTED] wrote: I am completly new to GIMP development. And I would like to be a gimp developer. Please give me information on the following quetion. 1. What is the programming language used to develop gimp. Most of it is written

Re: [Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread Christoph Lutz
Sven Neumann wrote: Hi, William Skaggs [EMAIL PROTECTED] writes: Christof Lutz writes: Could your help me in that point? I just need to know how to grab the point-coordinates of a click to an image! If you go into the plug-ins/common directory of the source and grep for GDK_BUTTON_PRESS, you

[Gimp-developer] the gnome foundation and board

2004-07-07 Thread Carol Spears
someone should say something nice about the gnome foundation and their help in getting the gimp conference to eh, be. they were also very nice to have visit in that one meeting. the very best thing i can say about the event and the gnome foundations influence on it is that Tim Ney was a pleasure

Re: [Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread William Skaggs
Christof Lutz writes: yes, that's true and it's a pity that there is no way :-) So what do you suggest: I want to mark particular points in one or more images and use the marked coordinates in my plugin-dialog. Do you think it's the best to create picture-buttons with more or less small

Re: [Gimp-developer] plugin to put points on top of each other

2004-07-07 Thread Sven Neumann
Hi, William Skaggs [EMAIL PROTECTED] writes: if (back_pixbuf) gdk_draw_pixbuf (preview-window, preview-style-fg_gc[GTK_STATE_NORMAL], back_pixbuf, 0, 0, 0, 0, gdk_pixbuf_get_width (back_pixbuf),

Re: Lists, Arrays and Vectors [was Re: [Gimp-developer] Re: Tiny-Fu: A new plug-in for GIMP]

2004-07-07 Thread Markus Triska
Are you sure using lists instead of vectors is the right thing to do? Lists are linked lists and as such accessing the i'th element is O(i). In vectors it is O(1). This can cause an order of complexity increase in handling them. This is true, but not much of a problem, since most scripts

[Gimp-developer] CVS updates?

2004-07-07 Thread Brion Vibber
Is Gimp anonymous CVS on a delayed copy? I'm assuming so based on the fact that I can't seem to get at the most recent commits through a cvs up -dP or cvs log. If there's something in the developer FAQ which is explicit about this, please point me to it so I can feel stupid. I did look! Also,