macos – OS X上的wxHaskell

我想在OS X(Snow Leopard,MacBook Pro)上使用wx
Haskell.我能够成功安装库和下面的脚本:

module Main where
import Graphics.UI.WX

main :: IO ()
main = start hello

hello :: IO ()
hello
  = do f    <- frame    [text := "Hello!"]
       quit <- button f [text := "Quit", on command := close f]
       set f [layout := widget quit]

确实导致窗口显示单个按钮,如指定的那样.然而,当我点击按钮时没有任何反应 – 我甚至没有得到按钮的视觉反应变成蓝色以表示它已被压下(哈哈,没有双关语意).

我听说你必须在wxHaskell二进制文件上运行一个名为“macosx-app”的软件包才能让它们运行,但我无法在任何地方找到它.它不在我的机器上或(据我所知)在WX或wxHaskell发行版中.

任何人都知道我需要做些什么才能让它发挥作用?

最佳答案
source release在bin目录中包含名为macosx-app-template的文件.配置脚本的以下部分使用此文件来创建macosx-app:

cat > config/macosx-app-temp << EOF
#!/bin/sh
rezcomp="$wxinstallrezcomp"
rezfile="$wxinstallrezfile"

EOF
cat config/macosx-app-temp bin/macosx-app-template > config/macosx-app
rm -f config/macosx-app-temp
chmod a+x config/macosx-app

如果你已经安装了wxHaskell并且没有使用configure脚本,你可能只是复制这些步骤 – 即,将macosx-app-template复制到macosx-app,使其可执行,并在顶部添加以下行:

#!/bin/sh

libdir=""

wxrezcomp="`wx-config --rezflags`"
wxrezfile=""
if test "$wxrezcomp"; then
  for word in $wxrezcomp; do
    temp="`echo $word | grep '[^_]*_mac-[^r]*r'`"
    if test "$temp"; then
      wxrezfile="$temp"
    fi
  done
fi

if test "$wxrezfile"; then
  wxrezdir="`echo $wxrezfile | sed -e 's|\(.*\)/libwx_mac.*|\1|'`"
  wxinstallrezcomp="`echo \"${wxrezcomp}\" | sed -e \"s|${wxrezdir}|${libdir}|g\"`"
  wxinstallrezfile="`echo \"${wxrezfile}\" | sed -e \"s|${wxrezdir}|${libdir}|g\"`"
fi

rezcomp="$wxinstallrezcomp"
rezfile="$wxinstallrezfile"

请注意,您需要更改libdir =“”以指定安装wxHaskell库文件的目录,如果wx-config不在您的路径中,您还需要更改该行.

点赞