Re: [Pydev-code] EXTERNAL: Re: Using PyDev in custom plugin

2011-07-21 Thread Davidson, Josh
ingle step it. Thanks, Josh -Original Message- From: Fabio Zadrozny [mailto:fab...@esss.com.br] Sent: Tuesday, July 19, 2011 5:08 PM To: pydev-code@lists.sourceforge.net Subject: Re: [Pydev-code] EXTERNAL: Re: Using PyDev in custom plugin Well, it should be possible... the pydev conso

Re: [Pydev-code] EXTERNAL: Re: Using PyDev in custom plugin

2011-07-19 Thread Fabio Zadrozny
Well, it should be possible... the pydev console is actually a xml-rpc server with 'addExec', 'getCompletions', 'getDescription', 'close', so, you could extend it if you want more data from it (code is in org.python.pydev/PySrc/pydevconsole.py and in the java side org.python.pydev.debug.newconsole.

Re: [Pydev-code] EXTERNAL: Re: Using PyDev in custom plugin

2011-07-19 Thread Davidson, Josh
Sure. So there will be various C++ components executing and each has an interface wrapped in Py++ bindings. For example, if I was in the Python console, I could do something like: obj.getFoo() and invoke that accessor on the C++ object. One of the things I need to be able to do is add graphic