1

For Java there is Swing and Eclipse + Window Builder. Is there anything similar for C++ ? Any suggestions of tools or starting points ? Thanks.

UPDATE: I use Mac OS X but any suggestions are welcome

Cemre Mengü
  • 18,062
  • 27
  • 111
  • 169

3 Answers3

1

Take a look here. Qt is a C++ cross-platform library. I think that you will find it suitable for your needs. In the given link, you can find many other suggestions (like using Mono), GTK# (those are using C#), but in general, for C++, people usually suggest Qt or GTK (take a look at all posts and comments there).

Community
  • 1
  • 1
Aleksandar Vucetic
  • 14,715
  • 9
  • 53
  • 56
0

Microsoft Visual Studio is not bad. It has an interface builder, with all the run-of-the-mill buttons and things like that. Here it is: http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express

Someone
  • 428
  • 5
  • 17
  • The only way the interface builder works is if you change your project to use C++/CLI which isn't C++ – Seth Carnegie Jan 18 '12 at 02:26
  • @SethCarnegie The dialog designer works fine for native C++ projects. See [my comment here](http://stackoverflow.com/questions/8275517/cli-c-how-does-it-differ-to-normal-c-or-visual-c/8276147#comment10189610_8276147) for some information. – ta.speot.is Jan 18 '12 at 02:32
  • @todda.speot.is oh yeah, forgot about that. Thanks. – Seth Carnegie Jan 18 '12 at 02:36
0

Under the Windows platform, you can use Microsoft Visual Studio. QT is a cross-platform, under Windows and Linux.