Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Io is a nice cross-platform prototype-based object-oriented language.

Does anyone know of any GUI library for Io?

Io's name does not make it Google friendly.

share|improve this question
6  
One of the worst programming language names ever, google-wise, beating even C. – OregonGhost May 18 '09 at 15:35
5  
IO name is good, it is not IO's fault Google can't handle it. – OscarRyz Dec 9 '09 at 16:54

5 Answers

up vote 6 down vote accepted

GTK+ Bindings for Io

share|improve this answer

The 'official' GUI library is called Flux (formerly called Ion) and can be found in the main repository under

http://github.com/stevedekorte/io/tree/master/addons/Flux/

It is based on `OpenGL and thus platform independent (runs on any platform supporting OpenGL).

[edit]
Some examples on how to use Flux can be found in the samples directory:

http://github.com/stevedekorte/io/tree/master/addons/Flux/samples/

Some of them may not be working. Bug reports are welcome :-).
[/edit]

The GTK+ Binding was created a while ago and is not maintained anymore as far as I know. I would not recommend using it unless someone wants update it to compile with a current version and maintain it.

share|improve this answer

According to this, there are:

Io has bindings for many multiplatform libraries including Sockets, OpenGL, FreeType, PortAudio and others as well as some modules for transparent distributed objects and a user interface toolkit written in Io.

Additionally, you can use Cocoa through the objective C bindings, and the languages author was at one time working on an openGL based interface called Ion. I have seen the words 'IoDesktop' thrown around a lot too.

share|improve this answer
1  
IoDesktop, IoServer and the third binary don't exist anymore since at least 2007. There is only one binary called io now which can load addons. The OpenGL based interface addon Ion has been renamed to Flux. – MKroehnert May 15 '10 at 15:01

According to this, you can use GNUstep on linux and OSX. I have played with GNUstep for a few hours some day and found it rather pleasant.

share|improve this answer

According to this article there is a library for Cairo bindings. Also I noticed IO library for GTK+ in their projects list but the link seems to be dead.

If you are able to reach that (dead) page, please share it here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.