Re: [Gimp-developer] How to edit context menu?

2010-06-26 Thread Bear
hi, I am very very thankful for your help!!! After 3 days working, I already done this job! Without your help, I wont finish it. Thx so much! -- Bear 2010-06-26 - From:Bill Skaggs Send Date

Re: [Gimp-developer] How to edit context menu?

2010-06-20 Thread Bear
or new window and so on. -- Bear 2010-06-21 - From:Sven Neumann Send Date:2010-06-20 04:31:11 To:Bear CC:gimp-developer Subject:Re: [Gimp-developer] How to edit context menu? On Sat, 2010-06-19

[Gimp-developer] How to edit context menu?

2010-06-19 Thread Bear
, gpointer popdown_data) but how to do next? thx!! -- Bear 2010-06-19 ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer

Re: [Gimp-developer] How to edit context menu?

2010-06-19 Thread Bear
hi, Er... but my work is to make it popup something like a new window instead the original context menu... Could you help me? thx! -- Bear 2010-06-19 - From:Michael Natterer Send Date:2010

Re: [Gimp-developer] How to create a new tool?

2010-06-14 Thread Bear
hi, Thx for ur answer. I have added my new file into Makefile. I fork a new tool because my teacher asked me to do... -- Bear 2010-06-14 - From:Alexia Death Send Date:2010-06-14 15:53:08

Re: [Gimp-developer] How to create a new tool?

2010-06-14 Thread Bear
! -- Bear 2010-06-14 - From:Bill Skaggs Send Date:2010-06-14 13:56:08 To:Bear CC:gimp-developer Subject:Re: [Gimp-developer] How to create a new tool? At a minimum, you need to add your new

[Gimp-developer] How to create a new tool?

2010-06-13 Thread Bear
/gimptext2.c app/tools/gimptext2.h app/tools/gimptext2-editor.c app/tools/gimptext2-editor.h When I recompiled GIMP, only one text tool is shown. What shall I do? thx! -- Bear 2010-06-14 ___ Gimp-developer mailing list Gimp-developer

[Gimp-developer] About GSoC

2008-03-23 Thread bear
On Sun March 23 2008 19:39:42 Sven Neumann wrote: I might be totally wrong on this, but as far as I know GTK+ applications use the GTK+ input methods framework. The details of SCIM should be hidden behind that abstraction. We should definitely continue to do this, on the canvas, as in our text

[Gimp-developer] how layers actually get merged?

2004-09-20 Thread bear
hi, Assume there are four layers, all of which are in Normal mode and grayscale. for a specific pixel in each layer, Their intensity and alpha values(mapped to [0,1]) are i1,a1 i2,a2 i3,a3 i4(background) the merged intensity is ((i1*a1+i2*(1-a1))*a2+i3*(1-a2))*a3+i4*(1-a3) am I correct? Thanks!

[Gimp-developer] how floating selection actually anchor?

2004-09-19 Thread bear
in PDB, Doc of gimp-floating-sel-anchor reads: This procedure anchors the floating selection to its associated rawable. This is similar to merging with a merge type of ClipToBottomLayer. The floating selection layer is no longer valid after this operation. What is the exact merging algorithm