QScintilla on PySide

I like PySide, and I used it for a while, but in the program I'm currently working on, I need an advanced code editor.

I found QScintilla , but this is for PyQt. Is it compatible with PySide, and if so, how do I use it?
I also looked at PySide-QScintilla , but all there is is a couple of files .hand __init.py__and __init__.pyeven has nothing to do with files .h! Has anyone used this? How to include it in the program? I also saw qutepart , but it seems to be too small for what I need.

I would make decisions other than QScintilla, but they should have:

  • Error highlighting
  • Syntax highlighting
  • Code suggestion (drop-down menu for typing)
  • Line numbers
  • Custom colors
  • Must have at least GPL (LGPL will be nice)

Any other features are great.

+5
source share
1 answer

As a result of a quick Google search, the following appeared:

I suspect that the first is a direct port, while the second is a kind of Scintilla shell instead of the QScintilla port.

0
source

All Articles