c++ gui application

Sep 11, 2010 at 9:04am
I've been programming c++ for a year now, and i want to make a gui application.
There are no standard-build-in classes,.. to make a gui application. So here is the question: what gui libraries do you recommend and why?

hannes
Sep 11, 2010 at 9:16am
closed account (EzwRko23)
Qt. Big, heavy, compiles forever, but can do probably all what you want and much more (and makes porting your applications easier). I also used wxWidgets and it was quite a good experience - seems much lighter than Qt.
Last edited on Sep 11, 2010 at 9:18am
Sep 11, 2010 at 11:55am
thanks for your quick reply. Anyone else suggestions? I want to have a couple of opinions to choose what's best for me.

hannes
Sep 11, 2010 at 12:41pm
I liek Qt
Sep 11, 2010 at 12:42pm
You just want to have a GUI framework, use FLTK.
I recommend it because it doesn't contain all the things you don't need. You need a GUI framework so you get a GUI framework - no INI, XML Parser, browser component, ..
QT is a HUGE framework.
FLTK is easy, clean and fast. If you want more, use the other frameworks. Thats how a FLTK helloworl program would look like:
http://www.fltk.org/doc-1.1/basics.html#basics

http://www.fltk.org/doc-1.1/toc.html


Some other framworks:
QT
GTKmm (C++ wrapper for GTK+)
wxWidgets
Last edited on Sep 11, 2010 at 12:42pm
Sep 11, 2010 at 12:48pm
user32.lib and its fellow runtime for that
gdi32.lib for the time being.
kernel32.lib istn't for that must.
Sep 11, 2010 at 3:43pm
qt toolkit
Sep 11, 2010 at 4:22pm
Qt is awesome, even if it is huge. wxWidgets is also good, but for me not as.

-Albatross
Last edited on Sep 11, 2010 at 4:22pm
Sep 11, 2010 at 5:52pm
ok, thanks for your advice. I think i'll go for qt now.

many thanks,
hannes
Topic archived. No new replies allowed.