Re: [Gimp-developer] How to best use Bugzilla

2011-03-18 Thread Eric Grivel
On 03/18/2011 04:03 AM, Michael Natterer wrote: > > Generally, I rather like to have more than less bugs on a milestone, > because there is nothing more frustrating than a huge list of > bugs with milestone "---". It looks as if we simply don't care at all. > For a bug reporter,it would be frustr

Re: [Gimp-developer] How to best use Bugzilla

2011-03-18 Thread Michael Natterer
On 03/18/2011 07:43 AM, Martin Nordholts wrote: > Hi, > > I think we should discuss how we make best use of Bugzilla. Except for > tracking bugs, I'd like us to use bugzilla for > >a) Keeping track of what is important to fix for a given release >b) Keeping track of what bugs among all our

Re: [Gimp-developer] How to use UNDO stack?

2010-12-14 Thread Sven Neumann
On Tue, 2010-12-14 at 14:43 +0100, Jose Antonio Muñoz Montero wrote: > The actions to be made on an image is saved in the undo history.As I > read, the Undo stack temporarily stores these actions, but do not know > in what format. I want to retrieve this data from the Undo stack in a > text file.

Re: [Gimp-developer] How to use UNDO stack?

2010-12-09 Thread Bill Skaggs
There is no way to manipulate the undo stack in a plug-in. If you want to do something with it in the main program, please explain more about what you want to do. -- Bill > ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU https:

Re: [Gimp-developer] How to include a Glade user interface in a plugin?

2010-11-08 Thread Martin Nordholts
On 11/08/2010 09:01 PM, Alessandro Francesconi wrote: > Hello guys, i'm recently into the Gimp Plugin development and I'm trying > to write a plug that shows a new window to interact with the user. > I designed it with Glade 3.6 to make it simple, then I saved the > interface in GtkBuilder format "

Re: [Gimp-developer] how to do fast drawing in plugin, pdb paintbrush api is slow

2010-10-06 Thread Alexia Death
On Wed, Oct 6, 2010 at 4:06 PM, 黄毅 wrote: > Make the layer invisible don't make it better, using pycairo does. > > With pycairo, drawing random lines with random alpha value on gtk surface, > 10 strokes only take 21 seconds. Paint core offers a lot more features than cairo stroking and becaus

Re: [Gimp-developer] how to do fast drawing in plugin, pdb paintbrush api is slow

2010-10-06 Thread 黄毅
On Wed, Oct 6, 2010 at 2:39 PM, Alexia Death wrote: > On Wed, Oct 6, 2010 at 8:22 AM, 黄毅 wrote: >> I'm trying to write a plugin to apply effects like >> this(http://mrdoob.com/projects/harmony/) to any path. >> I've done the coding, but it runs too slow, it speed several minutes >> to draw 7000 l

Re: [Gimp-developer] how to do fast drawing in plugin, pdb paintbrush api is slow

2010-10-05 Thread Alexia Death
On Wed, Oct 6, 2010 at 8:22 AM, 黄毅 wrote: > I'm trying to write a plugin to apply effects like > this(http://mrdoob.com/projects/harmony/) to any path. > I've done the coding, but it runs too slow, it speed several minutes > to draw 7000 lines on my laptop. > Currently i use following methods to d

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

2010-06-26 Thread Bear
:2010-06-22 06:45:50 To:Bear CC:gimp-developer Subject:Re: Re: [Gimp-developer] How to edit context menu? It isn't as bad as it looks. The im_menu stuff all relates to a special submenu, and you can discard it. The rest you can replicate as is (with the obvious changes). Here is a quick su

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

2010-06-21 Thread Bill Skaggs
It isn't as bad as it looks. The im_menu stuff all relates to a special submenu, and you can discard it. The rest you can replicate as is (with the obvious changes). Here is a quick summary of how to create a context menu for a tool: 1) Create a get_popup handler similar to gimp_text_tool_get_p

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

2010-06-20 Thread Bear
hi, thx for your help!!! I will read the code you referred. Thx a lot. But it seems like that gimp_text_tool_get_popup is very complex... -- Bear 2010-06-21 - From:Bill Skaggs Send Date:2010

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

