QtCreator Plugin
-
I have already compiled the source of QtCreator and startet with the helloworld plugin as base. Now I need to know how can I write to the compile output window, what is needed to include. The methods I have already found (clear, append a.s.o) but the access from my plugin is missing.
Can anyone point me in to the right direction? -
Hi Scylla,
have you already looked at the documents from "VCreate Logic":http://www.vcreatelogic.com/resources/downloads/ ? They have a tutorial on how to create QtCreator plug-ins
-
Rule of thumb: If a class is in the Internal namespace then you can not get access to it from outside the plugin it is in. The compile output window is internal to the projectexplorer plugin you have no direct access to it.
Try #qt-creator in the freenode irc network or the Qt Creator mailing lists. That's where all the developers hang out. Feel free to stop by and discuss what you want to do. We tend to default to Internal classes but are always willing to make one public if somebody presents a good use case.