123456789_123456789_123456789_123456789_123456789_

Class: Reline::GeneralIO

Relationships & Source Files
Inherits: Object
Defined in: lib/reline/general_io.rb

Constant Summary

Class Attribute Summary

Class Method Summary

Class Attribute Details

.input=(val) (writeonly)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 16

def self.input=(val)
  @@input = val
end

.win?Boolean (readonly)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 8

def self.win?
  false
end

Class Method Details

.clear_screen

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 61

def self.clear_screen
end

.cursor_pos

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 42

def self.cursor_pos
  Reline::CursorPos.new(1, 1)
end

.deprep(otio)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 73

def self.deprep(otio)
end

.encoding

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 4

def self.encoding
  RUBY_PLATFORM =~ /mswin|mingw/ ? Encoding::UTF_8 : Encoding::default_external
end

.erase_after_cursor

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 55

def self.erase_after_cursor
end

.get_screen_size

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 38

def self.get_screen_size
  [1, 1]
end

.getc

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 20

def self.getc
  unless @@buf.empty?
    return @@buf.shift
  end
  c = nil
  loop do
    result = select([@@input], [], [], 0.1)
    next if result.nil?
    c = @@input.read(1)
    break
  end
  c&.ord
end

.move_cursor_column(val)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 46

def self.move_cursor_column(val)
end

.move_cursor_down(val)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 52

def self.move_cursor_down(val)
end

.move_cursor_up(val)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 49

def self.move_cursor_up(val)
end

.prep

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 70

def self.prep
end

.scroll_down(val)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 58

def self.scroll_down(val)
end

.set_screen_size(rows, columns)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 64

def self.set_screen_size(rows, columns)
end

.set_winch_handler(&handler)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 67

def self.set_winch_handler(&handler)
end

.ungetc(c)

[ GitHub ]

  
# File 'lib/reline/general_io.rb', line 34

def self.ungetc(c)
  @@buf.unshift(c)
end