Announce: HTk - a GUI toolkit for Haskell

Christoph Lueth cxl@Informatik.Uni-Bremen.DE
30 May 2002 11:38:32 +0200


Johannes Waldmann <joe@isun.informatik.uni-leipzig.de> writes:

> >      HTk, a graphical user interface toolkit and library for Haskell.
> 
> what are the differences to FranTk ( http://haskell.cs.yale.edu/FranTk/ ) ?

In a nutshell, it uses a different event model. As far as I
understand, FranTk allows you to describe the user interface by
combining behaviours, which are either continuous behaviours or
discrete events.

HTk is a wee bit less abstract and only has Events, which you can
synchronise on, but on the other hand you are less constrained, since
you can put any IO action into your events, and you have full control
of the concurrency of your interface; you can have as many or little
threads as you want.

--C.