PDA

Click to See Complete Forum and Search --> : c++ & Linux


Bobalandi
Nov 24th, 2007, 02:25 PM
Well, for windows gui's you know how there is windows.h, well, is there something like linux.h for linux gui's?

sunburnt
Nov 24th, 2007, 03:58 PM
There are lots of GUI toolkits for linux. The two most popular are GTK (http://www.gtk.org/) and QT (http://trolltech.com/products/qt). QT is free for use in open source applications, so don't let the "evaluation" button fool you.

There is also a C++ wrapper for GTK called GTKmm (or GTK--), which wraps the C functions into C++ objects.

kregg
Nov 24th, 2007, 06:16 PM
You can try here (http://www.yolinux.com/TUTORIALS/LinuxTutorialC++.html#GUIFRAMEWORKS).

Bobalandi
Nov 24th, 2007, 07:01 PM
Thanks... :D