Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Peter TB Brett
Josh Jordan writes: > The script opens a dialog to save the symbol and it also loads the > symbol on its own page.  I think we could skip the file chooser and > make this function open the modified symbol in the Hierarchy menu in a > "Down Symbol Instance" option.  Then you can save-as from there

Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Kai-Martin Knaak
Peter Brett wrote: > Please ensure that your LD_LIBRARY_PATH is set up properly to include > whatever prefix you're installing my branch to. The system wide library search path is subject to be changed by updates of the distro. If I So, I hesitate to fiddle with it. I usually fix this with a sym

Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Josh Jordan
;Down Symbol Instance" option. Then you can save-as from there with the correct symbol file chooser. It will take me a little while to get up to speed with scheme. -Josh Jordan --- On Mon, 6/20/11, Peter Brett wrote: From: Peter Brett Subject: Re: gEDA-user: gsc

Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Peter Brett
Josh Jordan writes: > Thanks for the help.  I am having trouble running your scheme > branch.  When I open gschem it says: gschem: error while loading > shared libraries: libgeda.so.40: cannot open shared object file: No > such file or directory Because there is really libgeda.so.39 being > insta

Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Josh Jordan
. Your scheme way looks much simpler than my way in C that has too much text processing. -Josh Jordan --- On Sun, 6/19/11, Peter TB Brett wrote: From: Peter TB Brett Subject: Re: gEDA-user: gschem saving symbols To: geda-u...@seul.org Date: Sunday, June 19, 2011

Re: gEDA-user: gschem saving symbols

2011-06-20 Thread Peter TB Brett
Josh Jordan writes: > I could implement a save-symbol-as capability.  Can anyone familiar > with gschem code outline a 'right' way to this?  Should I add another > option to Hierarchy "down modified symbol" and change the other to > "down original symbol"?  Or would it be better to add a 'save sy

Re: gEDA-user: gschem saving symbols

2011-06-18 Thread John Doty
On Jun 16, 2011, at 11:17 PM, Josh Jordan wrote: >The plan is to add a 'Save symbol instance as...' to the right-click >menu. It will open the file chooser in the directory of the original >symbol and load file name from device attribute. I like this, although it's not so terribly d

Re: gEDA-user: gschem saving symbols

2011-06-17 Thread Kai-Martin Knaak
Colin D Bennett wrote: > That's a good question... as is often the case in the gschem > documentation, the symbol creation guide says you should always > translate the symbol to the origin, but it does not explain why this > is required. On insert, the mouse cursor is at the origin of the symbol.

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Colin D Bennett
On Thu, 16 Jun 2011 22:17:40 -0700 (PDT) Josh Jordan wrote: > The position of all the objects in the > symbol are big numbers for the position they had in the schematic. >  Is there a reason to make these numbers small near the origin like > in the original symbol file? That's a good question...

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Josh Jordan
numbers for the position they had in the schematic. Is there a reason to make these numbers small near the origin like in the original symbol file? -Josh Jordan --- On Fri, 6/17/11, Steven Michalske wrote: From: Steven Michalske Subject: Re: gEDA-user: gschem saving

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Steven Michalske
On Jun 16, 2011, at 9:37 PM, Colin D Bennett wrote: > On Thu, 16 Jun 2011 20:55:57 -0700 (PDT) > Josh Jordan wrote: > >> I could implement a save-symbol-as capability. Can anyone familiar >> with gschem code outline a 'right' way to this? Should I add another >> option to Hierarchy "down

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Colin D Bennett
On Thu, 16 Jun 2011 20:55:57 -0700 (PDT) Josh Jordan wrote: > I could implement a save-symbol-as capability.  Can anyone familiar > with gschem code outline a 'right' way to this?  Should I add another > option to Hierarchy "down modified symbol" and change the other to > "down original symbol"?

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Josh Jordan
r to add a 'save symbol as' function to the right-click menu that operates on selected objects? Should I try not to change libgeda? Thanks, Josh Jordan --- On Thu, 6/16/11, Ethan Swint wrote: From: Ethan Swint Subject: Re: gEDA-user: gschem saving symbols

Re: gEDA-user: gschem saving symbols

2011-06-16 Thread Ethan Swint
On 06/15/2011 10:10 PM, Kai-Martin Knaak wrote: Josh Jordan wrote: What I am trying to do is save symbols that were modified in the schematic. For instance, making a schematic and add a generic capacitor. Then add a value, footprint, partnumber and documentation. This does not change the sym

Re: gEDA-user: gschem saving symbols

2011-06-15 Thread Kai-Martin Knaak
Josh Jordan wrote: > What I am trying to do is save symbols that were modified in the > schematic. For instance, making a schematic and add a generic > capacitor. Then add a value, footprint, partnumber and documentation. This does not change the symbol but adds attributes to the instance in

Re: gEDA-user: gschem saving symbols

2011-06-15 Thread Josh Jordan
d, 6/15/11, Kai-Martin Knaak wrote: From: Kai-Martin Knaak Subject: Re: gEDA-user: gschem saving symbols To: geda-u...@seul.org Date: Wednesday, June 15, 2011, 4:59 PM Josh Jordan wrote: > Is it possible to load a symbol into a schematic, change it up, an

Re: gEDA-user: gschem saving symbols

2011-06-15 Thread Kai-Martin Knaak
Josh Jordan wrote: > Is it possible to load a symbol into a schematic, change it up, and > save it as another symbol? yes. Make sure, it is placed at a path, gschem knows about. This can be modified in gafrc. A common setting is to include the current working directory: /--excerpt from

gEDA-user: gschem saving symbols

2011-06-15 Thread Josh Jordan
Is it possible to load a symbol into a schematic, change it up, and save it as another symbol? This would be straight-forward but when you edit a symbol from a schematic, it loads the original before it was modified so you have to make all of the modifications again. Thanks!