2010-06-20 Thread Bear
hi, Maybe my poor english made you confused about my task? I have some knowledge on gtk+. My task is to response the right-click message on canvas. Is this clear? The original responding is to popup a menu which as same as the menubar. I wanna modify it. For example, to popup a message box or ne

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

2010-06-19 Thread Bill Skaggs
If you want to do this for your new tool, you might benefit from looking at gimptexttool.c -- the function gimp_text_tool_get_popup is what sets up the context menu for the text tool. It is invoked in the gimp_text_tool_class_init function, in the line that reads tool_class->get_popup = gimp_te

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

2010-06-19 Thread Sven Neumann
On Sat, 2010-06-19 at 23:49 +0800, Bear wrote: > 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! Are you familiar with GTK+? If not, please read the documentation and tutorials before you ask here. We can certa

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 edit context menu?

2010-06-19 Thread Michael Natterer
On Sat, 2010-06-19 at 20:29 +0800, Bear wrote: > hi, > I wanna edit my GIMP's context menu. Now the context menu is as seems as the > menu bar. I wanna use my customized context menu to replace the original one. > I found some clue in > app/widgets/gimpuimanager.c:573 > which say: > void > gimp_ui

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

2010-06-14 Thread oliver
Hi, On Mon, Jun 14, 2010 at 11:39:27AM +0800, Bear wrote: > hi, > I am a newbie on GIMP development. Now I wanna create a new tool. For > example, I wanna create a Text Tool which as same as GIMP owned. I copyed > these > files: [...] Ah, what a good idea... instead of changing the tools that a

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

2010-06-14 Thread Bear
hi, thx for your help! Its helped me solved my problem! And I have another question: How to modify the context menu? I wanna to edit two context menu, one is the one when Text Tool is actived, the other one is the one when I right-click on canvas. Could you tell me which file should I modify? thx!

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 Alexia Death
On Mon, Jun 14, 2010 at 6:39 AM, Bear wrote: > hi, > I am a newbie on GIMP development. Now I wanna create a new tool. For > example, I wanna create a Text Tool which as same as GIMP owned. Did you add your new files into the build system as well? That aside, any development effort is better sp

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

2010-06-13 Thread Bill Skaggs
At a minimum, you need to add your new tool to the list in app/tools/gimp-tools.c, so that it will be registered. You'll also have to rename some things to avoid duplicate names -- maybe you've already done this but you didn't say so. -- Bill ___ Gimp

Re: [Gimp-developer] How to get a Selection from a region of pixels ?

2010-02-23 Thread Sven Neumann
On Wed, 2010-02-24 at 00:50 +0530, sanju maliakal wrote: > I am writing a GIMP plugin in C . I want to represent > a contiguous region of pixels with some similarity as a selection by > passing either all pixels in that region or the boundary pixels of > this region. i did a considerable amount of

Re: [Gimp-developer] how to create a window in gimp plugin?

2009-07-02 Thread gbstack
Hi, thanks for your tutorials,plugin examples and suggestions. now it's fixed,if I use gimp_ui_init instead of gtk_init,I can create a GtkWindow in gimp plugin now. thank you all! :-) Regards, Todong Ma ___ Gimp-developer mailing list Gimp-develope

Re: [Gimp-developer] how to create a window in gimp plugin?

2009-07-02 Thread Sven Neumann
Hi, On Thu, 2009-07-02 at 14:01 +0800, gbstack wrote: > Hello,everybody! > > I want to create a window in gimp plugin,so this is my code(part of the > plugin): Please have a look at http://developer.gimp.org/writing-a-plug-in/1/index.html In particular part III of this tutorial should be helpf

Re: [Gimp-developer] how to create a window in gimp plugin?

2009-07-02 Thread Martin Nordholts
On 07/02/2009 08:01 AM, gbstack wrote: > Hello,everybody! > > I want to create a window in gimp plugin,so this is my code(part of the > plugin): > > any suggestion is appreciated. > One way that always works is looking at how other plug-ins does it, for example: http://git.gnome.org/cgit/gimp

Re: [Gimp-developer] how to create a window in gimp plugin?

2009-07-02 Thread Adam Turcotte
On Thu, Jul 2, 2009 at 2:01 AM, gbstack wrote: > I want to create a window in gimp plugin I'm not sure if this helps, but when I've created gimp plugins, I've always used gimp_dialog_new () instead of gtk_window_new (). For an example, take a look at the scale_dialog () method here: http://gsoc.r

