Re: [Qt-creator] Application used to create Qt Creator screenshot in documentation

2010-06-29 Thread Prashanth Udupa
You can checkout http://ariya.blogspot.com/2008/06/creating-fancy-screenshots-with.html / Prashanth On Tue, Jun 29, 2010 at 2:13 PM, Jaco Naude wrote: > Hi > > Does someone know which tool was used to create the image with the 3 > screenshots of creator next to each other? I've seen this before

Re: [Qt-creator] Qt Creator Community

2010-03-07 Thread Prashanth Udupa
> Not that I know. I know only 3 3rd party plugins: > I know at least 3 3rd party plugins: >  * CppSupport, plugin for C++ Class View, from visual fc: > http://code.google.com/p/visualfc/downloads/list >  * Doxygen, add doxygen tags, from kofee: > http://dev.kofee.org/QtCreator-Doxygen/ >  * CppHel

Re: [Qt-creator] own editor plugin and mimetypes

2009-11-17 Thread Prashanth Udupa
Hi Markus, Qt Creator already has a editor for xml files. The mime-type associated with that is 'application/xml'. You can register your editor for handling a subset of XML files. The following code will help you with that.. - const char* ModeXML::MimeTypeStr = "application/modexml";

Re: [Qt-creator] 'smart' / 'type-aware' auto-complete

2009-10-16 Thread Prashanth Udupa
Yes it does.. probably the best auto complete implementation out there.. / Prashanth On Fri, Oct 16, 2009 at 1:31 PM, Christopher Rasch-Olsen Raa < christop...@technophile.info> wrote: > Hi, > > It might be that Qt Creator has this already but I've still not seen it. > Are > there any plans to m

Re: [Qt-creator] Qt Creator plugin - Quick start

2009-10-10 Thread Prashanth Udupa
Hi, > By the way, I'm using Doxygen for creating docs inside my codes, but I don't > know any thing about qdoc! I tried to google about it (qdoc documentation) > but I got nothing important, so could you please give me its website link? > is it open source? qdoc3 is a tool that comes with Qt. It

Re: [Qt-creator] Qt Creator plugin - Quick start

2009-10-10 Thread Prashanth Udupa
> By the way, I'm wondering why Nokia did't write docs about Qt Creator > Plugins? If you run qdoc over the sources you will get a cross-referenced class documentation for some parts of Qt Creator. Though not as comprehensive as Qt documentation itself, its a decent enough to get started. Here ar

Re: [Qt-creator] Qt Creator plugin - Quick start

2009-10-09 Thread Prashanth Udupa
There is a document on writing Qt Creator plugins here: http://www.vcreatelogic.com/resources/downloads/ (Other Downloads Tab). That should be a good starting point. On Fri, Oct 9, 2009 at 11:18 PM, M. Bashir Al-Noimi wrote: > Hi All, > > I've created a tool (by Qt) collects all application's de

Re: [Qt-creator] Building plugins outside the source tree

2009-09-11 Thread Prashanth Udupa
onment variables QTC_BUILD and QTC_SOURCE > correspondingly before running qmake. > > ++ Eike > > On Aug 24, 2009, at 7:52 AM, ext Prashanth Udupa wrote: > >> Hi All, >> >> I am learning to write plugins for Qt Creator. I am now able to write >> plugin

[Qt-creator] Building plugins outside the source tree

2009-08-23 Thread Prashanth Udupa
Hi All, I am learning to write plugins for Qt Creator. I am now able to write plugins and build them from within the source tree (meaning my plugin code is in src/plugins directory and I modify src/plugins/plugins.pro to build my plugin along with others). I was wondering if it is possible to hav