I found the reactive-banana-wx and wonder if there is also a similiar package for gtk as reactive banana should support gtk according to http://www.haskell.org/haskellwiki/Reactive-banana
相关问题
- Understanding do notation for simple Reader monad:
- Making Custom Instances of PersistBackend
- Haskell: What is the differrence between `Num [a]
- applying a list to an entered function to check fo
- Haskell split a list into two by a pivot value
相关文章
- Is it possible to write pattern-matched functions
- Haskell underscore vs. explicit variable
- Top-level expression evaluation at compile time
- Stuck in the State Monad
- foldr vs foldr1 usage in Haskell
- List of checkboxes with digestive-functors
- How does this list comprehension over the inits of
- Replacing => in place of -> in function type signa
The
reactive-banana
library can be used on top of any imperative event-based library via theAddHandler
type.However, it is often convenient to write a little glue code that is specific to the library you want to build on. This is what
reactive-banana-wx
does for thewx
library. I have trouble installing GTK on my Mac, that's why I haven't written a similar glue code package for thegtk
library. However, other people have used reactive-banana with gtk, for instance John Lato in hisjaek
project.