|
Graphics.UI.WXCore.Controls |
|
|
|
|
Description |
|
|
Synopsis |
|
|
|
|
Log
|
|
textCtrlMakeLogActiveTarget :: TextCtrl a -> IO () |
Set a text control as a log target.
|
|
logDeleteAndSetActiveTarget :: Log a -> IO () |
Sets the active log target and deletes the old one.
|
|
Tree control
|
|
data TreeCookie |
Represents the children of a tree control.
|
|
|
treeCtrlGetChildCookie :: TreeCtrl a -> TreeItem -> IO TreeCookie |
Get a TreeCookie to iterate through the children of tree node.
|
|
treeCtrlGetNextChild2 :: TreeCtrl a -> TreeCookie -> IO (Maybe TreeItem) |
Get the next child of a tree node. Returns Nothing when
the end of the list is reached. This also invalidates the tree cookie.
|
|
treeCtrlWithChildren :: TreeCtrl a -> TreeItem -> (TreeItem -> IO b) -> IO [b] |
Iterate on the list of children of a tree node.
|
|
treeCtrlGetChildren :: TreeCtrl a -> TreeItem -> IO [TreeItem] |
Get the children of tree node.
|
|
treeCtrlGetSelections2 :: TreeCtrl a -> IO [TreeItem] |
Get the selections of a tree control.
|
|
Wrappers
|
|
listBoxGetSelectionList :: ListBox a -> IO [Int] |
Return the current selection in a listbox.
|
|
Produced by Haddock version 0.7 |