
On 6/21/05, aaron@...749... <aaron@...749...> wrote:
I missed an interesting discussion about which objects should be selected after an effect. I started of the opinion that the previous selection should be restored in order to make affecting the same objects again simpler. But someone suggested that the effect should be able to control the selection. That sounds very interesting. How would this be done?
Same as Inkscape gives the effect the ids of objects to process, the effect can return the ids of objects to select. Just output them as a string and let Inkscape read and parse that (I don't know if it's doable, but it sounds straightforward to me).
Id collision was one of the first things I wondered about while writing effects. What would happen if I assign a new object an id that is already taken? Inkscape of course fixes it for me. But I have been assigning no id to new objects and letting Inkscape handle the whole thing. This probably isn't a good behavior.
It is a perfectly good behavior, unless you want to pass back the ids of new objects. In that case, you need to assign them. Just use a namespace approach, e.g. "effect-name:id-number" to avoid clashes.