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/menu.rb

19 lines
365 B
Ruby
Raw Normal View History

2017-07-21 11:00:11 -04:00
# frozen_string_literal: true
module Widgets
2017-07-22 11:37:22 -04:00
class Menu < Container
2017-07-22 08:51:01 -04:00
def initialize(x, y, _width, height)
2017-07-22 09:44:43 -04:00
super x, y, Logo::WIDTH, height
2017-07-22 10:51:07 -04:00
@logo = Logo.new x, y, nil, nil
2017-07-22 14:46:50 -04:00
@items = Items.new x, @logo.height, @logo.width, height
2017-07-22 13:13:57 -04:00
self.focus = @items
2017-07-22 08:51:01 -04:00
end
2017-07-22 11:37:22 -04:00
def children
[@logo, @items]
2017-07-21 11:00:11 -04:00
end
end
end