Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
cli-old/lib/widgets/base.rb
2017-07-25 14:29:21 +00:00

66 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Widgets
class Base
attr_reader :parent
attr_reader :props
def initialize(parent)
@parent = parent
@props = {}.freeze
end
def window
@window ||= parent ? parent.window.subwin(height, width, y, x) : Curses.stdscr
end
def trigger(event); end
def props=(value)
raise TypeError, "expected props to be a #{Hash}" unless value.is_a? Hash
raise ArgumentError, 'expected props to be frozen' unless value.frozen?
@window = nil if props[:x] != value[:x] || props[:y] != value[:y] ||
props[:width] != value[:width] || props[:height] != value[:height]
@props = value
end
def x
props[:x]
end
def y
props[:y]
end
def width
props[:width]
end
def height
props[:height]
end
def focused
props[:focused]
end
def render
draw
window.refresh
end
def draw
raise NotImplementedError, "#{self.class}#draw"
end
def setpos(x, y)
window.setpos y, x
end
def addstr(s)
window.addstr s
end
end
end