Tagged Questions
2
votes
0answers
59 views
WxHaskell and DragAndDrop: how to create custom event to trigger dropTargetOnData, dropTargetOnDrop, dropTargetOnEnter, dropTargetOnDragOver
WxHaskell and DragAndDrop
I would like to know how to use the following events handlers
: dropTargetOnData, dropTargetOnDrop, dropTargetOnEnter, dropTargetOnDragOver….[1]
Could you check if my ...
4
votes
1answer
108 views
wx haskell Drag and Drop example
I am looking for a wx haskell Drag and Drop example. I haven't found any yet.
Any available ? or hints ?
So far:
I can see a on drag event ( but no "on drop")
mouse is just giving a left up on ...
2
votes
0answers
86 views
Separating State for a Model and GUI IO ( Wx) : Stack or FRP?
For my diagramming tool, I'd like to keep the code of the core model isolated from the GUI.
In the following example, the "state " is passed around with vDiag, which is a Tvar. This is a design ...
2
votes
0answers
72 views
wxHaskell program starts really slow on Windows XP
I have write a wxHaskell program and it performs very good on Mac. But after lot of troubles and installed wxHaskell on Windows XP, my program take several minutes to start. Currently, the wx library ...
0
votes
1answer
54 views
wxHaskell: Initial frame size too small
After having installed WxHaskell and gtk2hs I am playing around with both to work out which of them to choose. For WxHaskell I am working through the documentation at WxHaskell at haskell.org. The ...
4
votes
2answers
96 views
can't get wxHaskell to work from ghci on Mac
I'm trying to run an example using EnableGUI function.
% ghci -framework Carbon Main.hs
*Main> enableGUI >> main
This is what I get instead of a working program:
2013-01-14 00:21:03.021 ...
1
vote
1answer
153 views
Wxhaskell - wxcore fails due to building phase (g++ error)
I'm trying to build wxhaskell, and it seems there is lots of trouble, I could figure out what to do in some cases, but I'm stuck now.
I'm using wxwidgets-2.8 / wxhaskell-0.11.1.2, and the error that ...
2
votes
0answers
56 views
wxHaskell and Reactive-Banana staticText not Updating Size When Text Changes
I'm trying to build a simple UI as an exercise in learning wxHaskell and Reactive Banana, but I've run into a wall trying to solve a seemingly simple problem. Specifically, I'd like to resize the ...
1
vote
2answers
57 views
Nested Lambdas in wxHaskell Library
I've been trying to figure out how I can make staticText elements resize to fit their contents with wxHaskell. From what I can tell, this is the default behavior in wxWidgets, but the wxHaskell ...
2
votes
1answer
330 views
GUI programming in Haskell - installation problems on Ubuntu
is there a GUI package that is still up-to-date?
I tried installing both wxHaskell and gtk2hs today and both fail on dependencies I just cannot solve (wxHaskell cannot find some wxWidget libs and ...
1
vote
1answer
118 views
putStrLn doesn't print to console
I am experimenting with wxHaskell. I wasn't able to run the app under ghci, so I have to use application to test it. I wanted to test the program with println debugging. However, it seems that ...
8
votes
3answers
533 views
Screen capture in Haskell?
Is it possible to capture the screen (or a window) using Haskell in a Windows environment? (ie, taking a screenshot every few minutes or so). If so, how would one go about doing this (again, in ...
2
votes
0answers
153 views
wxHaskell Mac OS X Runtime Error
I followed these instructions to install wxWidgets (using Homebrew) and wxHaskell on OS X Lion. There were no errors.
When I try the examples here, the first Hello World example runs fine. However, ...
0
votes
1answer
49 views
How do I stop wxhaskell from beeping on enter in text controls?
I've played around with processEnter, on command, and on anyKey with textEntry to no avail. I've been looking through the massive amount of documentation for wx-core, but I don't see anything that'll ...
0
votes
0answers
80 views
Create a wizard with wxHaskell: sample code or documentation
I want to create a simple wizard with wxHaskell. The only documentation I could find is the haddock documentation for wxcore, which is kind of sparse. Has anyone ever tried and has some code samples ...
11
votes
1answer
226 views
Static linking wxHaskell on Mac OS X
I want to distribute a wxHaskell application on Mac OS X. How do I go about creating a Mac OS X app which can be used standalone without the user having to install any extra libraries?
I noticed the ...
1
vote
1answer
138 views
Layout combinators in wxhaskell
I'm trying to fill text entries to fill the whole width, which works fine if the entries are put directly to the frame, but if they're put in to a panel, they revert to their default size. Also the ...
3
votes
3answers
322 views
cabal install wx Missing C library
Env:
OS: feodra 16
haskell-platform
wxGTK-devel
ghc 7.0.4
I am trying to install wxHaskell with
cabal install wx
Then these errors are given.
Missing dependencies on foreign libraries:
...
1
vote
1answer
99 views
How can I remove widgets from WxHaskell panel
My google-fu has failed me. How can I remove widgets that I've added to a Panel () ? For example, in the following, I want the controls-panel to become empty again.
buildGUI = do
f <- frame [ ...
0
votes
2answers
111 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
4
votes
1answer
246 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 ...
0
votes
1answer
78 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 ...
3
votes
1answer
165 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 ...
13
votes
1answer
404 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 ...
1
vote
1answer
195 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?
2
votes
1answer
122 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, ...
3
votes
1answer
517 views
2
votes
2answers
156 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
399 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: ...
3
votes
4answers
386 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
3answers
260 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. ...
0
votes
1answer
178 views
maximize frame on startup in wxHaskell
How can I make window maximized on start with wxHaskell ? Thanks for help
0
votes
1answer
331 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
287 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 -> ...
2
votes
2answers
131 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
2answers
129 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
3answers
560 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 ...
16
votes
4answers
2k 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 ...
4
votes
3answers
709 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 ...
