Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-11-17 Thread Benoît HERVIER
Hi Algis, Bracket aren't automatically closed, but are just highlighted, space after comma isn't added automatically too (but thanks for the idea). Auto indent after a line ending with a ':' should work (At least it s works for me). > Perhaps it is because the program does not like me :) When I t

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-11-16 Thread Algis Kabaila
Benoit, I did download your editor to try it out. I note that the matching bracket "(" is not added automatically, nor the space after a comma; not does it automatically add left spacing after a command that ends with ":", viz "for i in range(5): Perhaps it is because the program does not li

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-11-16 Thread Benoît HERVIER
Hi, I ve already made my own Editor for Maemo and Meego, it s pure PyQt without scintilla too : Available at : http://khertan.net/khteditor http://gitorious.org/khteditor You can look at my code for : - parenthese matching Mine include some kinetic scrolling as it s mainly for Maemo device, s

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-11-12 Thread Algis Kabaila
On Thursday 02 September 2010 12:42:02 Henning Schröder wrote: > Hello, > > although QScintilla is nice I always thought it would be good to base > an editor widget on QPlainTextEdit. > Over the time I implemented the typical parts which were missing: > * line number and icon sidebar > * highli

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-09-13 Thread Benoît HERVIER
Hello, I use pure python code also for my syntax highlight (not really true as i use QSyntaxHighlighter) : http://khertan.net/khteditor http://gitorious.org/khteditor It's still in developpment, but highlight is fast (it s a require as it for maemo device). Regards, 2010/9/13 Henning Schröder

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-09-13 Thread Henning Schröder
On Thu, Sep 2, 2010 at 6:48 AM, wrote: > Hello, > CodeAide looks interesting. > > I've two questions : > > Is it to add other languages that Python ? There is some code for QtScript syntax included. Additionally the highlighter class is very flexible and accepts custom syntax defininitons. Django

Re: [PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-09-01 Thread projetmbc
Hello, CodeAide looks interesting. I've two questions : Is it to add other languages that Python ? How do you treat the line numbering and the folding ? >>> auto-complete You can find a method here : http://www.developpez.net/forums/d921494/autres-langages/python-zope/general-python/naturel-

[PyQt] ANN: Preview of Python code editor widget - pure Python alternative to QScintilla

2010-09-01 Thread Henning Schröder
Hello, although QScintilla is nice I always thought it would be good to base an editor widget on QPlainTextEdit. Over the time I implemented the typical parts which were missing: * line number and icon sidebar * highlighting the current line, higlighting the occurrence of the current word * lin