Difference between revisions of "WxGeneric"

From HaskellWiki
Jump to navigation Jump to search
Line 74: Line 74:
 
Questions, ideas or comments should be directed to [https://lists.sourceforge.net/lists/listinfo/wxhaskell-users wxHaskell-users mailing list]. If messages are of a more private nature, you can contact me, the auther of WxGenerics, at [mailto:mads_lindstroem@yahoo.dk Mads Lindstrøm].
 
Questions, ideas or comments should be directed to [https://lists.sourceforge.net/lists/listinfo/wxhaskell-users wxHaskell-users mailing list]. If messages are of a more private nature, you can contact me, the auther of WxGenerics, at [mailto:mads_lindstroem@yahoo.dk Mads Lindstrøm].
   
There is also a [http://trac.haskell.org/WxGeneric Bug and feature request -tracker here].
+
There is also a [http://trac.haskell.org/WxGeneric bug and feature request -tracker here].

Revision as of 12:59, 8 May 2009


Using an algebraic data types structure and field names, this library constructs widgets for wxHaskell. It can handle data types with single or multiple constructors, as well as recursive data types.

The library is designed to integrate smoothly with wxHaskell. First, by making it easy to integrate WxGeneric-widgets into existing wxHaskell programs. Second, by letting a user extend WxGeneric using mostly wxHaskell function.

Links

Download and Install

Before installing WxGeneric you need:

You can get the sources either from hackage or from WxGeneric's Darcs repository:

darcs get http://code.haskell.org/WxGeneric/

After getting the sources do:

cd WxGeneric
runhaskell Setup clean
runhaskell Setup configure --user --prefix=$HOME
runhaskell Setup build
runhaskell Setup install

Then you is ready to try the examples, see <path to WxGeneric>/examples.

Examples

You can find plenty of examples in the WxGeneric examples folder. Especially, you can find many small examples are found in Examples.hs in WxGeneric/Examples folder.

Screenshots

The simplest possible example is editing an Int:

Int Example

If you have downloaded and installed WxGeneric you can run this example yourself by:

ghc examples/Examples.hs -e anyInt

One nice feature of WxGenerics is that it handles recursive data types. For example:

data MyTree = Branch { left :: MyTree, right :: MyTree }
            | Leaf Int Double
              deriving Show

will produce a editable widget, such as:

MyTree Example

If you have downloaded and installed WxGeneric you can run this example yourself by:

ghc examples/Examples.hs -e tree

Contact Information

Questions, ideas or comments should be directed to wxHaskell-users mailing list. If messages are of a more private nature, you can contact me, the auther of WxGenerics, at Mads Lindstrøm.

There is also a bug and feature request -tracker here.