Ok, so I'm not having a problem but I didn't know where else to place this question.
I'm just now "re-learning" C++, I never got into GUI programming before and it's been almost 4 years since I last touched this language.
Anyways, my question is simply, do you code a GUI or do you design it?
What I mean by this is, there are a lot of tools out there with a nice design view of what you're doing. You can drag and drop buttons onto a window, you can drag and drop a browserController and a bunch of other things.
There is still coding behind all of this, to make it work the way you want it, but do people code their own GUI as in they write code to create a new window, they write code to place a button in this window and on this position. Or do they use one of these design view thingies. Like Visual Studio and the QT Creator?
And when I say people I mean the general professional development. Programs like Netbeans, Eclipse, Chrome, Firefox etc etc.
The same with games, obviously they code the actions for the user and whatnot but do they have a program where they can place npcs, buildings etc or is it all done in code?