Re: [Gimp-developer] How to show GTK+ version (in Windows)

2009-02-12 Thread Sven Neumann
Hi, On Thu, 2009-02-12 at 15:51 -0500, Alec Burgess wrote: > When starting GIMP from command line (in Windows) how do you show the > GTK+ version? gimp-2.6 --version --verbose Sven ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.E

Re: [Gimp-developer] how to start?

2008-12-17 Thread JirkaS
Tobias Jakobs-2 wrote: > > On Wed, Dec 17, 2008 at 1:31 PM, JirkaS wrote: >> >> Hi everybody - I'm sw developer "enthusiast" and would like to try put my >> hands on GIMP. I worked as C and C++ developer for several years, but >> mostly >> on Windows (Unix only occasionally during my universit

Re: [Gimp-developer] how to start?

2008-12-17 Thread Tobias Jakobs
On Wed, Dec 17, 2008 at 1:31 PM, JirkaS wrote: > > Hi everybody - I'm sw developer "enthusiast" and would like to try put my > hands on GIMP. I worked as C and C++ developer for several years, but mostly > on Windows (Unix only occasionally during my university time - and that's > history folks).

Re: [Gimp-developer] how to start?

2008-12-17 Thread Torsten Neuer
Hello, > I installed Ubuntu 8.10 on my laptop and would like to give it try, but I > couldn’t find a way to start. I tried to read developer.gimp.org FAQ, but > it is very short describing where to get source code, how to produce build, > what build tool I need to use, how to check out files, how

Re: [Gimp-developer] How to capture Gimp-log=dnd events on Windows?

2008-11-26 Thread Sven Neumann
Hi, On Wed, 2008-11-26 at 04:11 -0500, Alec Burgess wrote: > Aside: can you point me to any Doc or Man page that defines what > environment variables GIMP is looking for? > I assume that there are more settings that GIMP_LOG is looking for than > just "dnd"? Have a look at app/gimp-log.c for t

Re: [Gimp-developer] How to capture Gimp-log=dnd e vents on Windows? (re: Bug 561973 – Missi ng drag and drop target)

2008-11-26 Thread Tor Lillqvist
See the bug report for my comment. http://bugzilla.gnome.org/show_bug.cgi?id=561973#c6 In short, it is a known fact that GTK+ on Windows doesn't implement generic inter-process drag-and-drop. Only accepting files dragged from Explorer onto GTK+ applications work, and dragging images from IE (which

Re: [Gimp-developer] How to capture Gimp-log=dnd e vents on Windows? (re: Bug 561973 – Missing drag and drop target)

2008-11-26 Thread Alec Burgess
Sven Neumann ([EMAIL PROTECTED]) wrote (in part) (on 2008-11-26 at 02:17): > On Wed, 2008-11-26 at 08:13 +0200, Alexia Death wrote: > > > > As to debug output --verbose and -c flags are needed. > > No, they aren't. The --verbose flag has nothing to do with the output > you get from the GIMP_

Re: [Gimp-developer] How to capture Gimp-log=dnd events o n Windows? (re: Bug 561973 – Missing drag and drop target)

2008-11-26 Thread Sven Neumann
Hi, On Wed, 2008-11-26 at 02:39 -0500, Alec Burgess wrote: > Sven ... was there some additional output you expected me to see > there? Yes, definitely. All that --verbose output is irrelevant. Why don't you try what I suggested and redirect output to a file? Sven

Re: [Gimp-developer] How to capture Gimp-log=dnd e vents on Windows? (re: Bug 561973 – Missing drag and drop target)

2008-11-25 Thread Alec Burgess
Alexia Death ([EMAIL PROTECTED]) wrote (in part) (on 2008-11-26 at 01:13): DnD issues from firefox AFAIK have nothing to do with GIMP... Its the way FF handles dragging of images. The path resulting from dragging an image is not a valid file path, because firefox cache is a bit different tha

Re: [Gimp-developer] How to capture Gimp-log=dnd events o n Windows? (re: Bug 561973 – Missing drag and drop target)

2008-11-25 Thread Sven Neumann
Hi, On Wed, 2008-11-26 at 08:13 +0200, Alexia Death wrote: > As to debug output --verbose and -c flags are needed. No, they aren't. The --verbose flag has nothing to do with the output you get from the GIMP_LOG facility. And the -c flag only applies to messages that are shown in error dialogs ot

