tags:

views:

151

answers:

3

Hi. I have installed (on Linux) and configured CDT successfully. I need to create dialog-based application with Eclipce CDT(C++). How can I to make it? Thx!

A: 

upd: Is it a library as MFC or WTL?

+1  A: 

Eclipse CDT is simply an IDE for C/C++ projects. It's not a library as such, but a development tool. You can read more at: http://www.eclipse.org/cdt/ If you start there, I'm sure you can find stuff on creating a GUI-based program.

dave
A: 

Give Qt a try: http://qt.nokia.com/developer/eclipse-integration

It is Open Source and cross-platform (supports Windows, Linux and Mac OS X)

Etienne Savard