Re: [wxhaskell-users] [wxhaskell-devel] [Haskell] ANN: wxHaskell 0.92

2015-09-05 Thread Conal Elliott
0xc005, which means > "Access violation". The standalone BouncingBalls.exe can be run multiple > times without a problem. > > Henk-Jan > > > > On Fri, 04 Sep 2015 23:56:47 +0200, Conal Elliott <co...@conal.net> wrote: > > The original bug report (p

Re: [wxhaskell-users] [wxhaskell-devel] [Haskell] ANN: wxHaskell 0.92

2015-09-04 Thread Conal Elliott
The original bug report (perhaps 7 years ago) was at http://sourceforge.net/p/wxhaskell/bugs/84/ . Seems to be gone now. The symptom was a reliable crash whenever a second top-level window was displayed from a given process, whether in ghci or standalone compiled. Especially inconvenient with

Re: [wxhaskell-users] [Haskell] ANN: wxHaskell 0.92

2015-08-31 Thread Conal Elliott
Thanks for the update. What's the status of the old problem of crashing the host process if one opens more than one top-level window (as typical in GHCi)? - Conal On Fri, Aug 28, 2015 at 1:16 AM, Henk-Jan van Tuyl wrote: > > L.S., > > I am happy to announce a new version of

Re: [wxhaskell-users] Notes on installing wxHaskell on Mac OS Snow Leopard

2012-07-03 Thread Conal Elliott
Worked for me. Thanks very much, Henry! -- Conal On Mon, Jul 2, 2012 at 6:31 PM, Henry Lockyer henry.lock...@ntlworld.comwrote: Dear wxHaskell users / aspiring users, These are a few notes from getting a working 64bit installation of wxHaskell on Mac OS in case they are of any use to

Re: [wxhaskell-users] [Announce] wxHaskell 0.90

2012-04-17 Thread Conal Elliott
I'm excited to see progress in ghci-friendliness! I installed wxWidgets-devel-2.9.3 via macports and then wxHaskell, and I get the following when trying to run a simple wxHaskell program in ghci: Loading package wxc-0.90.0.2 ... can't load framework: QuickTime

Re: [wxhaskell-users] wxHaskell and 1 usable level up?

2010-02-06 Thread Conal Elliott
My wxhaskell GUI libs (Phooey GuiTV) as well as Eros are on hold until wxhaskell gets fixed to not kill its parent process (e.g. ghci) on GUI restart. I don't know what's going on with that problem. This problem is a long-standing one. I'm wondering what alternatives there might be to wxhaskell

Re: [wxhaskell-users] wxhaskell vs. gtk2hs

2010-01-23 Thread Conal Elliott
On Fri, Jan 22, 2010 at 11:23 PM, Gour g...@gour-nitai.com wrote: On Fri, 22 Jan 2010 17:15:00 -0800 Conal == Conal Elliott wrote: Hello Conal, Conal I've worked with both wxhaskell and gtk2hs. I prefer wxhaskell Conal for elegant design. And I like that it gives me a native Mac OS

[wxhaskell-users] Investigating wxHaskell's die-on-restart problem

2009-10-02 Thread Conal Elliott
I spent some time today tracking down the die-on-restart problem with wxHaskell. Here's a simple demo of the problem: import Graphics.UI.WX main = io io where io = start (frame [] return ()) (See http://sourceforge.net/tracker/?func=detailatid=536845aid=1610984group_id=73133.) In

Re: [wxhaskell-users] wxHaskell 0.10.3: problems in Windows XP

2008-03-29 Thread Conal Elliott
As long as there's a single binary (per release per platform) I'm for opengl being part of it. On Sat, Mar 29, 2008 at 6:56 AM, Eric Y. Kow [EMAIL PROTECTED] wrote: Hi, Answering the one question I know an answer to. In the meanwhile, I also found that the 0.10.3 binaries loose the

Re: [wxhaskell-users] wxhaskell 0.10.2 on hackage (experimental)

2008-02-16 Thread Conal Elliott
Hi Eric, Thanks for the progress update. Your remark about 2.6 only raises a question for me: What's the deal on wxhaskell and ghci-friendliness? Do we still have to use wxWindows/wxWidgets 2.4.2 in order to run more than one GUI per ghci session? Will it be possible at all any more? -

[wxhaskell-users] wxhaskell, cabal, and linux

2008-02-14 Thread Conal Elliott
, - Conal -- Forwarded message -- From: Conal Elliott [EMAIL PROTECTED] Date: Thu, Feb 14, 2008 at 10:12 AM Subject: Re: off-world libs docs To: Ross Paterson [EMAIL PROTECTED] Thanks. I'll ask around. - Conal On Thu, Feb 14, 2008 at 10:07 AM, Ross Paterson [EMAIL PROTECTED

Re: [wxhaskell-users] wxhaskell and ghci - runs once only

2008-02-09 Thread Conal Elliott
I think the key here is to use wxWindows version 2.4.2 (later renamed to wxWidgets). I think the issue is static initializers in later versions. - Conal On Feb 9, 2008 1:46 PM, Andrew U. Frank [EMAIL PROTECTED] wrote: why does wxhaskell with ghci run only once and then dies? is this an error

Re: [wxhaskell-users] wxHaskell for linux (ubuntu)?

2007-12-31 Thread Conal Elliott
Hm. The static initializers are problematic on Windows as well, which is why I stayed with wxWindows-2.4.2. Perhaps the same solution works on Linux? Does *anyone* have wxHaskell and ghci working together on Linux, without having to restart ghci after each GUI? - Conal On Dec 30, 2007 4:35

[wxhaskell-users] wxHaskell for linux (ubuntu)?

2007-12-30 Thread Conal Elliott
I'm setting up a linux dev machine (ubuntu 7.10). What do folks recommend for wxWidgets and wxHaskell? I like using wxHaskell in ghci, in case that's a consideration on Linux as it is on Windows. Thanks, - Conal - This

Re: [wxhaskell-users] [Haskell-cafe] GUI

2007-12-12 Thread Conal Elliott
, Conal Elliott писал(а): I prefer the elegant high-level style of wxhaskell over the current state of gtk2hs. duncan has said he's interested in making a gtk2hs more elegant, and daan has said he'll start supporting wxhaskell again. i don't know which will happen first. - Conal

[wxhaskell-users] shifting text in a TextCtrl

2007-11-28 Thread Conal Elliott
I'm using an TextCtrl for output, and I want the beginning of the text to show rather than the end, when the text won't fit. The default seems to be the other way. Does anyone know how I can get the beginning showing after changing the text attribute? Thanks, - Conal

[wxhaskell-users] keyboard events for MDI child frames

2007-09-19 Thread Conal Elliott
Is there a way to get keyboard events for MDI child frames? My on keyboard handlers never respond, though they work for widgets. - Conal - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R)

