packages feed

WxGeneric-0.6.1: WxGeneric.cabal

Name:           WxGeneric
Version:        0.6.1
Copyright:      Mads Lindstrøm <mads_lindstroem@yahoo.dk>
License:        LGPL
License-file:   wxWidgetsLicense.txt
Author:         Mads Lindstrøm <mads_lindstroem@yahoo.dk>
Maintainer:     Mads Lindstrøm <mads_lindstroem@yahoo.dk>
Homepage:	http://www.haskell.org/haskellwiki/WxGeneric
Category:       GUI
Build-Depends:  SybWidget >= 0.5.2 && < 0.6.0,
                base >=4.1.0 && < 4.3.0,
                haskell98 >= 1.0.1 && < 1.1.0,
                mtl >= 1.0.0 && < 1.2.0,
                xtc >= 1.0 && < 1.1.0,
                wx >= 0.12.0 && < 0.13.0,
                containers >= 0.2.0 && < 0.4.0,
                wxcore >= 0.12.0 && < 0.13.0
Tested-with:    GHC==6.12.1,GHC==6.10.4
Synopsis:       Generic (SYB3) construction of wxHaskell widgets
Build-type:	Simple
Stability:      experimental
Description:
	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. 
Ghc-options:    -Wall
Exposed-modules:
    Graphics.UI.WxGeneric
      , Graphics.UI.WxGeneric.GenericWidget
      , Graphics.UI.WxGeneric.Composite
      , Graphics.UI.WxGeneric.Layout
other-modules:
        Graphics.UI.WxGeneric.GenericList
      , Graphics.UI.WxGeneric.GenericClass
      , Graphics.UI.WxGeneric.GenericWidget.Parameters
      , Graphics.UI.WxGeneric.GenericWidget.WidgetTree
Extra-Source-Files:
        examples/makefile
      , examples/Alarm.hs
      , examples/AlarmMapValue.hs
      , examples/AlarmSpecialized.hs
      , examples/Examples.hs
      , examples/TupleExample.hs
      , examples/EventPropagation/makefile
      , examples/EventPropagation/AlarmEventPropagation.hs
      , examples/EventPropagation/AllEventsComposite.hs
      , examples/EventPropagation/IntEntry.hs
      , examples/EventPropagation/PropagateEvents.hs
Extensions:
hs-source-dirs: src