• Stars
    star
    1,565
  • Rank 28,795 (Top 0.6 %)
  • Language
    Haskell
  • License
    Other
  • Created almost 9 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A declarative Unix terminal UI library written in Haskell

brick is a Haskell terminal user interface (TUI) programming toolkit. To use it, you write a pure function that describes how your user interface should be drawn based on your current application state and you provide a state transformation function to handle events.

brick exposes a declarative API. Unlike most GUI toolkits which require you to write a long and tedious sequence of widget creations and layout setup, brick just requires you to describe your interface using a set of declarative layout combinators. Event-handling is done by pattern-matching on incoming events and updating your application state.

Under the hood, this library builds upon vty, so some knowledge of Vty will be helpful in using this library.

Example

Here's an example interface (see programs/ReadmeDemo.hs):

joinBorders $
withBorderStyle unicode $
borderWithLabel (str "Hello!") $
(center (str "Left") <+> vBorder <+> center (str "Right"))

Result:

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€Hello!─────────┐
β”‚           β”‚            β”‚
β”‚           β”‚            β”‚
β”‚   Left    β”‚   Right    β”‚
β”‚           β”‚            β”‚
β”‚           β”‚            β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Featured Projects

To get an idea of what some people have done with brick, check out these projects. If you have made something and would like me to include it, get in touch!

Project Description
tetris An implementation of the Tetris game
gotta-go-fast A typing tutor
haskell-player An afplay frontend
mushu An MPD client
matterhorn A client for Mattermost
viewprof A GHC profile viewer
tart A mouse-driven ASCII art drawing program
silly-joy An interpreter for Joy
herms A command-line tool for managing kitchen recipes
purebred A mail user agent
2048Haskell An implementation of the 2048 game
bhoogle A Hoogle client
clifm A file manager
towerHanoi Animated solutions to The Tower of Hanoi
VOIDSPACE A space-themed typing-tutor game
solitaire The card game
sudoku-tui A Sudoku implementation
summoner-tui An interactive frontend to the Summoner tool
wrapping-editor An embeddable editor with support for Brick
git-brunch A git branch checkout utility
hascard A program for reviewing "flash card" notes
ttyme A TUI for Harvest
ghcup A TUI for ghcup, the Haskell toolchain manager
cbookview A TUI for exploring polyglot chess opening book files
thock A modern TUI typing game featuring online racing against friends
fifteen An implementation of the 15 puzzle
maze A Brick-based maze game
pboy A tiny PDF organizer
hyahtzee2 Famous Yahtzee dice game
brewsage A TUI for Homebrew
sandwich A test framework with a TUI interface
youbrick A feed aggregator and launcher for Youtube channels
swarm A 2D programming and resource gathering game
hledger-ui A terminal UI for the hledger accounting system.
hledger-iadd An interactive terminal UI for adding hledger journal entries
wordle An implementation of the Wordle game
kpxhs An interactive Keepass database viewer
htyper A typing speed test program
ullekha An interactive terminal notes/todo app with file/redis persistence
mywork [Hackage] A tool to keep track of the projects you are working on
hic-hac-hoe Play tic tac toe in terminal!
babel-cards A TUI spaced-repetition memorization tool. Similar to Anki.
codenames-haskell An implementation of the Codenames game
haradict A TUI Arabic dictionary powered by ElixirFM
Giter A UI wrapper around Git CLI inspired by Magit.
Brickudoku A hybrid of Tetris and Sudoku
timeloop A time-travelling demonstrator

These third-party packages also extend brick:

Project Description
brick-filetree [Hackage] A widget for exploring a directory tree and selecting or flagging files and directories
brick-panes [Hackage] A Brick overlay library providing composition and isolation of screen areas for TUI apps.

Release Announcements / News

Find out about brick releases and other news on Twitter:

https://twitter.com/brick_haskell/

Getting Started

Check out the many demo programs to get a feel for different aspects of the library:

$ cabal new-build -f demos
$ find dist-newstyle -type f -name \*-demo

To get started, see the user guide.

Documentation

Documentation for brick comes in a variety of forms:

Feature Overview

brick comes with a bunch of batteries included:

  • Vertical and horizontal box layout widgets
  • Basic single- and multi-line text editor widgets
  • List and table widgets
  • Progress bar widget
  • Simple dialog box widget
  • Border-drawing widgets (put borders around or in between things)
  • Generic scrollable viewports and viewport scroll bars
  • General-purpose layout control combinators
  • Extensible widget-building API
  • User-customizable attribute themes
  • Type-safe, validated input form API (see the Brick.Forms module)
  • A filesystem browser for file and directory selection
  • Borders can be configured to automatically connect!

Brick Discussion

There are two forums for discussing brick-related things:

  1. The Discussions page on the github repo, and
  2. The brick-users Google Group / e-mail list. You can subscribe here.

Status

