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 ()
nodeIsSupported :: (NodeClass self, GlibString string) => self -> string -> string -> IO Bool
nodeLookupPrefix :: (NodeClass self, GlibString string) => self -> string -> IO string
nodeIsDefaultNamespace :: (NodeClass self, GlibString string) => self -> string -> IO Bool
nodeLookupNamespaceURI :: (NodeClass self, GlibString string) => self -> string -> IO string
nodeDispatchEvent :: (NodeClass self, EventClass event) => self -> Maybe event -> IO Bool
nodeGetNodeName :: (NodeClass self, GlibString string) => self -> IO string
nodeSetNodeValue :: (NodeClass self, GlibString string) => self -> string -> IO ()
nodeGetNodeValue :: (NodeClass self, GlibString string) => 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, GlibString string) => self -> IO string
nodeSetPrefix :: (NodeClass self, GlibString string) => self -> string -> IO ()
nodeGetPrefix :: (NodeClass self, GlibString string) => self -> IO string
nodeGetLocalName :: (NodeClass self, GlibString string) => self -> IO string
nodeGetBaseURI :: (NodeClass self, GlibString string) => self -> IO string
nodeSetTextContent :: (NodeClass self, GlibString string) => self -> string -> IO ()
nodeGetTextContent :: (NodeClass self, GlibString string) => self -> IO string
nodeGetParentElement :: NodeClass self => self -> IO (Maybe Element)
class GObjectClass o => NodeClass o
Instances
castToNode :: GObjectClass obj => obj -> Node