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 ...
6
votes
1answer
336 views
How to package a haskell gtk2hs glade application on windows?
I made a little GUI app with gtk2hs, Glade and Haskell. It runs fine on Windows XP, but users need to install GTK+, gtk2hs (it asks for libglade-2.0.0.dll) and GHC (as it's a gtk2hs dependency) in ...
6
votes
2answers
275 views
How can I make a graphical command line in haskell/gtk2hs?
I'm trying to create my first "real program" in haskell (something that solves integrals if polynomials) but I'm completely stumped with this part of it:
I want to make something very simple a bit ...
5
votes
2answers
197 views
Gtk Terminal Widget
Simple question: Is there a linux-style terminal widget for GTK? Preferably for Haskell, too, as I want to use gtk2hs
4
votes
1answer
76 views
Override Events in Haskell
I'm writing a haskell program with GUI. When I write the following piece of code
onClicked btn $ do
print 1
onClicked btn $ do
print 2
Pressing btn resulted in ...
3
votes
1answer
101 views
gtk2hs: Request recalculation of windows size after removing a widget
I have a Window with three Entry widgets and one Button. I use the button to remove one of the widgets programmatically. The problem is that the main window doesn't change it's size to fit the new ...
3
votes
1answer
107 views
Custom implementation for Widget class in gtkhs
Gtk2hs has various widget datatypes that implements Widget class. Is it possible to write custom datatype which does the same?
Say I want to have widget for displaying and running Lua code like this.
...
2
votes
1answer
201 views
How to pass state between event handlers in gtk2hs
I'm trying to make a toy application, just to get my head around how to write event driven programs in Haskell. What I'm trying to do is draw a line to a canvas which moves forward every time a key is ...
2
votes
1answer
109 views
Toggle between event handlers in gtk2hs
I would like to do something like this:
handlerOn = do
cid <- canvas `on` buttonPressEvent $ tryEvent do
signalDisconnect cid
handlerOff
putStrLn "handlerOn"
handlerOff = do
cid ...
2
votes
1answer
133 views
Designing loosely coupled components with GTKs event model
This is a fairly vague and open ended question, but hopefully someone can still provide some insight.
I am using GTK (through Gtk2Hs with Haskell via GHC) and I am wondering if there is any general ...
1
vote
1answer
80 views
Printing with Gtk.Printing/cairo/pango in gtk2hs - Print-operations in Haskell
I am currently trying to print files or text (to a printer, not to a terminal etc.) in Haskell with gtk(2hs) using Graphics.UI.Gtk.Printing, Cairo and Pango.
Code is the following:
op <- ...
1
vote
1answer
71 views
Can a Container be both drawn on and have components visible in gtk2hs?
I want draw on the background (like a rectangle or such) and then have it render the components on top of that. The components would be on top of what I drew. Is there a way to do this?
Here's an ...
1
vote
1answer
87 views
Haskell gtk2hs closing aboutDialogs
I'm having some trouble with the close buttons of aboutDialogs in gtk2hs. Here is my code
aboutMenuAction <- xmlGetWidget xml castToMenuItem "menuAbout"
onActivateLeaf aboutMenuAction $ do ad ...
1
vote
1answer
226 views
Programatically firing an event in GTK (With Gtk2Hs)
I am using Gtk2Hs (EventM module) to handle GTK events within Haskell. Is it possible to manually (re-)fire an event?
Upon detecting an event on one widget, I want to refire this event on another ...
1
vote
1answer
293 views
GTK Expander without fixed sizes
I am having some trouble using the GTK Expander widget. I have several expanders in a vertical box. When collapsing an expander, I want the expanders below to "shuffle" up to meet the bottom of the ...
1
vote
1answer
343 views
How to change properties of DrawingArea in Gtk2Hs
Can someone please point me in the right direction when it comes to changing properties of an element in Gtk2Hs.
For example, how do I change the background-color of a DrawingArea?
0
votes
1answer
89 views
Installing gtk2hs on windows XP
I followed the instructions on http://www.haskell.org/haskellwiki/Gtk2Hs#Install_libxml to install gtk2hs on windows XP, after installing libxml and gtk/glade,
'cabal install gtk2hs-buildtools' ...
0
votes
2answers
124 views
How to show GtkToolItem in the overflow menu of a GtkToolbar?
I am working on a Haskell application using gtk2hs. This application has a toolbar which consists of several GtkToggleToolButton, GtkToolButton and GtkToolItem elements. For being able to resize the ...
0
votes
1answer
113 views
Gtk2hs multiple column TreeView with ListStore issue
I cannot force GTK to render data in TreeView with ListStore model with multiple columns through Haskell. I have the following code
addTextColumn view name =
do
col <- treeViewColumnNew
...
0
votes
2answers
395 views
Drawing text on GTK's DrawingArea in Haskell
I have a DrawingArea onto which I can draw using primitives such as drawRectangle and drawLine. How do I draw text onto that area? I'm most interested in something that quickly outputs a single line ...
0
votes
2answers
323 views
Haskell GTK, double buffering with primitives
With an example like this. How can I do 2d double buffering with gtk and haskell. I want to render primitives to an offscreen buffer and flip. This code only renders a pixel/rectangle. I want to ...
0
votes
2answers
147 views
How to do simple ComboBoxEntry in gtk2hs?
I use the code below adapted from a tutorial. It shows the two options in the drop down, but when I select one, it gives the error at the console:
(combo:12158): Gtk-CRITICAL **: ...
0
votes
3answers
201 views
How does one find out if the mouse button is pressed on a label-like widget (or container?) in gtk2hs?
Below is a simple example using gtk2hs that adds a label and then a click handler on it. The buttonPressEvent handler is never called when you click on the label. The button could be put in a ...
0
votes
1answer
475 views
Fixing the size of a GTK Widget?
I am attempting to fix the size of a widget in GTK+, specifically using Gtk2hs with Haskell.
I have drawn an image in a DrawingArea and I would like to specify the exact size of this drawing area. I ...
0
votes
1answer
363 views
Problems with scrolling in TextView in Gtk2hs and Haskell
I'm writing my first gtk2hs+glade application, and I'm using a textview to display output from the program. Instead of scrolling which I thought was supposed to be the default behavior, the textview ...