Re: [Haskell-cafe] Haskell and GUI

2008-01-18 Thread Torsten Otto
Gee, wizzz, folks. Thank you all for the many hints. I can't say yet which one I'll dive into but I'm in good spirits about Haskell and GUI now. I like the idea of a functional approach and I don't need extensive GUIs either, so Grapefruit just added another candidate... Using the Cocoa

Re: [Haskell-cafe] Haskell and GUI

2008-01-17 Thread Wolfgang Jeltsch
Am Dienstag, 15. Januar 2008 20:42 schrieb Conal Elliott: If you can get wxHaskell installed working, you could try Phooey and/or TV. Both are described on the Haskell wiki and available via darcs and Hackage. And they have the interesting property of being a functional approach to GUI

Re: [Haskell-cafe] Haskell and GUI

2008-01-15 Thread Bulat Ziganshin
Hello Torsten, Tuesday, January 15, 2008, 1:09:54 AM, you wrote: Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a button or two would do me. i've read Gtk2Hs tutorial[1] and developed first version

Re: [Haskell-cafe] Haskell and GUI

2008-01-15 Thread Yitzchak Gale
Hi Torsten, Here is something I use in GTK2HS when teaching beginners: http://hpaste.org/5017 Hope this helps, Yitz ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Haskell and GUI

2008-01-15 Thread Yitzchak Gale
btw, if you use GTK2HS on the Mac, don't forget to start up X Windows support, and run export DISPLAY=:0.0 in your terminal window, before you run your program. X Windows is usually in Applications/Utilities, but only if you installed it manually from the Mac OS X discs, it is not installed by

Re: [Haskell-cafe] Haskell and GUI

2008-01-15 Thread Wouter Swierstra
Hi Torsten, If you really only want a simple GUI - I seem to recall you're on a Mac - you might even be able to get away with the AppleScript bindings: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/AppleScript-0.1.3 There are an example of a simple textfield GUI in the examples

Re: [Haskell-cafe] Haskell and GUI

2008-01-15 Thread Conal Elliott
If you can get wxHaskell installed working, you could try Phooey and/or TV. Both are described on the Haskell wiki and available via darcs and Hackage. On Jan 14, 2008 2:09 PM, Torsten Otto [EMAIL PROTECTED] wrote: Seeing my woes with FranTk - what else is out there that people use if a

[Haskell-cafe] Haskell and GUI

2008-01-14 Thread Torsten Otto
Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a button or two would do me. Thanks in advance! Regards, Torsten ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] Haskell and GUI

2008-01-14 Thread Neil Mitchell
Hi Torsten, Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a button or two would do me. Gtk2hs in GHC: http://www.haskell.org/gtk2hs/ Thanks Neil ___

Re: [Haskell-cafe] Haskell and GUI

2008-01-14 Thread Sebastian Sylvan
On Jan 14, 2008 10:09 PM, Torsten Otto [EMAIL PROTECTED] wrote: Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a button or two would do me. Thanks in advance! I like wxHaskell. It seems that

Re: [Haskell-cafe] Haskell and GUI

2008-01-14 Thread Thomas Davie
There's also the HOC (Haskell Objective-C bridge), which lets you use Apple's Cocoa APIs. Bob On 14 Jan 2008, at 22:09, Torsten Otto wrote: Seeing my woes with FranTk - what else is out there that people use if a (simple) GUI is desired for a Haskell app? Just a few textboxes and a