[wxhaskell-users] setting button size

2007-09-04 Thread Conal Elliott
I want to resize my button control to be square. I tried set ctl [ size := Size 100 100] with no visible effect. Same with clientSize outerSize. Does anyone know the required magic? Thanks. - Conal - This SF.net email is

Re: [wxhaskell-users] building problems

2007-02-17 Thread Conal Elliott
Wolfgang, In case you don't know (as I didn't), be aware that wxWidgets 2.6 and later are not ghci-friendly, so for ghci use, you'll probably prefer 2.4.2. More info at http://darcs.haskell.org/packages/phooey/README . Cheers, - Conal On 2/17/07, Wolfgang Jeltsch [EMAIL PROTECTED] wrote:

[wxhaskell-users] horizontal stretch bug??

2007-01-16 Thread Conal Elliott
I'm stumped on a problem with horizontal stretching, and I don't know whether I've hit a bug or my own ignorance. I want to place two sliders horizontally and have them both stretch with the frame. Instead, the left one stretches, and the right one doesn't. (I'm not sure I have stretch and

Re: [wxhaskell-users] process crashes on second 'start'

2006-12-10 Thread Conal Elliott
-unicode. I had to completely empty out my mybuild directory, not just make clean to fix string truncation (unicode glitch). - Conal On 12/8/06, Jeremy O'Donoghue [EMAIL PROTECTED] wrote: Hi Conal, On 07/12/06, Conal Elliott [EMAIL PROTECTED] wrote: Hi Jeremy, Thanks for the detailed