Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setLeft :: ViewportScroll n -> forall s . () => Int -> EventM n s ()

    brick Brick.Main

    Set the left column offset of the viewport.

  2. setTop :: ViewportScroll n -> forall s . () => Int -> EventM n s ()

    brick Brick.Main

    Set the top row offset of the viewport.

  3. setAvailableSize :: (Int, Int) -> Widget n -> Widget n

    brick Brick.Widgets.Core

    Set the rendering context height and width for this widget. This is useful for relaxing the rendering size constraints on e.g. layer widgets where cropping to the screen size is undesirable.

  4. setDialogFocus :: Eq n => n -> Dialog a n -> Dialog a n

    brick Brick.Widgets.Dialog

    Set the focused button of a dialog.

  5. setFileBrowserEntryFilter :: Maybe (FileInfo -> Bool) -> FileBrowser n -> FileBrowser n

    brick Brick.Widgets.FileBrowser

    Set the filtering function used to determine which entries in the browser's current directory appear in the browser. Nothing indicates no filtering, meaning all entries will be shown. Just indicates a function that should return True for entries that should be permitted to appear. Note that this applies the filter after setting it by updating the listed entries to reflect the result of the filter. That is unlike setting the filter with the fileBrowserEntryFilterL lens directly, which just sets the filter but does not (and cannot) update the listed entries.

  6. setWorkingDirectory :: FilePath -> FileBrowser n -> IO (FileBrowser n)

    brick Brick.Widgets.FileBrowser

    Set the working directory of the file browser. This scans the new directory and repopulates the browser while maintaining any active search string and/or entry filtering. If the directory scan raises an IOException, the exception is stored in the browser and is accessible with fileBrowserException. If no exception is raised, the exception field is cleared. Regardless of whether an exception is raised, .. is always presented as a valid option in the browser.

  7. setColAlignment :: ColumnAlignment -> Int -> Table n -> Table n

    brick Brick.Widgets.Table

    Set the alignment for the specified column index (starting at zero). Silently does nothing if the index is out of range.

  8. setDefaultColAlignment :: ColumnAlignment -> Table n -> Table n

    brick Brick.Widgets.Table

    Set the default column alignment for columns with no explicitly configured alignment.

  9. setDefaultRowAlignment :: RowAlignment -> Table n -> Table n

    brick Brick.Widgets.Table

    Set the default row alignment for rows with no explicitly configured alignment.

  10. setRowAlignment :: RowAlignment -> Int -> Table n -> Table n

    brick Brick.Widgets.Table

    Set the alignment for the specified row index (starting at zero). Silently does nothing if the index is out of range.

Page 367 of many | Previous | Next