Tagged Questions

10
votes
3answers
1k views

What are the relative merits of wxHaskell and Gtk2HS?

Which is better for developing GUI applications with Haskell, wxWidgets (via wxHaskell) or GTK (via Gtk2HS)? What are the pros and cons of each? Does it vary depending on which platform you are ...
4
votes
1answer
76 views

Override Events in Haskell

I'm writing a haskell program with GUI. When I write the following piece of code onClicked btn $ do print 1 onClicked btn $ do print 2 Pressing btn resulted in ...