Method: RubyCurses::TextView#print_foot

Defined in:
lib/rbcurse/core/widgets/rtextview.rb

:nodoc:



210
211
212
213
214
215
216
# File 'lib/rbcurse/core/widgets/rtextview.rb', line 210

def print_foot #:nodoc:
  @footer_attrib ||= Ncurses::A_REVERSE
  footer = "R: #{@current_index+1}, C: #{@curpos+@pcol}, #{@list.length} lines  "
  $log.debug " print_foot calling printstring with #{@row} + #{@height} -1, #{@col}+2"
  @graphic.printstring( @row + @height -1 , @col+2, footer, @color_pair || $datacolor, @footer_attrib) 
  @repaint_footer_required = false # 2010-01-23 22:55 
end