There are some places were I have deliberately chosen to worry about performance later for the sake of spending more time on the design (and to wait on performance issues to arise first). brick is also something of an experimental project of mine and some aspects of the design involve trade-offs that might not be right for your application. Brick is not intended to be all things to all people; rather, I want it to provide a good foundation for building complex terminal interfaces in a declarative style to take away specific headaches of building, modifying, and working with such interfaces, all while seeing how far we can get with a pure function to specify the interface.

brick exports an extension API that makes it possible to make your own packages and widgets. If you use that, you'll also be helping to test whether the exported interface is usable and complete!

Reporting bugs

Please file bug reports as GitHub issues. For best results:

  • Include the versions of relevant software packages: your terminal emulator, brick, ghc, and vty will be the most important ones.

  • Clearly describe the behavior you expected ...

  • ... and include a minimal demonstration program that exhibits the behavior you actually observed.

Contributing

If you decide to contribute, that's great! Here are some guidelines you should consider to make submitting patches easier for all concerned:

  • If you want to take on big things, talk to me first; let's have a design/vision discussion before you start coding. Create a GitHub issue and we can use that as the place to hash things out.
  • Please make changes consistent with the conventions I've used in the codebase.
  • Please adjust or provide Haddock and/or user guide documentation relevant to any changes you make.
  • Please ensure that commits are -Wall clean.
  • Please ensure that each commit makes a single, logical, isolated change as much as possible.
  • Please do not submit changes that your linter told you to make. I will probably decline them. Relatedly: please do not submit changes that change only style without changing functionality.
  • Please do NOT include package version changes in your patches. Package version changes are only done at release time when the full scope of a release's changes can be evaluated to determine the appropriate version change.

More Repositories

1

tart

Tart - draw ASCII art in the terminal with your mouse!
Haskell
380
star
2

vty

A high-level ncurses alternative written in Haskell
Haskell
322
star
3

dbmigrations

A library for the creation, management, and installation of schema updates for relational databases.
Haskell
74
star
4

vty-ui

A terminal user interface programming library similar to graphical interfaces such as GTK and QT. (DEPRECATED, see https://github.com/jtdaugherty/brick)
Haskell
72
star
5

mathblog

A package for managing a static, mathematically-inclined web log
Haskell
25
star
6

tracy

A Haskell ray tracer largely based on http://www.raytracegroundup.com/
Haskell
23
star
7

text-zipper

A text editor zipper libary
Haskell
18
star
8

brick-skylighting

Display syntax-highlighted text in Brick user interfaces
Haskell
12
star
9

dbmigrations-postgresql

This is the PostgreSQL support package for dbmigrations.
Haskell
8
star
10

word-wrap

A Haskell library for wrapping long lines of text
Haskell
8
star
11

tmux-config

My tmux configuration
Shell
7
star
12

mutt-tutorial

6
star
13

vty-unix

Unix backend for Vty
Haskell
4
star
14

ccat

Colorize just about any text file in a terminal with Pygments
Python
4
star
15

toot

Console twitter client
Haskell
3
star
16

t2

An interactive ray tracer powered by OpenCL
C
3
star
17

text-markup

Text markup data structure
Haskell
3
star
18

smtp

Haskell client support for SMTP
Haskell
3
star
19

vty-crossplatform

Build-time cross-platform package for Vty
Haskell
3
star
20

vty-ui-builder-tool

A command-line tool interface for the vty-ui-builder library and document reader backends
Haskell
2
star
21

flux

A ray tracer implementation in Rust
Rust
2
star
22

vty-ui-builder

A user interface code generator for vty-ui
Haskell
2
star
23

dbmigrations-client

An interactive terminal client for dbmigrations
Haskell
2
star
24

vimrc

My Vim configuration
Vim Script
2
star
25

dbmigrations-mysql

This is the MySQL support package for dbmigrations.
Haskell
2
star
26

rules

A library for structured data validation and extraction
Haskell
2
star
27

vty-ui-extras

Extra functionality not included in the core vty-ui package
Haskell
2
star
28

vty-ui-builder-xml

vty-ui-builder XML input document reader
Haskell
2
star
29

mix-assembler

Haskell implementation of an assembler for the MIXAL assembly language
Haskell
2
star
30

language-mixal

Haskell parser and pretty-printer for the MIXAL assembly language
Haskell
2
star
31

jtdaugherty.github.com

github site
CSS
2
star
32

prj

A shell script tool for managing project environment configurations
Shell
2
star
33

rttest

Haskell
1
star
34

rebound

A ray tracer project in Rust based on Ray Tracing In One Weekend
Rust
1
star
35

brick-devlunch

Haskell
1
star
36

dbmigrations-sqlite

This is the SQLite support package for dbmigrations.
Haskell
1
star
37

sdl-sandbox

An SDL sandbox codebase for 2-D game engine explorations
C++
1
star
38

text-zipper-benchmarks

Criterion benchmarks for the text-zipper library
Haskell
1
star
39

emacs-config

Obligatory emacs configuration repository
Emacs Lisp
1
star