webkit-0.12.5: Binding to the Webkit library.

Safe HaskellNone

Graphics.UI.Gtk.WebKit.DOM.DOMSelection

Documentation

domSelectionCollapse :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()Source

domSelectionCollapseToEnd :: DOMSelectionClass self => self -> IO ()Source

domSelectionCollapseToStart :: DOMSelectionClass self => self -> IO ()Source

domSelectionDeleteFromDocument :: DOMSelectionClass self => self -> IO ()Source

domSelectionContainsNode :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Bool -> IO BoolSource

domSelectionSelectAllChildren :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> IO ()Source

domSelectionExtend :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()Source

domSelectionGetRangeAt :: DOMSelectionClass self => self -> Int -> IO (Maybe DOMRange)Source

domSelectionRemoveAllRanges :: DOMSelectionClass self => self -> IO ()Source

domSelectionAddRange :: (DOMSelectionClass self, DOMRangeClass range) => self -> Maybe range -> IO ()Source

domSelectionModify :: DOMSelectionClass self => self -> String -> String -> String -> IO ()Source

domSelectionSetBaseAndExtent :: (DOMSelectionClass self, NodeClass baseNode, NodeClass extentNode) => self -> Maybe baseNode -> Int -> Maybe extentNode -> Int -> IO ()Source

domSelectionSetPosition :: (DOMSelectionClass self, NodeClass node) => self -> Maybe node -> Int -> IO ()Source

domSelectionEmpty :: DOMSelectionClass self => self -> IO ()Source

domSelectionGetAnchorNode :: DOMSelectionClass self => self -> IO (Maybe Node)Source

domSelectionGetAnchorOffset :: DOMSelectionClass self => self -> IO IntSource

domSelectionGetFocusNode :: DOMSelectionClass self => self -> IO (Maybe Node)Source

domSelectionGetFocusOffset :: DOMSelectionClass self => self -> IO IntSource

domSelectionGetIsCollapsed :: DOMSelectionClass self => self -> IO BoolSource

domSelectionGetRangeCount :: DOMSelectionClass self => self -> IO IntSource

domSelectionGetBaseNode :: DOMSelectionClass self => self -> IO (Maybe Node)Source

domSelectionGetBaseOffset :: DOMSelectionClass self => self -> IO IntSource

domSelectionGetExtentNode :: DOMSelectionClass self => self -> IO (Maybe Node)Source

domSelectionGetExtentOffset :: DOMSelectionClass self => self -> IO IntSource