Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a wxWidgets framework for C?

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?

like image 751
davidmytton Avatar asked Jan 24 '23 04:01

davidmytton


1 Answers

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+.

like image 149
Neil Neyman Avatar answered Jan 30 '23 01:01

Neil Neyman