Trolltech Home | Qt-interest Home | Recent Threads | All Threads | Author | Date
All threads index page 4

Qt-interest Archive, December 2006
Widget or code for a python console?


Message 1 in thread

Does anyone know of any C++ code for a python interactive console
widget? I've embedded the interpreter and wrapped my app's engine in a
python module, but now want to add a little console to it...

thanks

-- 
 [ signature omitted ] 

Message 2 in thread

Hi,

> Does anyone know of any C++ code for a python interactive console
> widget?

How is this related to Qt?

--
 [ signature omitted ] 

Message 3 in thread

I'm looking for a console widget written using qt. Do do this you have
to use a text editor or something to visually interact with the
keyboard...

On 12/20/06, Dimitri <dimitri@xxxxxxxxxxxxx> wrote:
> Hi,
>
> > Does anyone know of any C++ code for a python interactive console
> > widget?
>
> How is this related to Qt?
>
> --
> Dimitri
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>


-- 
 [ signature omitted ] 

Message 4 in thread

On 20.12.06 23:13:12, Patrick Stinson wrote:
> I'm looking for a console widget written using qt. Do do this you have
> to use a text editor or something to visually interact with the
> keyboard...

How about checking the code of eric? It has a python console which is embedded
into it.

Andreas

-- 
 [ signature omitted ] 

Message 5 in thread

it does, that would be an option. I'll bet it's in python though

On 12/21/06, Andreas Pakulat <apaku@xxxxxx> wrote:
> On 20.12.06 23:13:12, Patrick Stinson wrote:
> > I'm looking for a console widget written using qt. Do do this you have
> > to use a text editor or something to visually interact with the
> > keyboard...
>
> How about checking the code of eric? It has a python console which is embedded
> into it.
>
> Andreas
>
> --
> Is this really happening?
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>


-- 
 [ signature omitted ] 

Message 6 in thread

On 21.12.06 09:20:31, Patrick Stinson wrote:
> it does, that would be an option. I'll bet it's in python though

Of course ;) Everything in Eric is Python. 

Andreas

-- 
 [ signature omitted ] 

Message 7 in thread

Patrick Stinson wrote:
> Does anyone know of any C++ code for a python interactive console
> widget? I've embedded the interpreter and wrapped my app's engine in a
> python module, but now want to add a little console to it...
>
> thanks
>
http://lists.trolltech.com/qt-interest/2005-08/thread00327-0.html

- Keith

--
 [ signature omitted ] 

Message 8 in thread

Keith Sabine wrote:
> Patrick Stinson wrote:
>> Does anyone know of any C++ code for a python interactive console
>> widget? I've embedded the interpreter and wrapped my app's engine in a
>> python module, but now want to add a little console to it...
>>
>> thanks
>>
> http://lists.trolltech.com/qt-interest/2005-08/thread00327-0.html

I also wanted something like this and I also checked out the above link. 
The problem is it uses the OS's console functions to create a virtual 
"shell". It's not a fully Qt solution based on a modified QTextEdit or 
something.


-- 
 [ signature omitted ] 

Message 9 in thread

Paul Miller wrote:
> Keith Sabine wrote:
>> Patrick Stinson wrote:
>>> Does anyone know of any C++ code for a python interactive console
>>> widget? I've embedded the interpreter and wrapped my app's engine in a
>>> python module, but now want to add a little console to it...
>>>
>>> thanks
>>>
>> http://lists.trolltech.com/qt-interest/2005-08/thread00327-0.html
> 
> I also wanted something like this and I also checked out the above link. 
> The problem is it uses the OS's console functions to create a virtual 
> "shell". It's not a fully Qt solution based on a modified QTextEdit or 
> something.

Hmm - I misspoke. I took another look and there is a newer version, 2.0, 
that uses the TCL console engine - it also includes Python support. It 
requires embedding TCL as well but it looks pretty nice.

-- 
 [ signature omitted ] 

Message 10 in thread

yeah, I red it last night, and it looks like they've written in qt4 support.

On 12/21/06, Paul Miller <paul@xxxxxxxxxx> wrote:
> Paul Miller wrote:
> > Keith Sabine wrote:
> >> Patrick Stinson wrote:
> >>> Does anyone know of any C++ code for a python interactive console
> >>> widget? I've embedded the interpreter and wrapped my app's engine in a
> >>> python module, but now want to add a little console to it...
> >>>
> >>> thanks
> >>>
> >> http://lists.trolltech.com/qt-interest/2005-08/thread00327-0.html
> >
> > I also wanted something like this and I also checked out the above link.
> > The problem is it uses the OS's console functions to create a virtual
> > "shell". It's not a fully Qt solution based on a modified QTextEdit or
> > something.
>
> Hmm - I misspoke. I took another look and there is a newer version, 2.0,
> that uses the TCL console engine - it also includes Python support. It
> requires embedding TCL as well but it looks pretty nice.
>
> --
> Paul Miller | paul@xxxxxxxxxx | www.fxtech.com | Got Tivo?
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>


-- 
 [ signature omitted ]