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/chat/info.rb
2017-07-24 11:54:00 +00:00

31 lines
603 B
Ruby

# frozen_string_literal: true
module Widgets
class Chat < VPanel
class Info < Base
attr_reader :name, :public_key
def initialize(parent, x, y, width, height)
super
@name = Faker::Name.name
@public_key = SecureRandom.hex 32
end
def draw
setpos 0, 0
Style.default.online_mark window do
addstr '[Online]'
end
addstr ' '
Style.default.peer_info_name window do
addstr name
end
setpos 0, 1
addstr 'Public key: '
addstr public_key
end
end
end
end