Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setFormConcat :: ([Widget n] -> Widget n) -> Form s e n -> Form s e nbrick Brick.Forms Set a form's concatenation function.
setFormFocus :: Eq n => n -> Form s e n -> Form s e nbrick Brick.Forms Set the focused field of a form.
updateFormState :: s -> Form s e n -> Form s e nbrick Brick.Forms Update the state contained in a form. This updates all form fields to be consistent with the new form state. Where possible, this attempts to maintain other input state, such as text editor cursor position. Note that since this updates the form fields, this means that any field values will be completely overwritten! This may or may not be what you want, since a user actively using the form could get confused if their edits go away. Use carefully.
SBHandleBefore :: ClickableScrollbarElementbrick Brick.Types The handle at the beginning (left/top) of the scroll bar.
SBTroughBefore :: ClickableScrollbarElementbrick Brick.Types The trough before the scroll bar.
renderHScrollbarHandleBefore :: HScrollbarRenderer n -> Widget nbrick Brick.Types How to render the handle that appears at the top or left of the scrollbar. The result will be allowed to be at most one column wide.
renderVScrollbarHandleBefore :: VScrollbarRenderer n -> Widget nbrick Brick.Types How to render the handle that appears at the top or left of the scrollbar. The result will be allowed to be at most one row high.
renderHScrollbarHandleBefore :: HScrollbarRenderer n -> Widget nbrick Brick.Widgets.Core How to render the handle that appears at the top or left of the scrollbar. The result will be allowed to be at most one column wide.
renderVScrollbarHandleBefore :: VScrollbarRenderer n -> Widget nbrick Brick.Widgets.Core How to render the handle that appears at the top or left of the scrollbar. The result will be allowed to be at most one row high.
entriesForDirectory :: FilePath -> IO [FileInfo]brick Brick.Widgets.FileBrowser Build a list of file info entries for the specified directory. This function does not catch any exceptions raised by calling makeAbsolute or listDirectory, but it does catch exceptions on a per-file basis. Any exceptions caught when inspecting individual files are stored in the fileInfoFileStatus field of each FileInfo. The entries returned are all entries in the specified directory except for . and ... Directories are always given first. Entries are sorted in case-insensitive lexicographic order. This function is exported for those who want to implement their own file browser using the types in this module.