term
term
A library for easily writing text user interfaces.
Installation
Add this to your application's shard.yml:
dependencies:
term:
github: bmmcginty/term
Usage
require "./src/term"
w=MainWindow.new
tc=EditControl.new text: "00:00:00", height: 1
w.add tc
w.run
while 1
tc.text=Time.local.to_s("%H:%M:%S")
w.refresh
sleep 1
end
Testing
Specs will be added, and results will be validated by way of full screen dumps.
Development
add controls to src/controls/control_name.cr. Writing code for controls is the most time consuming task at this point. Each control should:
- provide focusable? to determine if a user can interact with it directly
- provide key(k) to accept keys
- provide a string via the text method to be used when rendering the control
- set user_x and/or user_y as appropriate when the user moves around the control
- set dirty to true when content or cursor position changes Controls should not use boarders. If you wish to add boarders or anything that isn't purely text, those elements should be toggleable, and set to disabled by default.
Contributing
- Fork it ( https://github.com/bmmcginty/term/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
- bmmcginty Brandon McGinty - creator, maintainer
Repository
term
Owner
Statistic
- 1
- 0
- 0
- 0
- 0
- 5 months ago
- May 31, 2024
License
Links
Synced at
Wed, 19 Nov 2025 12:27:00 GMT
Languages