ncurses.cr
ncurses
ncurses.cr
is a Crystal binding to the C ncurses library.
Installation
Add this to your application's shard.yml
:
dependencies:
ncurses:
github: agatan/ncurses.cr
You also need to install the ncurses library. e.g. in ubuntu, sudo apt install libncursesw5-dev
Usage
require "ncurses"
NCurses.open do
# initialize
NCurses.cbreak
NCurses.noecho
NCurses.start_color
# define background color
pair = NCurses::ColorPair.new(1).init(NCurses::Color::RED, NCurses::Color::BLACK)
NCurses.bkgd(pair)
NCurses.erase
# move the cursor
NCurses.move(x: 0, y: 1)
# longname returns the verbose description of the current terminal
NCurses.addstr(NCurses.longname)
NCurses.move(x: 0, y: 2)
NCurses.addstr(NCurses.curses_version)
NCurses.move(y: 10, x: 20)
NCurses.addstr("Hello, world!")
NCurses.refresh
NCurses.notimeout(true)
NCurses.getch
end
Examples
See example/
for more examples.
Contributing
- Fork it ( https://github.com/[your-github-name]/ncurses/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- agatan Naomichi Agata - creator, maintainer
Repository
ncurses.cr
Owner
Statistic
- 31
- 7
- 4
- 7
- 0
- about 5 years ago
- December 7, 2016
License
MIT License
Links
Synced at
Thu, 07 Nov 2024 00:28:03 GMT
Languages