gi-webkit2-0.2.8.12: GI/WebKit2/Structs/JavascriptResult.hs
{- |
Copyright : Will Thompson, Iñaki García Etxebarria and Jonas Platte
License : LGPL-2.1
Maintainer : Iñaki García Etxebarria (garetxe@gmail.com)
-}
module GI.WebKit2.Structs.JavascriptResult
(
-- * Exported types
JavascriptResult(..) ,
noJavascriptResult ,
-- * Methods
-- ** javascriptResultGetGlobalContext
javascriptResultGetGlobalContext ,
-- ** javascriptResultGetValue
javascriptResultGetValue ,
-- ** javascriptResultRef
javascriptResultRef ,
-- ** javascriptResultUnref
javascriptResultUnref ,
) where
import Prelude ()
import Data.GI.Base.ShortPrelude
import qualified Data.Text as T
import qualified Data.ByteString.Char8 as B
import qualified Data.Map as Map
import GI.WebKit2.Types
import GI.WebKit2.Callbacks
import qualified GI.JavaScriptCore as JavaScriptCore
newtype JavascriptResult = JavascriptResult (ForeignPtr JavascriptResult)
foreign import ccall "webkit_javascript_result_get_type" c_webkit_javascript_result_get_type ::
IO GType
instance BoxedObject JavascriptResult where
boxedType _ = c_webkit_javascript_result_get_type
noJavascriptResult :: Maybe JavascriptResult
noJavascriptResult = Nothing
-- method JavascriptResult::get_global_context
-- method type : OrdinaryMethod
-- Args : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- Lengths : []
-- hInArgs : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- returnType : TInterface "JavaScriptCore" "GlobalContext"
-- throws : False
-- Skip return : False
foreign import ccall "webkit_javascript_result_get_global_context" webkit_javascript_result_get_global_context ::
Ptr JavascriptResult -> -- _obj : TInterface "WebKit2" "JavascriptResult"
IO (Ptr JavaScriptCore.GlobalContext)
javascriptResultGetGlobalContext ::
(MonadIO m) =>
JavascriptResult -> -- _obj
m JavaScriptCore.GlobalContext
javascriptResultGetGlobalContext _obj = liftIO $ do
let _obj' = unsafeManagedPtrGetPtr _obj
result <- webkit_javascript_result_get_global_context _obj'
checkUnexpectedReturnNULL "webkit_javascript_result_get_global_context" result
-- XXX Wrapping a foreign struct/union with no known destructor, leak?
result' <- (\x -> JavaScriptCore.GlobalContext <$> newForeignPtr_ x) result
touchManagedPtr _obj
return result'
-- method JavascriptResult::get_value
-- method type : OrdinaryMethod
-- Args : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- Lengths : []
-- hInArgs : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- returnType : TInterface "JavaScriptCore" "Value"
-- throws : False
-- Skip return : False
foreign import ccall "webkit_javascript_result_get_value" webkit_javascript_result_get_value ::
Ptr JavascriptResult -> -- _obj : TInterface "WebKit2" "JavascriptResult"
IO (Ptr JavaScriptCore.Value)
javascriptResultGetValue ::
(MonadIO m) =>
JavascriptResult -> -- _obj
m JavaScriptCore.Value
javascriptResultGetValue _obj = liftIO $ do
let _obj' = unsafeManagedPtrGetPtr _obj
result <- webkit_javascript_result_get_value _obj'
checkUnexpectedReturnNULL "webkit_javascript_result_get_value" result
-- XXX Wrapping a foreign struct/union with no known destructor, leak?
result' <- (\x -> JavaScriptCore.Value <$> newForeignPtr_ x) result
touchManagedPtr _obj
return result'
-- method JavascriptResult::ref
-- method type : OrdinaryMethod
-- Args : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- Lengths : []
-- hInArgs : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- returnType : TInterface "WebKit2" "JavascriptResult"
-- throws : False
-- Skip return : False
foreign import ccall "webkit_javascript_result_ref" webkit_javascript_result_ref ::
Ptr JavascriptResult -> -- _obj : TInterface "WebKit2" "JavascriptResult"
IO (Ptr JavascriptResult)
javascriptResultRef ::
(MonadIO m) =>
JavascriptResult -> -- _obj
m JavascriptResult
javascriptResultRef _obj = liftIO $ do
let _obj' = unsafeManagedPtrGetPtr _obj
result <- webkit_javascript_result_ref _obj'
checkUnexpectedReturnNULL "webkit_javascript_result_ref" result
result' <- (wrapBoxed JavascriptResult) result
touchManagedPtr _obj
return result'
-- method JavascriptResult::unref
-- method type : OrdinaryMethod
-- Args : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- Lengths : []
-- hInArgs : [Arg {argName = "_obj", argType = TInterface "WebKit2" "JavascriptResult", direction = DirectionIn, mayBeNull = False, argScope = ScopeTypeInvalid, argClosure = -1, argDestroy = -1, transfer = TransferNothing}]
-- returnType : TBasicType TVoid
-- throws : False
-- Skip return : False
foreign import ccall "webkit_javascript_result_unref" webkit_javascript_result_unref ::
Ptr JavascriptResult -> -- _obj : TInterface "WebKit2" "JavascriptResult"
IO ()
javascriptResultUnref ::
(MonadIO m) =>
JavascriptResult -> -- _obj
m ()
javascriptResultUnref _obj = liftIO $ do
let _obj' = unsafeManagedPtrGetPtr _obj
webkit_javascript_result_unref _obj'
touchManagedPtr _obj
return ()