How to program GUI in C?

Asked

Viewed 2,021 times

3

What Apis give me to create GUI using C?

I searched and found a GTK+ call, but I want to know the name of other libraries to create GUI using C in the same style as GTK+ but facing Windows.

If possible, post your respective websites.

1 answer

3


Besides the GTK+ that you already know there are a multitude of libraries that can be used. I will quote the best known ones to C (not C++, as requested):

  • API Win32 (Windows standard library, not just the GUI part - tutorial)
  • IUP - (cross Platform, used mainly with Lua but can be used with C and other languages)
  • Tk - (used with Tcl but can be used with C and consequently with other languages)
  • Xforms
  • XVT
  • EFL

There is no way to put examples in such a broad question, but they exist in the respective websites. Examples of everything is a lot, putting some just to say that has not going to make the answer be better.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.