is there a full-featured framework for C that is similar to Qt?

link|improve this question
Can it not be C++? – Nick Bedford Oct 8 '09 at 1:31
1  
why similar to Qt. What are you looking for that you can not find in Qt? What kind of application? – Adriaan Oct 8 '09 at 12:16
feedback

1 Answer

up vote 7 down vote accepted

It's called GTK+ (Gimp ToolKit). Its actully quite nice to use, and any program that you write using it will also work on KDE! It's syntax is also pretty nice (for C). It's syntax is very close to Qt's (see for yourself in this tutorial).

link|improve this answer
2  
GTK+ comes with sockets, threads like qt ? Works good on Windows and Mac ? Thanks! – rui Oct 8 '09 at 1:44
2  
Minor nitpick, Lucas: "it's" means "it is." If you want the possessive, it's "its." – Chris Lutz Oct 8 '09 at 1:47
1  
GNOME is the desktop environment based on GTK+, KDE is based on Qt. – sth Oct 8 '09 at 1:51
@rui: Gtk+ builds on top of Glib. Glib includes GIO whose GSocket provides network sockets. Glib also provides threading support via the g_thread_* family of functions. – ephemient Oct 8 '09 at 3:03
1  
@rui: The best way to say thanks would be to give me the accepted answer, I'm addicted to this rep stuff. – Lucas McCoy Oct 8 '09 at 3:33
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.