Difference between revisions of "WxHaskell/Development/Environment"

From HaskellWiki
Jump to navigation Jump to search
(→‎Purpose of files which will need to be updated: ./wxcore/wxcore.cabal -> ./wxc/wxc.cabal)
 
Line 66: Line 66:
 
; ./wxc/src/cpp/defs.cpp : Another way of wrapping up event values as functions. (Jeremy: I don't tend to do this, and I don't think anyone has for years.).
 
; ./wxc/src/cpp/defs.cpp : Another way of wrapping up event values as functions. (Jeremy: I don't tend to do this, and I don't think anyone has for years.).
   
; ./wxc/wxc.cabal : Ensure you add <code>mynewfunctionality.cpp</code> to <code>c-sources</code> in <code>./wxcore/wxcore.cabal</code>
+
; ./wxc/wxc.cabal : Ensure you add <code>mynewfunctionality.cpp</code> to <code>c-sources</code> in <code>./wxc/wxc.cabal</code>
   
   

Latest revision as of 19:14, 31 January 2016

Overview

This page is intended to provide information for those wishing to work on the wxHaskell library, specifically creating and maintaining an environment in which to do so.

Obtaining wxWidgets

Firstly, see WxHaskell/Linux, WxHaskell/Mac or WxHaskell/Windows.

Note that wxHaskell currently supports the wxWidgets 2.9 and the 3.0 release, so it pays well to ensure new code will work with both versions. It is possible to safely co-habit two versions of wxWidgets. When you do, wxHaskell will build against whichever version is returned by wx-config --version, on Linux you can change which version you build wxHaskell against by follow steps similar to this (this should be easier):

$ wx-config --version
2.9.5
$ whereis wx-config
wx-config: /usr/local/bin/wx-config
$ ls -l /usr/local/bin/wx-config
lrwxrwxrwx 1 root root 41 2011-09-14 21:20 /usr/local/bin/wx-config -> /usr/local/lib/wx/config/gtk2-unicode-debug-2.9
$ sudo rm /usr/local/bin/wx-config
$ sudo ln -s /usr/local/lib/wx/config/gtk2-unicode-3.0 /usr/local/bin/wx-config
$ wx-config --version
3.0.2

On Windows, the used wxWidgets version can be changed by changing the environment variable WXWIN:

  Set WXWIN=C:\Libs\wxWidgets\3.0.2

(Avoid spaces in path names.)

Building and testing wxHaskell

Firstly, see Source Release, however it is recommended that you do the following, instead of following the instructions there to build each component:

Use a Cabal-install sandbox to isolate your development code from stable wxHaskell packages you may have obtained from Hackage. You can then install your development version of wxHaskell into a separate package database (which will be under .cabal-sandbox/i386-windows-ghc-7.8.3-packages.conf.d(the name is depending on architecture and GHC version, of course)). To do this, enter the root wxHaskell directory (the one you obtained from the current repository) and enter the following:

cabal sandbox init
cabal install ./wxdirect ./wxc ./wx ./wxcore

Note:

  • If changes are made to wxdirect, the shell PATH environment variable should contain .cabal-sandbox/bin before any other location where a wxdirect executable can be found.

You may then build against your development install thus:

cabal exec ghc ./samples/wxcore/BouncingBalls.hs

Wrapping new wxWidgets functionality

Note: Inspiration for this comes from this email.

Purpose of files which will need to be updated

Although the specific modifications required depends on the complexity of the wxWidgets functionality you are wrapping, this list serves to document the relationship between the files and what purpose they serve.

./wx/src/Graphics/UI/WX/Controls.hs
'High' level Haskell wrapper. You place constructors which are property-aware here. In most respects this is straightforward except that you need to work out what instances are appropriate to a your new functionality. You may want to look here for some more information about implementing Attribute instances.
./wxc/src/include/wxc.h
This creates the correct type witnesses to map the class Hierarchy.
./wxc/src/include/wxc_glue.h
This is basically where you need to put the declarations for C++ method wrappers.
./wxcore/src/haskell/Graphics/UI/WXCore/Events.hs
Your Haskell event handler code goes here. You need one function which reacts to events, which accepts an event handler as a parameter and a function which will fetch your event handler (you need this mostly in case you want to hook a further event handler which doesn't kill the one already present).
./wxc/src/cpp/XXX.cpp
Implementations of the wrappers. The old eljXXX naming convention for these files really isn't necessary any more. I'd suggest calling the implementation mynewfunctionality.cpp or something like that.
./wxc/src/cpp/eljrc.cpp
Constructs functions for getting control pointers out of window hierarchies created from XRC files.
./wxc/src/cpp/eljevent.cpp
Wrap up event values as functions. I tend to do this instead.
./wxc/src/cpp/defs.cpp
Another way of wrapping up event values as functions. (Jeremy: I don't tend to do this, and I don't think anyone has for years.).
./wxc/wxc.cabal
Ensure you add mynewfunctionality.cpp to c-sources in ./wxc/wxc.cabal