Gandalf
Gandalf

Reputation: 13683

C++ desktop applications framework

I am not new to c++,but i have not found a c++ desktop applications framework.I have found one and it seems to complex.Are there other frameworks available for c++ out there?.

Upvotes: 8

Views: 12069

Answers (4)

sbi
sbi

Reputation: 224029

There's wxWidgets and Qt, both Open Source and free. Qt became very popular recently.

Also, you might want to look at C++ Builder, which allows you to build C++ applications in a VB-like way using a component framework built in Delphi. (That's a commercial one. They used to have a free version, but I don't know whether that still exists.)

Upvotes: 3

Nikolaus Gradwohl
Nikolaus Gradwohl

Reputation: 20124

There are various choices when it comes to c++ Desktop app frameworks, it mainy depends on your skills and on the plattform you want the app to run.

Two Opensource Frameworks that are plattform independent, I have used so far are

The QT-Framework from trolltech now nokia and wxWidgets if you need something in the multimedia area have a look at openframeworks

Upvotes: 7

Dewfy
Dewfy

Reputation: 23614

Qt - forever! It is mature and cross-platform. http://en.wikipedia.org/wiki/Qt_(framework)

Upvotes: 5

Dr. Snoopy
Dr. Snoopy

Reputation: 56347

A great framework is Qt.

Upvotes: 2

Related Questions