What free c++ IDE has the best syntax highlighting? ( not including VS2012 )
#1 Members - Reputation: 754
Posted 06 October 2012 - 09:32 PM
If this post was helpful and/or constructive please give rep.
SFML2.0 Download http://www.sfml-dev.org/download.php
SFML2.0 Tutorials http://www.sfml-dev.org/tutorials/2.0/
#4 Staff - Reputation: 8994
Posted 07 October 2012 - 12:29 AM
No one should ever be using the original Bloodshed Dev-C++ anymore. See "why you shouldn't use Dev-C++". It's positively ancient as far as software goes, it's not maintained, it's not supported, and it's absolutely riddled with bugs that will never be fixed.I used to use DevC++.
If you really like Dev-C++ there are two updated versions however: Orwell Dev-C++ and wxDev-C++. See "should you use an updated version of Dev-C++".
I still wouldn't choose it personally, but objectively examining them there aren't any real problems with Orwell or wxDev-C++ except that it can be harder to find support.
I haven't used it extensively, but QT Creator looks quite good and is very popular and would probably be worth a look.
- Jason Astle-Adams.
From my blog: 20 ways to advertise your game | What next? Intermediate to advanced C++
How to make games WITHOUT programming | 4 reasons you aren't a successful indie developer
#5 Members - Reputation: 1612
Posted 07 October 2012 - 10:27 AM
It's fully featured, mature, and works great for me. BTW, i second not using Dev-C++. I used it in the past, and it's a Pain In The ARSE
---(Old Blog, still has good info): 2dGameMaking
-----
"No one ever posts on that message board; it's too crowded." - Yoga Berra (sorta)
#7 Members - Reputation: 2047
Posted 07 October 2012 - 01:03 PM
Other IDEs such as Eclipse or KDevelop beat the crap out of Code::Blocks and wipe the floor with it when it comes to code completion, helpful popups (showing comments on API functions etc.) and highlighting.
The syntax highlighting built into Code::Blocks is the one built into the Scintilla editor component, which is a very simple string-matching algorithm that is totally agnostic of syntax. Which means for example that begin and end, which are C++ standard library names will be highlighted as such, even if they are members of a custom class of your own.
This may be "OK" for you, or not... you decide.
#8 Marketplace Seller - Reputation: 9297
Posted 07 October 2012 - 01:21 PM
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal
#9 Members - Reputation: 2820
Posted 07 October 2012 - 01:37 PM
Thank you for that imagery, although why you think wiping the floor with crap is a good idea may need further clarification.Other IDEs such as Eclipse or KDevelop beat the crap out of Code::Blocks and wipe the floor with it...
Professional Free Software Developer
#10 Members - Reputation: 243
Posted 08 October 2012 - 02:22 AM
The syntax highlighting is very decent. For example highlighting of a symbol under cursor highlights it correctly inside its scope, not just the same word in the whole editor. Code completion just works (unlike Visual Studio's Intellisense).
I like also small refactoring features, like changing declaration of a method in a header file will automatically sync the change to the implementation in the .cpp file. The code editor has also features like follow symbol (Ctrl+click), find usages, switch between definition and declaration, etc. These things in Qt Creator just work, while in other IDEs I've tried, only work sometimes.
Although the IDE is not as customizable as Visual Studio or Eclipse (forget dockable panels), it's organized quite ergonomically and it's very fast (unlike eg. Eclipse).
You can download the SDK installer here: http://qt-project.org/downloads
It's worth to mention, that the Qt Creator IDE was designed to work with the Qt libraries, which itself is a great cross platform application toolkit for writing any kind of app imaginable. It literally runs everywhere, eg. besides desktop platforms also ARM and embedded platforms, Android, soon iOS. You can of course use Qt Creator and not use the Qt libraries if you don't need them. However if you are into C++ and cross-platform development, I strongly recommend looking into Qt itself.
#11 Members - Reputation: 960
Posted 08 October 2012 - 03:40 AM
As long time VC++ user I say the switch to Code::Blocks is not agonizing at all. Yes, it feels (and is) inferior, but... not really that much (depends on your habits and what you need, I have heard debugger is much poorer, althrough I don't use it so I dunno). Anyway, it was much nicer than Eclipse (which I abandoned quickly, was not to my taste and too slow).
Still, I would also try Qt-something, it might be worth checking first.
#12 Members - Reputation: 311
Posted 10 October 2012 - 03:13 AM
Do you mean allot of colors or most pretty color scheme which is configurable with most IDE's as well.
If you where looking for a list of cross platform IDE's a search true this forum would have given all your answers.
Edited by DARSC0D3, 10 October 2012 - 02:10 PM.
#13 Crossbones+ - Reputation: 3861
Posted 10 October 2012 - 03:37 AM
#14 Members - Reputation: 653
Posted 10 October 2012 - 04:02 PM
The only issue is that vi or emacs are barely IDEs, you can integrate build and debugging into emacs buffers, even visualize step by step and breakpoints, and local variables like VS, but it is difficult to setup and gdb is not as flexible as MS debugger.
As for highligting and completion, vi has nice plugins that are fast and works ok. emacs no, emacs is purely syntaxic, plugins to add semantic are horribles I hear.
and yet, emacs is still much better at auto indenting than VS is. But definitely not as good as Eclipse.
The best I have seen so far is Eclipse with java. With C++ it is very good as well, but less, because C++ is un-parsable.
the next best thing : VS with VisualAssistX.
I hear QtCreator is at least as good as well.
#15 Members - Reputation: 251
Posted 15 October 2012 - 11:05 PM
Personally I use Visual Studio 2010 with the Visual Assist addon. This let's you configure the syntax highlighting and also improves the intellisense a great deal
They just see the big blue 'e' and think "Internet". The thought process usually does not get much deeper than that.
Worms are the weirdest and nicest creatures, and will one day prove themselves to the world.
I love the word Clicky
#16 Members - Reputation: 251
Posted 15 October 2012 - 11:08 PM
I'm looking for a replacement to VS2012 for a cross platform project.
Sorry. I missed this part.
They just see the big blue 'e' and think "Internet". The thought process usually does not get much deeper than that.
Worms are the weirdest and nicest creatures, and will one day prove themselves to the world.
I love the word Clicky






