Re: [Haskell-cafe] Idea for a very simple GUI llibrary

2009-11-23 Thread Martin DeMello
Has there been real world adoption of any of these, in the shape of a moderately complex end-user application that is not just a library demo? martin On Mon, Nov 23, 2009 at 8:48 AM, Keith Holman hol...@gmail.com wrote: You should also check out Fudgets and Tangible Functional Programming.

[Haskell-cafe] Idea for a very simple GUI llibrary

2009-11-22 Thread Maurí­cio CA
Hi, Here is a sketch for a library with these properties: - Easy to test. All Haskell code can be tested in a text terminal. Also, testing code that uses the library can also be done without using a GUI. - Extremely easy to document and use. - Not even close to Gtk2hs power, but enough for

Re: [Haskell-cafe] Idea for a very simple GUI llibrary

2009-11-22 Thread Luke Palmer
Nice idea. I will try it if you write runGUI :-) This is an imperative style library. For more Haskellian GUI library ideas, see Fruit (http://www.haskell.org/fruit/) and TVs (http://www.haskell.org/haskellwiki/TV). They may not pass the builds constraint :-P Luke 2009/11/22 Maurí­cio CA

Re: [Haskell-cafe] Idea for a very simple GUI llibrary

2009-11-22 Thread Keith Holman
You should also check out Fudgets and Tangible Functional Programming. Fudgets is a really old Haskell UI library concept; Tangible FP is a recent Google talk about a UI library inspired by Haskell types. 2009/11/22 Luke Palmer lrpal...@gmail.com: Nice idea.  I will try it if you write runGUI