I'm looking for a cross-platform widget toolkit that I can use for a C application that I'm developing. This application will only serve as a small front-end. I'm keen on good design and usability. Speed is less of a priority, but I'd still like something lightweight.

I realise similar questions have been asked, but I'd like an answer based on my requirements.

link|improve this question

Are you doing just plain C instead of C++? And which platforms are you targeting? You want answers more specific to your requirements, you'd better be more specific on them. – Stephen Chu Feb 20 '11 at 16:00
@Stephen Chu: C, as the tag suggests. I don't think target platform matters too much. By cross-platform, I mean it should target as many platforms as possible, because I'm not certain what the end-user is going to be using. – someguy Feb 20 '11 at 16:20
feedback

3 Answers

up vote 1 down vote accepted

For C, I'd say the prime canditate is gtk. You'd want to use C++ for qt or wxwidgets, though the latter also has lua (yay!) bindings, which is the C way to get around Greenspun's tenth rule. Depending on your application domain less-hyped (but still mature) libraries like agar deserve some consideration. I'd mention fltk if it weren't for C++, too. Truly leet people would use xaw and have users install an X server under windows. On an again more serious note, eagle has to be mentioned just for coolness value, although being C++, too. Wikipedia gives yet more options.

link|improve this answer
Are you sure wxWidgets is usable from C? It supports quite a few languages, but I'm not aware of C support. – Jerry Coffin Feb 20 '11 at 16:10
Whoops, yes, you're right. – barsoap Feb 20 '11 at 16:16
Thanks. Agar looks interesting. I'll look into it as well as GTK+. – someguy Feb 20 '11 at 16:23
gtk-server.org is also a way to delay the 10th law. :-) – Amigable Clark Kant Feb 20 '11 at 21:25
feedback

The most obvious choice for C would probably be GTK+ (and yes, despite the "+" in the name, it's a C toolkit, though you can certainly use it from C++).

link|improve this answer
feedback

I would say, use GTK-server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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