-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Convenience functions to extend Gtk2hs. -- -- Convenience functions to extend Gtk2hs. @package Gtk2hsGenerics @version 0.1 module Graphics.UI.Gtk.Generics.ListStore listStoreRepopulate :: ListStore a -> [a] -> IO () listStoreGetValueAtPath :: TreePath -> ListStore a -> IO a listStorePrependList :: ListStore a -> [a] -> IO () listStoreAppendList :: ListStore a -> [a] -> IO () module Graphics.UI.Gtk.Generics.TreeView treeViewGetSingleSelection :: TreeView -> ListStore a -> IO (Maybe a) treeViewGetMultipleSelections :: TreeView -> ListStore a -> IO (Maybe [a]) treeViewOperateOnSelection :: TreeView -> ListStore a -> (a -> b) -> IO (Maybe b) treeViewOperateOnSelections :: TreeView -> ListStore a -> ([a] -> b) -> IO (Maybe b) module Graphics.UI.Gtk.Generics.TreeStore treeStoreGetActivatedElements :: TreeStore a -> TreePath -> IO [a] -- | Function to find the path to a list of a contained in a -- Forest, i.e. each element corresponds to the branch in the Forest -- (TreeStore) that matches the the corresponding element in the supplied -- list. findPath :: Eq a => Forest a -> [a] -> TreePath