Grapefruit

From HaskellWiki
Revision as of 13:27, 11 July 2007 by Wolfgang Jeltsch (talk | contribs) (talk info update)
Jump to navigation Jump to search


About

Grapefruit is a library for creating graphical user interfaces in a declarative way. It is currently based on Gtk2Hs but implementations on top of other GUI libraries are planned for the future.

Grapefruit makes it possible to implement graphical user interfaces by describing them as systems of interconnected components. Components can be visible components like widgets and windows but also invisible components which provide certain control functionality. Component systems can be built from components by using methods from the Arrow and ArrowLoop classes.

Components communicate via signals and event streams. A signal denotes a time-varying value, and an event stream denotes a sequence of events occuring at discrete points in time. Several functions allow the construction of signals and event streams in a purely functional manner.

With Grapefruit, user interface descriptions always cover the complete lifetime of the respective interface. No explicit event handler registrations and no explicit recalculations of values are necessary. This is in line with the declarative nature of Haskell because it stresses how the user interface operates instead of how this operation is achieved. Internally though, signals and event streams are implemented efficiently using the event dispatching and handling mechanism of the underlying GUI toolkit.

Grapefruit is expected to support list signals and dynamic interfaces in the near future. A list signal denotes a time-varying list where each element has a unique identity. List signals can be used to describe parts of a GUI which cover a time-varying list of widgets. An algebra for list signals provides operations like concatenation, filtering and sorting. The key point is that when the value of a list signal changes, the values of the dependent list signals do not have to be recalculated completely but can be just updated to reflect the change.

The roots of Grapefruit lie in systems like FranTk and wxFruit. Grapefruit tries to combine concepts of these systems with new ideas to become a system which maintains a reasonable balance between ease of use and efficiency.

Status

As of June 2007, Grapefruit is in an early stage. The basic concepts are implemented but the implementation is still subject to notable change.

Things planned for the next months cover the completion of dynamic user interface and list signal support as well as the development of a framework for animations. Furthermore, work on formal specification and verification of GUI properties based on Grapefruit’s GUI programming interface is about to start. This will probably be done using Ivor but it is intended to (also) use Epigram for this in the future.

Source code

The source code of Grapefruit resides inside a darcs repository under http://softbase.org/grapefruit/darcs/main/. To get a copy, you can use the command darcs get http://softbase.org/grapefruit/darcs/main.

Documentation

There is also documentation generated by Haddock. This documentation comes in two flavors. The API documentation covers only the public interface while the complete documentation covers also the internals. Note that the documentation might be a bit out of date since it is not automatically regenerated on every commit yet.

Grapefruit-related Talks