Difference between revisions of "Grapefruit"

From HaskellWiki
Jump to navigation Jump to search
m (darcs typo)
(documentation link fixes)
Line 25: Line 25:
 
== Documentation ==
 
== Documentation ==
   
There is also documentation generated by [[Haddock]]. This documentation comes in two flavors. The [http://softbase.org/grapefruit/doc/api API documentation] covers only the public interface while the [http://softbase.org/grapefruit/doc/api complete documentation] covers also the internals.
+
There is also documentation generated by [[Haddock]]. This documentation comes in two flavors. The [http://softbase.org/grapefruit/doc/api/ API documentation] covers only the public interface while the [http://softbase.org/grapefruit/doc/cif/ complete documentation] covers also the internals.

Revision as of 00:09, 4 May 2007


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 build from components by using methods from the Arrow and ArrowLoop classes.

Components communicate via signals and event streams. A signal denotes a time-dependent 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.

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 May 2007, Grapefruit is in an early stage. The basic concepts are implemented but the implementation is still subject to notable change. Features planned for the next months cover support for dynamic user interfaces and animations as well as better handling of simultanous event occurences.

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.