Re: running a Delphi part from Python ?

2007-07-16 Thread Chris Mellon
On 7/16/07, Stef Mientki <[EMAIL PROTECTED]> wrote: > Chris Mellon wrote: > > Delphi components are tightly tied to the Delphi runtime environment > > and its' gui abstractions, so embedding it as is is will be a massive > > hack (and require extensive C code) if its even possible. > The editor I'v

Re: running a Delphi part from Python ?

2007-07-16 Thread Stef Mientki
> > Of course You can always write one, that's succicient for Your needs, > and make it available under GPL. ;-) Why not BSD ? But I've to read all the licenses of the used components first ;-) cheers, Stef Mientki -- http://mail.python.org/mailman/listinfo/python-list

Re: running a Delphi part from Python ?

2007-07-16 Thread Stef Mientki
Chris Mellon wrote: > On 7/16/07, Stef Mientki <[EMAIL PROTECTED]> wrote: >> tool69 wrote: >> > Stef Mientki a écrit : >> > >> >> AFAIK, Scintilla is a code editor. >> >> What I need looks more like ms-word, >> >> handling lists, tables, images, formulas. >> >> >> >> thanks, >> >> Stef Mientki >> >

Re: running a Delphi part from Python ?

2007-07-16 Thread markacy
On 16 Lip, 11:33, Stef Mientki <[EMAIL PROTECTED]> wrote: > tool69 wrote: > > Stef Mientki a écrit : > > >> AFAIK, Scintilla is a code editor. > >> What I need looks more like ms-word, > >> handling lists, tables, images, formulas. > > >> thanks, > >> Stef Mientki > > > So you'll need the RichTextC

Re: running a Delphi part from Python ?

2007-07-16 Thread Chris Mellon
On 7/16/07, Stef Mientki <[EMAIL PROTECTED]> wrote: > tool69 wrote: > > Stef Mientki a écrit : > > > >> AFAIK, Scintilla is a code editor. > >> What I need looks more like ms-word, > >> handling lists, tables, images, formulas. > >> > >> thanks, > >> Stef Mientki > > > > > > So you'll need the Rich

Re: running a Delphi part from Python ?

2007-07-16 Thread Bruno Desthuilliers
Stef Mientki a écrit : > > I'm starting to get used to wxPython (coming from Delphi), > and it seems it can do almost everything I need. > > Now one thing I'm missing is a good RichEditor. Scintilla is for you, then. IIRC, there's a wxWidget widget embedding it, and quite a few editors using it

Re: running a Delphi part from Python ?

2007-07-16 Thread Stef Mientki
tool69 wrote: > Stef Mientki a écrit : > >> AFAIK, Scintilla is a code editor. >> What I need looks more like ms-word, >> handling lists, tables, images, formulas. >> >> thanks, >> Stef Mientki > > > So you'll need the RichTextCtrl > > http://www.wxpython.org/docs/api/wx.richtext.RichTextCtrl-c

Re: running a Delphi part from Python ?

2007-07-16 Thread tool69
Stef Mientki a écrit : > AFAIK, Scintilla is a code editor. > What I need looks more like ms-word, > handling lists, tables, images, formulas. > > thanks, > Stef Mientki So you'll need the RichTextCtrl http://www.wxpython.org/docs/api/wx.richtext.RichTextCtrl-class.html See a sample in the de

Re: running a Delphi part from Python ?

2007-07-16 Thread Stef Mientki
Bruno Desthuilliers wrote: > Stef Mientki a écrit : >> >> I'm starting to get used to wxPython (coming from Delphi), >> and it seems it can do almost everything I need. >> >> Now one thing I'm missing is a good RichEditor. > > Scintilla is for you, then. IIRC, there's a wxWidget widget embedding

running a Delphi part from Python ?

2007-07-16 Thread Stef Mientki
I'm starting to get used to wxPython (coming from Delphi), and it seems it can do almost everything I need. Now one thing I'm missing is a good RichEditor. I've a good RichEdit in Delphi ... ... so what are the possibilities to include that in Python ? The most simple for me to do, seems to crea