Re: [Gimp-developer] How to capture Gimp-log=dnd e vents on Windows? (re: Bug 561973 – Missi ng drag and drop target)

2008-11-25 Thread Alexia Death
DnD issues from firefox AFAIK have nothing to do with GIMP... Its the way FF handles dragging of images. The path resulting from dragging an image is not a valid file path, because firefox cache is a bit different than IE-s simple filesytem. In Linux it seems firefox passes URL-s and GIMP fetches

Re: [Gimp-developer] how to get pot files for gimp 2.4 110n?

2007-11-23 Thread Choi, Ji-Hui
On Nov 24, 2007 2:07 AM, Sven Neumann <[EMAIL PROTECTED]> wrote: > You should run "intltool-update ko" in the po directory to update the > files. Or you simply download them from > http://l10n.gnome.org/module/gimp/#gimp-2-4 > Thank you, Sven. :-) -- 〓〓 Choi, JiHui http://Mr

Re: [Gimp-developer] how to get pot files for gimp 2.4 110n?

2007-11-23 Thread Sven Neumann
Hi, On Fri, 2007-11-23 at 17:54 +0900, Choi, Ji-Hui wrote: > I'm intending to update korean po files. > but I couldn't find some strings. I think my po files need to update > using pot files. You should run "intltool-update ko" in the po directory to update the files. Or you simply download them

Re: [Gimp-developer] how to convert gimps xcf format to pdf..

2007-10-08 Thread Sven Neumann
Hi, On Mon, 2007-10-08 at 09:35 +0200, Pcdokteraanhuis wrote: > but how canI how to convert gimps xcf format to pdf.. File->Print, then choose to print to file and select PDF as output format. This requires GIMP 2.4. Sven ___ Gimp-developer mailing

Re: [Gimp-developer] how to convert gimps xcf format to pdf..

