GHC/GUI programming

From HaskellWiki
< GHC
Revision as of 12:37, 21 November 2012 by Henk-Jan van Tuyl (talk | contribs) (→‎Starting points: Removed the link for wxHaskell to SourceForge; updated the link for the homepage of HOC; added a link to the wxWidgets License)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page contains notes and information about how to get the various GUI packages available for GHC up and running on different platforms, and some basic usage information to get you going.

Please feel free to add stuff here.

Starting points

  • wxHaskell is a GHC binding to the wxWidgets cross-platform GUI library. One of the key benefits of wxWidgets is that it provides code portability with a 'native' look and feel on Unix, Windows and Mac platforms. License allows free use of the libraries in open or closed source software (wxWidgets license).
  • HOC is a GHC binding to the Mac OS X Cocoa APIs for GHC. The key benefits are the ability to interface with most Cocoa frameworks, and to use GUIs constructed using Interface Builder. See the HOC homepage. BSD licensed.
  • Gtk2Hs is a GHC binding to the Gtk+ portable GUI library. At the time of writing it is probably the most complete and well-supported GUI option for GHC. It provides some degree of native look and feel on Windows but not on Mac yet. See Gtk2Hs homepage. LGPL licensed.

Building and installing