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
> 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
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";
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
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
> 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
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
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
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