Safe Haskell | None |
---|---|
Language | Haskell98 |
Graphics.UI.Gtk.WebKit.DOM.Node
Documentation
nodeInsertBefore :: (NodeClass self, NodeClass newChild, NodeClass refChild) => self -> Maybe newChild -> Maybe refChild -> IO (Maybe Node)
nodeReplaceChild :: (NodeClass self, NodeClass newChild, NodeClass oldChild) => self -> Maybe newChild -> Maybe oldChild -> IO (Maybe Node)
nodeRemoveChild :: (NodeClass self, NodeClass oldChild) => self -> Maybe oldChild -> IO (Maybe Node)
nodeAppendChild :: (NodeClass self, NodeClass newChild) => self -> Maybe newChild -> IO (Maybe Node)
nodeHasChildNodes :: NodeClass self => self -> IO Bool
nodeNormalize :: NodeClass self => self -> IO ()
nodeLookupPrefix :: NodeClass self => self -> String -> IO String
nodeIsDefaultNamespace :: NodeClass self => self -> String -> IO Bool
nodeLookupNamespaceURI :: NodeClass self => self -> String -> IO String
nodeDispatchEvent :: (NodeClass self, EventClass event) => self -> Maybe event -> IO Bool
nodeGetNodeName :: NodeClass self => self -> IO String
nodeSetNodeValue :: NodeClass self => self -> String -> IO ()
nodeGetNodeValue :: NodeClass self => self -> IO String
nodeGetNodeType :: NodeClass self => self -> IO Word
nodeGetParentNode :: NodeClass self => self -> IO (Maybe Node)
nodeGetChildNodes :: NodeClass self => self -> IO (Maybe NodeList)
nodeGetFirstChild :: NodeClass self => self -> IO (Maybe Node)
nodeGetLastChild :: NodeClass self => self -> IO (Maybe Node)
nodeGetPreviousSibling :: NodeClass self => self -> IO (Maybe Node)
nodeGetNextSibling :: NodeClass self => self -> IO (Maybe Node)
nodeGetOwnerDocument :: NodeClass self => self -> IO (Maybe Document)
nodeGetNamespaceURI :: NodeClass self => self -> IO String
nodeSetPrefix :: NodeClass self => self -> String -> IO ()
nodeGetPrefix :: NodeClass self => self -> IO String
nodeGetLocalName :: NodeClass self => self -> IO String
nodeGetBaseURI :: NodeClass self => self -> IO String
nodeSetTextContent :: NodeClass self => self -> String -> IO ()
nodeGetTextContent :: NodeClass self => self -> IO String
nodeGetParentElement :: NodeClass self => self -> IO (Maybe Element)
class GObjectClass o => NodeClass o
Instances
castToNode :: GObjectClass obj => obj -> Node