NO

Author Topic: Is there a GUI toolkit for C (not C++)?  (Read 8714 times)

Freddy

  • Guest
Is there a GUI toolkit for C (not C++)?
« on: September 27, 2006, 07:10:07 PM »
Is there GUI toolkit for C, so I can use with Pelles C?
If it's multi-platform then it would be perfect!

cane

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #1 on: September 28, 2006, 09:14:38 AM »
I've also looked for it some time ago. You can find a pretty comprehensive list of GUI toolkits here:

http://home.pacbell.net/atai/guitool/

Specifically for C, this seems nice:

http://www.tecgraf.puc-rio.br/iup/

But don't take my words for the best advise, because I have a very limited experience with GUIs.

Freddy

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #2 on: September 28, 2006, 04:30:25 PM »
Most GUI toolkits are for C++. :(
It's very hard to find something about C language at google, because C is just one letter. Usually I have to type C++ to find something for C. But I can't find a GUI for C.

An option would be to use GTK+, but people say GTK+ on windows is not good. Also, I don't know how to install it and it has lots of dependences (DLL hell).

Freddy

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #3 on: September 30, 2006, 05:47:00 AM »
Found this: www.japi.de
Provides Java GUI for C and other languages.
I'll try it a bit more.
Has anyone used this?

Gerome

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #4 on: September 30, 2006, 11:43:53 PM »
Hi,

Quote from: "Freddy"
Found this: www.japi.de
Provides Java GUI for C and other languages.
I'll try it a bit more.
Has anyone used this?


Yes!
It's really impressive and works fine.
I've also used it with my scripting language without any problems :)

Freddy

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #5 on: October 09, 2006, 08:20:55 PM »
Gerome, I downloaded your scripting language and I'm really impressed.
It's very good! I like how it has usefull built-in functions but still have access to the Win32API!
Is it possible to call a C programmed function from there?
Easy interface with Pelles C would be nice!
Also, I think a GUI Builder would be great help. Because having to find Forms/Controls sizes and positions is a pain.

Gerome

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #6 on: October 10, 2006, 11:06:44 AM »
Hello,

Quote from: "Freddy"
Gerome, I downloaded your scripting language and I'm really impressed.
It's very good! I like how it has usefull built-in functions but still have access to the Win32API!
Is it possible to call a C programmed function from there?
Easy interface with Pelles C would be nice!
Also, I think a GUI Builder would be great help. Because having to find Forms/Controls sizes and positions is a pain.


Thanks for your appreciation Freddy :)
It's is possible to call any C function from Fbsl by making a DLL with your C functions, either CDecl or Stdcall ones, Fbsl handles them automagically :)

#DllDeclare yourdll( "myfooA", "myfooB" )
myfooA( param1, ... )

and yes there is a RAD in progress that is entirely developped in Fbsl!
Have a look there :


Enjoy ;)

ivanhv

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #7 on: January 10, 2007, 11:29:07 PM »
Of course, GTK.

Look for winglade at google. There are precompiled packages with SDK and runtimes.

It's multiplatform (the best you would get as multiplatform), but thre's no space for Windows CE (big too much, I fear)

Freddy

  • Guest
Is there a GUI toolkit for C (not C++)?
« Reply #8 on: February 15, 2007, 05:39:17 AM »
This one looks good: http://www.clarographics.org/
But I can't build it. :(

Can anyone help me build this library with Pelles C?
Thanks

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Is there a GUI toolkit for C (not C++)?
« Reply #9 on: February 16, 2007, 03:48:46 PM »
Maybe less advanced, but this looks somewhat interesting too...
http://enchantia.com/software/graphapp
/Pelle