davidmytton
davidmytton

Reputation: 39264

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?

Upvotes: 5

Views: 10589

Answers (3)

user4710450
user4710450

Reputation:

Obviously No, Because it has predefined classes but if you insist you can try GTK which is for C.

Upvotes: 0

Neil Neyman
Neil Neyman

Reputation: 2158

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

Upvotes: 7

Serge
Serge

Reputation: 7694

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

Upvotes: 2

Related Questions