PDA

View Full Version : Using QtCreator components in my own project



Auliyaa
22nd March 2012, 10:31
Hi everyone,

I'm working on an application based on C++/Qt. This application also provides python bindings and I'd like to integrate a small python code editor in it. This component will have to provide code highlighting and completion features.

I looked over to check if there was some library that could do that for me, I found the qtedit4 (http://code.google.com/p/qtedit4/) project which provides code highlighting based on kate's syntax highliter definitions format. But this library does not provide code completion.

So I looked into QtCreator source code to check how their code editor worked and it seems that it's based on the texteditor plugin. So I was wondering if anyone had already used this plugin into their own project. And how did they integrate it ?

Any advice here is welcomed :)