2007-10-08 Thread stefan . roellin
On 10/8/07, Pcdokteraanhuis wrote: > > I am a new user off GIMP and I like it.. > > but how canI how to convert gimps xcf format to pdf.. I started to write a plugin for gimp that allows to save an image directly to PDF. At the moment, each layer is stored separately in the PDF (compared to "print

Re: [Gimp-developer] how to convert gimps xcf format to pdf..

2007-10-08 Thread Alexandre Prokoudine
On 10/8/07, Pcdokteraanhuis wrote: > I am a new user off GIMP and I like it.. > > but how canI how to convert gimps xcf format to pdf.. First and foremost this is the wrong list for this question. Please use gimp-user@ next time. Second, print it to PDF Alexandre ___

Re: [Gimp-developer] how to convert gimps xcf format to pdf..

2007-10-08 Thread rcook
> Hi, > > I am a new user off GIMP and I like it.. > > but how canI how to convert gimps xcf format to pdf.. If you are using windows, I don't know, but on a linux system you could try a two part process, save as tiff or ps and then use tiff2pdf or one of the ps2pdf programs Owen _

Re: [Gimp-developer] how to

2007-05-22 Thread Tor Lillqvist
(Let's keep this discussion on the gimp-developer list. In general, please don't reply privately to messages sent to a mailing list. At least in Open Source circles that is commonly considered rude. The purpose of public mailing lists is to keep the discussion open and archived.) > I am a newbie,

Re: [Gimp-developer] how to

2007-05-22 Thread Tor Lillqvist
> I am a newbie to GIMP. I have downloaded gimp-2.2.13.tar.gz, but I > have a problem now. I don't know how to compile it in WindowsXP. Are you really sure you want to? Have you built any non-trivial Open Source software on Windows (or on Linux even) earlier? (Just running "./configure && make

Re: [Gimp-developer] how to save plugin's data

2007-05-16 Thread tao frank
2007/5/17, Simon Budig <[EMAIL PROTECTED]>: This data gets stored in the RAM and then sits there. Although there is no limit on the size of this data this functionality is not intended to store huge amounts of data. It is more about a small struct saving the preferences of a plugin or similiar s

Re: [Gimp-developer] how to save plugin's data

2007-05-16 Thread Simon Budig
tao frank ([EMAIL PROTECTED]) wrote: > I know that some data of plugin can be stored in GIMP's pool by the function > below: > > gimp_set_data ("some_data", &mydata, sizeof (MyData)); > > But how big can this data be? If I want to store a very big data, say, a > color mask of an image, what shoul

Re: [Gimp-developer] How to change the active current tool from aplugin?

2007-04-26 Thread William Skaggs
From: "Laurent gauvrit" <[EMAIL PROTECTED]> >That I told I try to design an edge detection plugin. This plugin helps the >user to select an objet on a picture. [ . . . ] Hi Laurent, In the GIMP architecture, things that require the user to interact directly with an image, by painting or any o

Re: [Gimp-developer] How to change the active current tool from a plugin?

2007-04-25 Thread Sven Neumann
Hi, On Wed, 2007-04-25 at 21:09 +, Laurent gauvrit wrote: > I am a little worried about what you said. I can change colors with > gimp_context_set_default_colors (void); (and it works) but I don't manage to > use the gimp_context_set_paint_method (const gchar *name); method. I tried > thi

Re: [Gimp-developer] How to change the active current tool from a plugin?

2007-04-25 Thread Joao S. O. Bueno Calligaris
On Wednesday 25 April 2007 17:27, Laurent gauvrit wrote: > hello everybody, > > I work on a hopefull edge detection plugin for gimp and i need to > change the active current tool by a button in my plugin. > > Anyone know the answer??? Yes. The answer is: it is not possible at the moment. Sorry fo

Re: [Gimp-developer] How to change the active current tool from a plugin?

2007-04-25 Thread Sven Neumann
Hi, On Wed, 2007-04-25 at 20:27 +, Laurent gauvrit wrote: > I work on a hopefull edge detection plugin for gimp and i need to change the > active current tool by a button in my plugin. Sorry, but you can't control the core UI from a plug-in. Sven

Re: [Gimp-developer] how to call gimp procedure from text terminal ?

2007-04-24 Thread David Hodson
Joao S. O. Bueno Calligaris wrote: > On Monday 23 April 2007 21:02, stu seven wrote: > >> I know that, using a function name, and parameters, this can >>be done in batch mode, for instance... however, all Im looking for >>is to "remotely" open the function dialog, via the text terminal. > Th

Re: [Gimp-developer] how to call gimp procedure from text terminal ?

2007-04-23 Thread Joao S. O. Bueno Calligaris
On Monday 23 April 2007 21:02, stu seven wrote: > +I asked this on the google group, but with no answer yet... > > How can a menu item or gimp procedure be called from a > text terminal, with a graphical gimp session already running ? > > I know that, using a function name, and parame

Re: [Gimp-developer] how to call a plugin

2007-03-14 Thread Luis A. Florit
Hi Bill, > >Now, I just want to blur my drawable from my plugin. > >I tried this: > > > > GimpParam *rreturn_vals; > > gint nnreturn_vals; > > rreturn_vals = gimp_run_procedure("plug_in_blur", &nnreturn_vals, > > GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, > >

Re: [Gimp-developer] how to call a plugin

2007-03-14 Thread William Skaggs
Luis Florit wrote: >Now, I just want to blur my drawable from my plugin. >I tried this: > > GimpParam *rreturn_vals; > gint nnreturn_vals; > rreturn_vals = gimp_run_procedure("plug_in_blur", &nnreturn_vals, > GIMP_PDB_INT32, GIMP_RUN_NONINTERACTIVE, >

Re: [Gimp-developer] how to realize these operations by using computer program language?

2007-03-03 Thread saulgoode
Quoting zhang chi <[EMAIL PROTECTED]>: > I want to realize these operations by using computer program language: > http://www.gimptalk.com/forum/topic/My-First-Tutorial-Blending-Images-In-Gimp-106-1.html > > I select gimp software,because I think gimp is open source code,but I found > there are too

Re: [Gimp-developer] how to get the code of feather function?

2007-02-28 Thread saulgoode
Quoting zhang chi <[EMAIL PROTECTED]>: > I hope to know the feather algorithm for my research,so how to get the > feather funcion code? > > thank you! 'Feathering' involves performing a Gaussian blur with the specified amount being used as the 'radius'.

Re: [Gimp-developer] How to get if the buffer is empty or not

2007-01-22 Thread Bart
Hi, does anybody know how gimp-buffer-list in SCM-script work when try to get the number off buffers in a variable? I didn't get it work. Thanx. Karamba! Bart > __ Bart schrieb: > Hi, > > i'm developing a script that insert the clipboard as a layer (its based > on older existing

Re: [Gimp-developer] How to get if the buffer is empty or not

2007-01-18 Thread Sven Neumann
Hi, On Thu, 2007-01-18 at 13:31 +0100, Bart wrote: > i'm developing a script that insert the clipboard as a layer Huh? How is that different to what Edit->Paste does? > and to avoid error messages to the user i'd > like to check up wether the clipboard is empty or not. > How to do that? You c

Re: [Gimp-developer] How to get if the buffer is empty or not

2007-01-18 Thread David Gowers
On 1/18/07, Bart <[EMAIL PROTECTED]> wrote: Hi, i'm developing a script that insert the clipboard as a layer (its based on older existing scripts) and to avoid error messages to the user i'd like to check up wether the clipboard is empty or not. How to do that? Maybe Script-fu has a similar

Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-22 Thread Carol Spears
On Sat, Aug 12, 2006 at 03:33:57AM +, David Gowers wrote: > > Yes, that was exactly what's needed. > Looks like '' means 'image is irrelevant' while '*' means 'all'. > it has been my experience that '*' always creates a script that will only run once and sit there grayed out in the menu as y

Re: [Gimp-developer] how to add new stock icons. was: Total bafflement

2006-08-20 Thread William Skaggs
From: Chris Moller <[EMAIL PROTECTED]> >But I can't figure out where gimp is storing the blasted icons! > >Where does gimp_prop_enum_stock_box_new() get the images? Anyone Out >There have a clue? They are carefully hidden :-). The icons supplied with GIMP are defined by png files located in th

Re: [Gimp-developer] How to replace the GPtrArray with a type in Delphi?

2006-08-17 Thread Sven Neumann
Hi, On Wed, 2006-08-16 at 23:50 -0700, gmbros wrote: > I want to translate the Intelligent Scissors Tool of Gimp to Pascal with > Delphi. But I encounterd a lot of questions. Such as what does the GPtrArray > mean? How to replace it with a type in Delphi. Dose anyone here know how to > transl

Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-11 Thread David Gowers
On 8/11/06, Seth Burgess <[EMAIL PROTECTED]> wrote: I think the better question is why is it runnable at all?  The install_procedure call has an argument of '' for image types it can work on; since you're under the , this should be dynamically  changed based upon the characteristics of the  image u

Re: [Gimp-developer] How to make a PyGimp plugin rerunnable?

2006-08-11 Thread Kevin Cozens
David Gowers wrote: I've written several PyGimp plugins, but when I go to the 'recent filters' menu or try to rerun one, it is disabled. I can run it okay and it produces the expected results, but I can't rerun it. You don't need to do anything in your plug-in. It was a limitation within GIMP

Re: [Gimp-developer] How to minimize main GIMP window

2006-04-27 Thread Sven Neumann
Hi, "Steven P. Ulrick" <[EMAIL PROTECTED]> writes: > My problem is that on the main GIMP interface, I do not see a minimize > button. I looked through the "preferences" menu, especially > the Window Management part, and I found nothing that would let me > re-enable the minimize button. Set the

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

2006-04-26 Thread Sven Neumann
Hi, Tom Lechner <[EMAIL PROTECTED]> writes: > I desperately want a tool that can stretch a selection or layer in a > curvy sort of way on the main window, because I frequently want to > place images inside of other images in such a way that the > scale/rotate/perspective tools are not suffi

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

2006-04-26 Thread Alexander Rabtchevich
What I do see on the tutorial page is a potentially very nice spline-based gradient tool, as Adobe Illustrator has. ;) -- With respect Alexander Rabtchevich ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU https://lists.XCF.Berkele

Re: [Gimp-developer] How to install gimp-cvs entirely to my $HOME (Linux)

2006-04-16 Thread Zephyr
On Sun, 2006-04-16 at 12:22 -0700, Manish Singh wrote: > Sounds like you first built without specifying a --prefix. You need to > run "make clean" and then rebuild. > > -Yosh Exactly. make clean solved it, thank you ! ___ Gimp-developer mailing list G

Re: [Gimp-developer] How to install gimp-cvs entirely to my $HOME (Linux)

2006-04-16 Thread Manish Singh
On Sun, Apr 16, 2006 at 08:10:54PM +0200, Zephyr wrote: > Hello, > I wanted to compile My Very Own GIMP From CVS (TM) and play with the > code, explore it etc. As it should be just my playground, I don't want > to install it system-wide and possibly endanger my stable GIMP 2.2.10 > installed from R

Re: [Gimp-developer] how to use status bar?

2005-02-15 Thread [EMAIL PROTECTED]
> I've been trying to come up with a way to get the clone tool > to show a message in the status area saying "Ctrl-click to > set source" whenever the source needs to be set. Maybe when the cursor needs to be set, instead of displaying the "(/)" [NO] cursor, clicking could do something useful lik

Re: [Gimp-developer] How to get GIMP from CVS

2003-12-12 Thread Sven Neumann
Hi, "Shrinivas Kulkarni" <[EMAIL PROTECTED]> writes: > I would like to know how to get GIMP from CVS tree, I am using > wincvs on Windows XP. http://www.gimp.org/devel_cvs.html Sven ___ Gimp-developer mailing list [EMAIL PROTECTED] http://lists.xcf.b

Re: [Gimp-developer] How to Submit Fixes and Enhancements?

2003-01-13 Thread Sven Neumann
Hi, "Kevin Myers" <[EMAIL PROTECTED]> writes: > OK, thanks! Just to confirm, are (relatively minor) enhancements > handled the same way as bugs? Bugzilla takes enhancement requests as well. These are however generally only considered for inclusion in the HEAD branch so your patches should prefe

Re: [Gimp-developer] How to Submit Fixes and Enhancements?

2003-01-13 Thread Kevin Myers
CTED]> Sent: Monday, January 13, 2003 4:16 PM Subject: Re: [Gimp-developer] How to Submit Fixes and Enhancements? > On Mon, 13 Jan 2003, Kevin Myers wrote: > > > Hi folks, > > > > I have a few simple enhancements bug fixes that I would like to provide for > > the GIMP,

Re: [Gimp-developer] How to Submit Fixes and Enhancements?

2003-01-13 Thread Nathan Carl Summers
On Mon, 13 Jan 2003, Kevin Myers wrote: > Hi folks, > > I have a few simple enhancements bug fixes that I would like to provide for > the GIMP, and I'm working with it enough that I anticipate more to come. > How is the best way for me to provide these changes? I've briefly checked > into using C

Re: [Gimp-developer] How to build a distribution

2002-10-09 Thread pcg
On Wed, Oct 09, 2002 at 02:51:53PM +0200, Vegard Vesterheim <[EMAIL PROTECTED]> wrote: > > no separate gimp-perl package. At the moment it looks a lot as if > > gimp-1.4 will not have gimp-perl support. > > separate package from gimp itself, and that the packaging is using the > ordinary Perl me

Re: [Gimp-developer] How to build a distribution

2002-10-09 Thread Thierry Vignaud
Sven Neumann <[EMAIL PROTECTED]> writes: > the main reason is that AFAIK gtk+-perl hasn't been ported to > GTK+-2.0 yet. there've been a few port trials but none get completed. but it'll be ported. we (mandrake developers) use it for our installer (drakx) and our config tools (drakxtools) use

Re: [Gimp-developer] How to build a distribution

2002-10-09 Thread Sven Neumann
Hi, Vegard Vesterheim <[EMAIL PROTECTED]> writes: > > no, the case for gimp-1.3 is that it ships w/o gimp-perl and there's > > no separate gimp-perl package. At the moment it looks a lot as if > > gimp-1.4 will not have gimp-perl support. > > Ouch, I would consider this to be *very* unfortunate

Re: [Gimp-developer] How to build a distribution

2002-10-09 Thread Vegard Vesterheim
On 09 Oct 2002 13:45:00 +0200 Sven Neumann <[EMAIL PROTECTED]> wrote: > Hi, > > Shlomi Fish <[EMAIL PROTECTED]> writes: > > > > An alternative would > > > be to distribute gimp-perl separately. In that case, I wouldn't care > > > how it is built or packaged. > > > > > > > Isn't it already the

Re: [Gimp-developer] How to build a distribution

2002-10-09 Thread Sven Neumann
Hi, Shlomi Fish <[EMAIL PROTECTED]> writes: > > An alternative would > > be to distribute gimp-perl separately. In that case, I wouldn't care > > how it is built or packaged. > > > > Isn't it already the case for Gimp 1.3.x? no, the case for gimp-1.3 is that it ships w/o gimp-perl and there's

Re: [Gimp-developer] How to build a distribution

2002-10-08 Thread Shlomi Fish
On 8 Oct 2002, Sven Neumann wrote: > Hi, > > Shlomi Fish <[EMAIL PROTECTED]> writes: > > > The reason I asked was because I had to pull a similar stunt for a game > > I'm working on ( "I, Bex!"). What I eventually did was override the > > distdir target in Makefile.PL: > > actuallyI'd prefer to g

Re: [Gimp-developer] How to build a distribution

2002-10-08 Thread Sven Neumann
Hi, Shlomi Fish <[EMAIL PROTECTED]> writes: > The reason I asked was because I had to pull a similar stunt for a game > I'm working on ( "I, Bex!"). What I eventually did was override the > distdir target in Makefile.PL: actually I'd prefer to get rid of Makefile.pl and build gimp-perl using au

Re: [Gimp-developer] How to build a distribution

2002-10-06 Thread Shlomi Fish
On 6 Oct 2002, Sven Neumann wrote: > Hi, > > Shlomi Fish <[EMAIL PROTECTED]> writes: > > > Apparently, "make dist" does not include the files under the > > plug-ins/perl directory (except for the po files). (I'm talking > > about gimp 1.2.3). > > no, unfortunately the gimp-perl build is pretty ha

Re: [Gimp-developer] How to build a distribution

2002-10-05 Thread Sven Neumann
Hi, Shlomi Fish <[EMAIL PROTECTED]> writes: > Apparently, "make dist" does not include the files under the > plug-ins/perl directory (except for the po files). (I'm talking > about gimp 1.2.3). no, unfortunately the gimp-perl build is pretty hackish and non-standard. The fact that 'make dist' d

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-10-01 Thread forest monk
Hi Marc, Thanks a lot for your reply. I will give it a shot. Kindly Regards >From: >To: forest monk <[EMAIL PROTECTED]> >CC: [EMAIL PROTECTED] >Subject: Re: [Gimp-developer] how to make Gimp::Perl script work remotely? >Date: Sun, 29 Sep 2002 01:41:19 +0200 > >On

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-09-28 Thread pcg
On Sat, Sep 28, 2002 at 01:20:20AM +, forest monk <[EMAIL PROTECTED]> wrote: > Thanks again for your reply. I do appreciate it. Not sure about one thing > though: Do I only need the perl and gimp-perl module installed on my client > box and no more software (Gtk+, GIMP) required? In theory

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-09-27 Thread forest monk
ECTED] >Subject: Re: [Gimp-developer] how to make Gimp::Perl script work remotely? >Date: Fri, 27 Sep 2002 23:56:54 +0200 > >On Fri, Sep 27, 2002 at 02:01:57AM +, forest monk ><[EMAIL PROTECTED]> wrote: > > Thanks a lot for your reply. Tried what you suggested but stil

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-09-27 Thread pcg
On Fri, Sep 27, 2002 at 02:01:57AM +, forest monk <[EMAIL PROTECTED]> wrote: > Thanks a lot for your reply. Tried what you suggested but still could not > get it to work. Got some error message like "Cannot locate Gimp.pm at @INC > .". this actually looks as if gimp-perl wasn't installe

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-09-26 Thread forest monk
ppreicated. TIA >From: >To: forest monk <[EMAIL PROTECTED]> >CC: [EMAIL PROTECTED] >Subject: Re: [Gimp-developer] how to make Gimp::Perl script work remotely? >Date: Fri, 27 Sep 2002 00:47:05 +0200 > >On Thu, Sep 26, 2002 at 02:56:06PM +, forest monk ><[EMAI

Re: [Gimp-developer] how to make Gimp::Perl script work remotely?

2002-09-26 Thread pcg
On Thu, Sep 26, 2002 at 02:56:06PM +, forest monk <[EMAIL PROTECTED]> wrote: > through networking. Say, If i start a gimp perl server on a server machine, > what should i do to be able to execute the script on a remote machine?I > searched online resources and found that on server side, i ne