Difference between revisions of "WxHaskell/Development/Environment"

From HaskellWiki
Jump to navigation Jump to search
(→‎Wrapping new wxWidgets functionality: Moved some links to "WxHaskell/Development")
(12 intermediate revisions by 3 users not shown)
Line 4: Line 4:
 
== Obtaining wxWidgets ==
 
== Obtaining wxWidgets ==
   
Firstly, see [[WxHaskell/Building]].
+
Firstly, see [[WxHaskell/Linux]], [[WxHaskell/Mac]] or [[WxHaskell/Windows]].
   
 
Note that wxHaskell is currently between wxWidgets 2.8 and the development 2.9 release, so it pays well to ensure new code will work with both versions. It is possible to safely co-habit two version of wxWidgets. When you do wxHaskell will build against whichever version is returned by <code>wxconfig --version</code>, on Linux you can change which version you build wxHaskell against by follow steps similar to this (this should be easier):
 
Note that wxHaskell is currently between wxWidgets 2.8 and the development 2.9 release, so it pays well to ensure new code will work with both versions. It is possible to safely co-habit two version of wxWidgets. When you do wxHaskell will build against whichever version is returned by <code>wxconfig --version</code>, on Linux you can change which version you build wxHaskell against by follow steps similar to this (this should be easier):
Line 20: Line 20:
 
== Building and testing wxHaskell ==
 
== Building and testing wxHaskell ==
   
  +
Firstly, see [[WxHaskell/Building#Source_Release|Source Release]], however it is recommended that you do the following, instead of following the instructions there to build each component:
When working on wxHaskell it is suggested that you use [[Cabal-dev]] to isolate your development code from stable wxHaskell packages you may have obtained from [[Hackage]]. To do this enter the root wxHaskell directory (http://code.haskell.org/wxhaskell/) and enter the following:
 
<pre>cabal-dev add-source wxdirect
 
cabal-dev add-source wxcore
 
cabal-dev add-source wx</pre>
 
   
 
Use [[Cabal-dev]] 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 [[Cabal-dev]] [http://www.haskell.org/ghc/docs/7.0.3/html/users_guide/packages.html package database] (which will be under <code>./cabal-dev/packages-7.0.3.conf/</code>) thus:
+
You can then install your development version of wxHaskell into a separate [[Cabal-dev]] [http://www.haskell.org/ghc/docs/7.0.3/html/users_guide/packages.html package database] (which will be under <code>./cabal-dev/packages-7.0.3.conf/</code>).
<pre>cabal-dev install wx</pre>
 
  +
To do this enter the root wxHaskell directory (the one you obtained from the current repository) and enter the following:
  +
 
<pre>cabal-dev install ./wxdirect ./wxc ./wx ./wxcore</pre>
  +
  +
Notes:
  +
* Previously this page suggested using <code>add-source</code>, but packages added in such a way will not be recompiled when the source given is changed, this is discussed [https://github.com/creswick/cabal-dev/blob/master/README.md in the "Using a sandbox-local Hackage" section].
  +
* If changes are made to wxdirect, the shell PATH environment variable should contain <code>cabal-dev/bin</code> before any other location where a wxdirect executable can be found.
   
 
You may then build against your development install thus:
 
You may then build against your development install thus:
Line 33: Line 37:
 
== Wrapping new wxWidgets functionality ==
 
== Wrapping new wxWidgets functionality ==
   
Note: Inspiration for this comes from [http://www.mail-archive.com/wxhaskell-devel@lists.sourceforge.net/msg00630.html this email].
+
Note: Inspiration for this comes from [http://www.mail-archive.com/wxhaskell-devel@lists.sourceforge.net/msg00630.html this email].
   
 
=== Purpose of files which will need to be updated ===
 
=== Purpose of files which will need to be updated ===
Line 40: Line 44:
 
; ./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 [http://wewantarock.wordpress.com/2010/01/11/custom-controls-in-wxhaskell-part-3/ here] for some more information about implementing <code>Attribute</code> instances.
 
; ./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 [http://wewantarock.wordpress.com/2010/01/11/custom-controls-in-wxhaskell-part-3/ here] for some more information about implementing <code>Attribute</code> instances.
   
  +
; ./wxc/src/include/wxc.h : This creates the correct type witnesses to map the class Hierarchy.
; ./wxcore/src/eiffel/wx_defs.e : An ugly piece of legacy from the days when wxcore was derived from an Eiffel wrapping of wxWidgets. Event identifiers need to be defined here. (Jeremy: I *really* want to get rid of this file one day - it serves no purpose to have an Eiffel file these days.)
 
   
; ./wxcore/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/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).
 
; ./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).
   
; ./wxcore/src/cpp/XXX.cpp : Implementations of the wrappers. The old <code>eljXXX</code> naming convention for these files really isn't necessary any more. I'd suggest calling the implementation <code>mynewfunctionality.cpp</code> or something like that.
+
; ./wxc/src/cpp/XXX.cpp : Implementations of the wrappers. The old <code>eljXXX</code> naming convention for these files really isn't necessary any more. I'd suggest calling the implementation <code>mynewfunctionality.cpp</code> 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.
   
; ./wxcore/src/cpp/eljrc.cpp : Constructs functions for geting control pointers out of window hierarchies created from XRC files.
+
; ./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>
; ./wxcore/src/cpp/eljevent.cpp : Wrap up event values as functions. I tend to do this instead.
 
   
; ./wxcore/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.).
 
   
  +
[[Category:wxHaskell]]
; ./wxcore/wxcore.cabal : Ensure you add <code>mynewfunctionality.cpp</code> to <code>c-sources</code> in <code>./wxcore/wxcore.cabal</code>
 

Revision as of 06:29, 22 September 2013

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 is currently between wxWidgets 2.8 and the development 2.9 release, so it pays well to ensure new code will work with both versions. It is possible to safely co-habit two version of wxWidgets. When you do wxHaskell will build against whichever version is returned by wxconfig --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.8.12
$ 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.8
$ sudo rm /usr/local/bin/wx-config
$ sudo ln -s /usr/local/lib/wx/config/gtk2-unicode-2.9 /usr/local/bin/wx-config
$ wx-config --version
2.9.2

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 Cabal-dev 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 Cabal-dev package database (which will be under ./cabal-dev/packages-7.0.3.conf/). To do this enter the root wxHaskell directory (the one you obtained from the current repository) and enter the following:

cabal-dev install ./wxdirect ./wxc ./wx ./wxcore

Notes:

  • Previously this page suggested using add-source, but packages added in such a way will not be recompiled when the source given is changed, this is discussed in the "Using a sandbox-local Hackage" section.
  • If changes are made to wxdirect, the shell PATH environment variable should contain cabal-dev/bin before any other location where a wxdirect executable can be found.

You may then build against your development install thus:

ghc -package-conf /path/to/wxhaskell/cabal-dev/packages-7.0.3.conf/ --make MyTestCode.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 ./wxcore/wxcore.cabal