Favorite IDE/editor for Qt
-
Qt Creator, my favorite feature is the integrated Qt documentation and with FakeVim I don't miss vim at all.
-
I have been using QtCreator for almost 3Years,and i can say i got addicted to it.Now the current projects requirement is MSVC2008 with CMake,i have convinced my manager with QtCreators ease of use,and now he started using it,Im using MSVC2010 at office,and CodeBlocks at Home.
-
I normally develop on a Mac, and then test on Windows and Solaris. Qt Creator is about the only tool that works across all these platforms (Java IDE's NetBeans/Eclipse would work too, but they are too heavy). That said the editor features are very poor compared with MSVS especially VS 2012 (which frankly is the ultimate for C++).
-
[quote author="sptrakesh" date="1360793058"]I normally develop on a Mac, and then test on Windows and Solaris. Qt Creator is about the only tool that works across all these platforms (Java IDE's NetBeans/Eclipse would work too, but they are too heavy).[/quote]
I like QtCreator for the same reasons. At work i have a Windows at home two kinds of linux and one Windows. When i workin on some project i don't care about OS and just start develop on same project without any changes. -
sptrakesh: What makes MSVS better for C++ development than Creator? Which features do you miss the most? What should we improve to make it more appealing to MSVS users?
-
Can i tell few things about code editors(Not whole IDE)?
Code collapseing is still not perfect in QtCreator, frequently its lose entry points. Only reopen a file solves problem, but all code blocks are become expanded. Somehow MSVS remember all settings even if reopen whole project. Besides i didn't find commands for collapse all and expand all in QtCreator.
Next useful thing in MSVS editor is #regions, it is very convenient. -
I have to admit that I hardly even use code folding (except for the fold-initial-comment thing which I love!): I want to see my code at all times. There are some known issues in that area, yes:-/
Code folding is stored as part of your session, not as part of the project. That is where all the breakpoints, bookmarks and other non-project-related data is stored as well, so I think that is the best place to put it.
Expand All and Collapse All are both available. They are not bound to any key by default... you can do that in Tools>Options>Environment>Keyboard. Going through that list is always a good idea: We have a lot of functionality without any keyboard bindings.
Creator does indeed not support #regions.
Please consider to add a feature request to our bugtracker if you are missing this or something else. If enough people ask for it we might implement it;-)
-
Andre: You can unbind keys, too:) I actually do that to avoid accidental folding
-
I wish, I could use Eclipse, because I used it for years, also for Qt project.
But in the last time, since Qt Conference 2012, I use Qt Creator because I wanted to use them for Qt project.But I really miss functions (for example a good/working debugger or tabs for every open cpp/h file).
-
[quote author="Tobias Hunger" date="1360838300"]sptrakesh: What makes MSVS better for C++ development than Creator? Which features do you miss the most? What should we improve to make it more appealing to MSVS users?[/quote]
A few items would be:
Code completion is very limited. Placing using directives within the function scope usually ends up with no completion support in Creator.
MSVS will usually show documentation from included header file when showing completion hint. Very useful needless to say.
MSVS IDE features generally work when working with templated code, Creator usually leaves it to the developer.
Ability to pin documents to panes. I have more of less similar layout for both Creator and MSVS. Two editor panes, one in which I view header files and the other the implementation files. Creator does not distinguish between the panes (which may also be a good feature for some), while VS keeps the open document stack separate for each pane.
That said, I must say I prefer the way creator automatically shows folders in the project view (much like Java based IDE's), while MSVS makes you create a group to represent the same