
Hi,
From the thread about the Script Window i start to think how
to access the Inkscape API in external scripts.
I don't know if you already write something about this, but, if you don't may it help...
My idea is to say in the XPI "this script uses the Inkscape DOM" and the inkscape will talk with the script all the time, allowing this to use the inkscape like the user does...
The Inkscape must listen the commands from the script output and write an feedback in a pipefile for the script know what happens.
A sample bash script to fill in red an rectangle with id rect2:
#!/bin/bash pipe=$1 echo 'selectElementById rect2' testError "$( cat $pipe )" echo 'setAttribute fill="red"' testError "$( cat $pipe )"
I write 2 scripts to see if it's possible. inkSimulator.sh will do what the Inkscape must to do and externalDOM.sh will test it. See the simulation output: ___________________________________________________
$ ./inkSimulator.sh
The user has cliqued on the "External DOM Test" efect. The interface is disabled for the user interaction...
All the readed DOM commands gets an error response <error num>|<error text> No error returns something like this: 0|Ok
Trying to set the attribute fill...
Outch! I recived the error 2: Ups... no element selected
Trying to get the rect4...
Outch! I recived the error 1: The id rect4 do not existis
Trying to get the rect2...
Yeah! I recived the error 0: Ok, element rect2 selected
Trying to set the attribute fill again...
Yeah! I recived the error 0: Ok, attribute fill="red" seted in rect2
Nice! The "External DOM Test" ends. ___________________________________________________
I'm sending this scripts attached in the ink-dom-external-proposal.tar.gz to you see the code, if i was not clear. (English is not my language :-) )
It is a good idea? I think it can be easy to write scripts...
Thanks, Aurium