Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-19 Thread Jeremy O'Donoghue
Ben Arnold wrote: WxHaskell was a little trickier but more successful. There didn't appear to be any installation instructions on the website, but it did imply that I needed to install wxWidgets first. I did that, and made sure the paths didn't have spaces in them (yawn). And after restarting

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-19 Thread Ben Arnold
Thanks. It's actually quite comforting to know that the problems I run into are known issues and gives me a lot more confidence in the tools. As I said I really like Haskell it's a pleasure to program in it and I do appreciate the work that people have put in to make it possible for me to do so!

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Neil Mitchell
Hi A Google search pointed me at two major GUI toolkits for Haskell: gtk2hs and wxHaskell. My answer is to use Gtk2hs. Unfortunately, the releases are somewhat behind so you usually need to grab a special preview release to get it working on Windows. That's a very sad state of affairs, and as

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Bulat Ziganshin
Hello Ben, Sunday, May 18, 2008, 10:26:09 PM, you wrote: I'm running Windows Vista and I've been trying to set up an environment for writing GUI applications. i'm a XP user, nevertheless try this for gtk2hs: 6.6.1: http://haskell.org/ghc/dist/6.6.1/ghc-6.6.1-i386-windows.exe

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Ben Arnold
Thanks for such a quick response! There seems to be a new version of Gtk2hs now (or I accidentally downloaded an old one earlier). Either way the installer was easy to use and the Hello World program ran (even within GHCi). Thanks for your help. I'm very appreciative to all those who work on

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Andrew Coppin
Ben Arnold wrote: So, in practice, do other people write GUI apps with Haskell on Windows? And if they do, how do they do it? I feel I've got to the stage where I need a concrete recommendation from the experts. Yeah, this kind of thing is annoyingly common in Haskell circles. It's not

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Bulat Ziganshin
Hello Ben, Sunday, May 18, 2008, 10:26:09 PM, you wrote: So, in practice, do other people write GUI apps with Haskell on Windows? And if they do, how do they do it? I feel I've got to the stage where I need a concrete recommendation from the experts. after i've wrote a few thousands lines

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Duncan Coutts
On Sun, 2008-05-18 at 19:26 +0100, Ben Arnold wrote: I'm running Windows Vista and I've been trying to set up an environment for writing GUI applications. A Google search pointed me at two major GUI toolkits for Haskell: gtk2hs and wxHaskell. I started with gtk2hs. The installation

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Andrew Coppin
Duncan Coutts wrote: Are you sure the download of the installed completed successfully? If it exits immediately it sounds like a busted download. Do you have any way of checking it? Perhaps just the file length if there's no easy way of doing md5 on windows. http://www.toast442.org/md5/

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Yitzchak Gale
Hi Bulat, Bulat Ziganshin wrote: if main part of your program is GUI - it's better to stick with C# and all its visual bells and whistles. the only good thing with gtk2hs is that you got Linux portability for free. actually, people will think that you have developed it on linux and ported to

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Duncan Coutts
On Mon, 2008-05-19 at 00:13 +0400, Bulat Ziganshin wrote: Hello Ben, Sunday, May 18, 2008, 10:26:09 PM, you wrote: So, in practice, do other people write GUI apps with Haskell on Windows? And if they do, how do they do it? I feel I've got to the stage where I need a concrete

Re: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Duncan Coutts
On Mon, 2008-05-19 at 00:02 +0300, Yitzchak Gale wrote: Hi Bulat, Bulat Ziganshin wrote: if main part of your program is GUI - it's better to stick with C# and all its visual bells and whistles. the only good thing with gtk2hs is that you got Linux portability for free. actually, people

Re[2]: [Haskell-cafe] My experience setting up Haskell up for GUI development

2008-05-18 Thread Bulat Ziganshin
Hello Duncan, Monday, May 19, 2008, 1:18:10 AM, you wrote: As far as I know the visual differences are pretty small. If you know of anything specific we can file bugs with the Gtk+ folk, they've fixed lots of little differences over the last few years. file open dialogs; treeview -- Best