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 ...
7
votes
0answers
196 views

problem running wxHaskell (Windows)

The page: (http://en.wikibooks.org/wiki/Haskell/GUI) describes that to run wx code, one can install wx and then one must "register wxHaskell with GHC" - but I think the binary installer of wxHaskell ...
4
votes
1answer
122 views

Draw a scaled bitmap using wxhaskell

The imageviewer example shows how to display an image in a ScrolledWindow. What if I want to display the image in the available space, scaling the bitmap as needed? My google-fu failed me on this ...
4
votes
4answers
604 views

GHC + wxHaskell on Windows

Have GHC 6.8.3 and wxHaskell-0.10.3 on a Windows XP computer. Installed both as binary distributions, not by building from sources. Built a sample with the following command: ghc --make Paint.hs It ...
3
votes
1answer
103 views

Distributing wxHaskell based application in Windows

For a wxHaskell based application distributed on Windows, can I distribute the necessary WX DLLs right alongside the application, without having to do a separate install of WX? I want to be able to ...
3
votes
1answer
374 views

Is wxHaskell dead?

It seems to be dead. Is it? If it is, what should I use instead?
3
votes
4answers
272 views

Keep track of the program variables in Haskell like imperative programs

I'm having a hard time finding out how to make something change every time the user interacts with my program. It's hard to explain so here's an example (Haskell + wxhaskell): simulate :: Int -> ...
3
votes
2answers
172 views

wxhaskell asynchronous updates

I am using WxHaskell to graphically show the state of a program that advertises state updates using TCP (which I decode using Data.Binary). When an update is received, I want to update the display. ...
2
votes
1answer
87 views

wxHaskell labels can't display full text

I'm testing wxHaskell on Windows XP using the "Hello World" here: http://www.haskell.org/haskellwiki/WxHaskell/Quick_start But when it runs on my machine, all the text doesn't display. For instance, ...
2
votes
2answers
115 views

Embedded images in wxHaskell

I'm a Python programmer with experience in wxPython, and I'm learning Haskell and having a go at coding up a small GUI project in wxHaskell. One feature from wxPython that I have not yet figured out ...
2
votes
1answer
288 views

wxHaskell fails because it depends on wx_macu-2.8

I install wxWidgets with macports then ran the command: sudo cabal install wx which output included: /bin/sh: wxdirect: command not found /bin/sh: wxdirect: command not found /bin/sh: wxdirect: ...
2
votes
2answers
108 views

run wxHaskell on other machine

I've compiled haskell program which uses wxHaskell library, now I would like to know how to make it run on other machines which doesn't have wxHaskell installed. Of course I can see errors and I can ...
1
vote
1answer
111 views

Is there any simple tutorial on using Tree Control in wxHaskell?

Is there any simple tutorial on using Tree Control in wxHaskell? Or how to add and remove items in the tree control easily?
1
vote
2answers
102 views

StateT and WX gui coexistance

usual wxHaskell program looks like main = do run gui gui = do .... .... gui must have type IO a, run has type IO a -> IO (), also there is some initialization routines in ...
0
votes
1answer
43 views

How can I use wxFreeChart in wxHaskell?

I'm newbie to haskell. while wxFreeChart page in wxCode says it supports all wx ports, I have no any idea about how to use it in haskell
0
votes
1answer
51 views

How do I extract data from a wxHaskell grid control?

I've created a wxHaskell grid control, and it displays fine, the user can enter data etc. It's also fairly obvious how to programatically write data into it (gridSetCellValue). But how do I read the ...
0
votes
0answers
143 views

How to get ghc-pkg to register wxHaskell's wxcore package?

I can't manage to install wxHaskell's wxcore package under Windows despite being seemingly able to compile it. I am using the Haskell Platform 2010.2.0.0 (with ghc 6.12.3) on Windows XP, wxWidgets ...
0
votes
1answer
142 views

maximize frame on startup in wxHaskell

How can I make window maximized on start with wxHaskell ? Thanks for help
0
votes
1answer
142 views

displaying database content in wxHaskell

Im using tutorials from wxHaskell and want to display content of table movies in the grid. HEre is my code : {-------------------------------------------------------------------------------- Test ...
0
votes
1answer
175 views

Haskell: grid in wxHaskell

Could someone explain me what this code does line by line ? how t ounderstand excactly first line with declaration ? what does it mean: [Prop (Grid ())]? thanks for help gridCtrl :: Window a -> ...
0
votes
3answers
478 views

Cabal won't get a new haskell package

Hi I tried to get the wxHaskell package using cabal using: cabal install wxcore --global cabal install wx But running this gave the following error: >cabal install wxcore --global Resolving ...