tags:

views:

592

answers:

2

My understanding is that wxWidgets is for a number of programming languages (C++, Python, Perl, and C#/.NET) but that does not include C. Is there a similar framework for the C programming language, or is this not something that C is used for?

+1  A: 

You can try GTK+. I believe wxWidgets implementation for linux is written in GTK+.

Serge
A: 

If you don't mind working with older libraries there are quite a few. For example, there's a no-frills GUI kit for Ansi-C called IUP. Also, check out this list -- Search on that page for 'C API'. I think the most modern and well-known is the above-mentioned GTK+.

Neil Neyman