Module: Zgomot::UI::Utils
- Included in:
- TableCellWindow, TableRowWindow, TextWindow, TextWithValueWindow, TitleWindow
- Defined in:
- lib/zgomot/ui/windows.rb
Instance Method Summary collapse
Instance Method Details
#set_color(color, &blk) ⇒ Object
30 31 32 |
# File 'lib/zgomot/ui/windows.rb', line 30 def set_color(color, &blk) Curses.attron(Curses.color_pair(color)|Curses::A_NORMAL, &blk) end |
#write(y, x, str) ⇒ Object
33 34 35 36 |
# File 'lib/zgomot/ui/windows.rb', line 33 def write(y, x, str) Curses.setpos(y, x) Curses.addstr(str) end |