Reputation: 331
By "visual development environment", I do not mean Microsoft Visual Studio. I'm looking for a node-based IDE in which programs are constructed graphically and converted to plain text at compile time. The content of functions would still have to be typed out, of course, but everything else would be visual. Sort of like a flow chart that you type your code into directly.
I feel like this should exist but I can't seem to find anything like it.
Upvotes: 1
Views: 228
Reputation: 6930
DRAKON Editor http://drakon-editor.sourceforge.net/ It it supports visual programming in C++, also support QT. It also supports many other programming languages. Why to use DRAKON than other diagramming systems?
More about DRAKON here: http://en.wikipedia.org/wiki/DRAKON
Upvotes: 0
Reputation: 30577
There are tools which allow you to design your software using UML. Some of these tools include code generation capability (although as you say, you may have to enter code to implement decision points, etc).
One example is IBM Rational Rose. An open source example is ArgoUML.
Upvotes: 1