Ilya
Ilya

Reputation: 311

Eclipse CDT, creating dialogs

I have installed (on Linux) and configured CDT successfully and now I need to create a dialog-based application with Eclipse CDT (C++). How can I do this?

Upvotes: 1

Views: 1270

Answers (2)

Symbiosoft
Symbiosoft

Reputation: 4711

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)

Upvotes: 1

dave
dave

Reputation: 11975

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.

Upvotes: 1

Related Questions