Qt Creator 3.4.0 Released 20
jones_supa writes: Qt Creator 3.4.0 has been released with many new features. Qt Creator is a C/C++ IDE with specialized tools for developing Qt applications, and it works great for general-purpose projects as well. The new version comes with a C++ refactoring option to move function definitions out of a class declaration, auto-completion for signals and slots in Qt5-style connects, experimental Qt Test and Qt Quick Tests support in the Professional and Enterprise edition, support for 64-bit Android toolchains, and various other improvements. More details on the new version can be found in the official announcement and the changelog.
Wonder how hard they will press (Score:3, Interesting)
The "features only found in the for-pay" version is starting to ramp back up in Qt.
The Nokia days were tumultuous, but at least they weren't trying to scrape money out of the developers.
Re: (Score:2)
Re: (Score:2)
so some day you will use a toolkit like qt on top of opengl, right? like tomorrow?
Freedom at last (Score:1)
I didn't know the creator of qt was ever locked up.
Re: (Score:2)
Why would anyone want to put a function definition in a class declaration? As I recall, defining a function in the class declaration automatically makes it inline, but that can also be achieved by declaring the function inline.
I also recall that inline functions can considerably increase the size of the resulting executable, so having large inline functions is a bad idea. If you define all your functions in the class declaration you'd end up with a very large program.
Declaring a function inline does not guarentee the function will actually be inlined -- the compiler decides whether it'll be inlined or not, and generally only small functions will be inlined, so if you're using a compiler made within the last decade, large inline functions are not a problem. What inline DOES do is modify the function's linkage specification, but that's a different matter.
I had no idea (Score:2)
Re: (Score:2)
Reminds me of a skate magazine I read in the 80s where people would write in to say they still hadn't received the free Nelson Mandela advertised on a previous issue's cover.
Re: (Score:1)
Best C++ IDE (Score:4, Interesting)
It' s lightweight, packed the most popular features found in VS and Visual Assist, packed with great features of it' s own (Ctrl-K Locator), runs perfectly on Linux, Windows and OSX (for those of us who switch platform often it' s a bliss) , has high customizability and it's extremely friendly to custom build systems.
All this with a very minimalist and straightforward user interface that never gets in the way (compared to the alternatives mentioned above).
Oh and besides all that, also it's great if you like to develop for Qt. It's a shame that people associates naturally to it as if it's was the only use.. because they are missing out an incredible tool.
Re: (Score:3, Insightful)