vote up 4 vote down star
3

I'm looking for some feedback from anyone that has had a chance to spend some time using Troll Tech's new IDE, Qt Creator. It's in public beta at this point, so there might not be many using it just yet. But, I think any 3rd party feedback might be useful.

Also, if you do a lot of Qt development, it would also be great to hear about what IDE you do rely on and why you think it is the best option for Qt development.

flag

6 Answers

vote up 4 vote down check

Qt creator's aim is to make it as easier to get started with Qt, and together with other strategic steps by Nokia (like LGPLing Qt) is intended to speed up adoption of the toolkit.

Qt Creator does not compete with Eclipse or Visual Studio, though it can replace it in many scenarios. It is a lightweight IDE that on Windows also includes a full development toolchain. It has gathered an active community of developers and testers from day cero. Although the initial focus is on qmake-based projects, the idea is that it will support other tools though its plugin-based architecture.

You can take a look at some videos at the page

One of the most refreshing features is how easy it is to go "full screen" and forget you are using an IDE. Finally bear in mind that it is considered beta and you may run into the occasional segfault. All in all, I see a bright future for Qt creator.

(Disclaimer, my company created the crossplatform installer that Qt Creator uses)

link|flag
vote up 1 vote down

Telling you the truth, I think It gives a great fight to the .Net GUI creating tools. If the "old" QT was better than MFC tools than the new QT creator gives a tool that is mind blowing.

But I will not use it for something else than GUI, It is too child like...

link|flag
vote up 2 vote down

I've use it for C++ code editor for a few hours and my first impression is Qt Creator is snappy, code complete is fast and seems to work for my limited test. I also like the clean look. I've been looking for a C++ code editor for Linux to replace GVIM, and i like what i saw in Qt Creator 1.0 so far. If they keep developing it, and make it a general IDE not just for creating Qt apps, i can see myself ditching GVIM for Qt Creator. By the way 1.1 is just released. Downloading it tonight...

link|flag
vote up 1 vote down

I would definitely recommend Qt creator. It's very simple at this point but also refreshing and easy to work with. Things like context sensitive help and intelligent code completion make it worth while.

link|flag
You say it is simple at this point. That kind of implies that things are missing that you are use to relying on. Could you elaborate further on this? – Fostah Jan 29 at 14:59
vote up 2 vote down

There are a couple of utilities that let you use visual studio with the GPL version (ie without the commercial integration tools)

I don't have a more permanent link (http://www.qtcentre.org/forum/f-qt-programming-2/t-the-how-to-guide-qt4-with-visual-studio-2008-10999.html ) these handle the extra moc steps for you in VS2005/8 - hopefully the LGPL release will create the impetus for a lot more tools

EDIT -with the LGPL release of QT the Visual Studio add-in is now also available free

link|flag
vote up 2 vote down

I'm using Visual Studio 2008 with the commercial QT integration for Visual Studio and it's the best. unfortunately I hadn't had the chance to try the Qt Creator.

Edit: QT integration is indeed not available for open source development. Atleast not legally...
Previously I've worked with QT using KDevelop, using minGW and using just Visual Studio without the integration, creating the .vcproj using qmake and using the designer to edit controls.

The integration plugin has a few advantages over most of the above:

  • it contains all the features of the designer and more related features that are you don't get in the designer such as the ability to double click a widget to easily connect a signal from it to a slot in the widget's class.
  • Full debugger support for all of QT's types and generic containers. this is basically an addition to VC's autoexp.dat file.
  • Visually manage embedded images, much like VC's resource manager
  • creates moc files automatically for classes deriving from QObject without a need to pass through qmake. infact, you don't even need to know about qmake.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.