作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在 ubuntu 上使用 sublime text 3 创建一个在单击按钮时使用 haskell 和 Qt 显示文本的程序。
但显然在定义信号键时存在问题(该键将识别单击按钮时调用的信号)。
此外,很难找到有关 HsQML 的文档,即连接 haskell 和 Qt 的绑定(bind)。
代码:
module Main where
import Graphics.QML
import Control.Concurrent
import Control.Exception
import Data.IORef
import Data.Text (Text)
import qualified Data.Text as T
main :: IO ()
main = do
state <- newIORef $ T.pack ""
skey <- newSignalKey
clazz <- newClass [
defPropertySigRO' "my_label" skey (\_ -> readIORef state),
defMethod' "sayHello" (\obj txt -> do
writeIORef state txt
fireSignal skey obj
return ())]
ctx <- newObject clazz ()
runEngineLoop defaultEngineConfig {
initialDocument = fileDocument "exemple2.qml",
contextObject = Just $ anyObjRef ctx}
Build FAILED
/home/lowley/Documents/haskell/Qt/exemple-2.hs: line 13, column 10:
No instance for (SignalSuffix (IO a0))
arising from a use of `newSignalKey'
The type variable `a0' is ambiguous
Possible fix: add a type signature that fixes these type variable(s)
Note: there is a potential instance available:
instance SignalSuffix (IO ()) -- Defined in `Graphics.QML.Objects'
Possible fix:
add an instance declaration for (SignalSuffix (IO a0))
In a stmt of a 'do' block: skey <- newSignalKey
In the expression:
do { state <- newIORef $ T.pack "";
skey <- newSignalKey;
clazz <- newClass
[defPropertySigRO' "my_label" skey (\ _ -> readIORef state),
defMethod' "sayHello" (\ obj txt -> ...)];
ctx <- newObject clazz ();
.... }
In an equation for `main':
main
= do { state <- newIORef $ T.pack "";
skey <- newSignalKey;
clazz <- newClass
[defPropertySigRO' "my_label" skey (\ _ -> ...), ....];
.... }
module Main where
import Graphics.QML
import Control.Concurrent
import Control.Exception
import Data.IORef
import qualified Data.Text as T
main :: IO ()
main = do
state <- newIORef $ T.pack ""
skey <- newSignalKey
clazz <- newClass [
defPropertySigRO' "result" skey (\_ ->
readIORef state),
defMethod' "factorial" (\obj txt -> do
let n = read $ T.unpack txt :: Integer
writeIORef state $ T.pack "Working..."
fireSignal skey obj
forkIO $ do
let out = T.take 1000 . T.pack . show $ product [1..n]
evaluate out
writeIORef state out
fireSignal skey obj
return ())]
ctx <- newObject clazz ()
runEngineLoop defaultEngineConfig {
initialDocument = fileDocument "factorial2.qml",
contextObject = Just $ anyObjRef ctx}
最佳答案
有错误告诉你 GHC 不知道 newSignalKey
创建的信号是什么类型应该有( newSignalKey :: SignalSuffix p => IO (SignalKey p)
。GHC 不知道 p
应该是什么,因为您没有指定它)。像这样添加显式类型签名:
skey <- newSignalKey :: IO (SignalKey (IO ()))
skey
的类型。 .
skey
使用如下:
do
...
fireSignal skey obj
...
fireSignal :: SignalKey p -> ObjRef () -> p
(简化型,
fireSignal
的完整型更通用),GHC知道
p
必须是
IO something
,因为它用于
IO something
的上下文中。需要采取行动(作为
IO
中的 do block 的一部分)。不知道是什么
something
但是,因为
IO
的返回值从未使用过 action。所以剩下
skey :: SignalKey (IO something)
, 并正确报告
something
的错误是模棱两可的(它不知道
something
应该是什么类型)。
forkIO $ do
...
fireSignal skey obj
forkIO
预计
IO
返回
()
类型值的操作, GHC 现在知道
fireSignal skey obj :: IO ()
(所以在这种情况下,它知道
something
必须是
()
)。这意味着
p
不再模棱两可了,一定是
IO ()
.
关于Qt : button click => a message should appear in a haskell program,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35847550/
我是一名优秀的程序员,十分优秀!