class Sirens::Window

Component that wraps a WindowView.

Public Instance Methods

create_view() click to toggle source

Returns a WindowView.

# File lib/components/containers/window.rb, line 9
def create_view()
    WindowView.new
end
open() click to toggle source
# File lib/components/containers/window.rb, line 20
def open()
    show()
end
show() click to toggle source

Makes this component visible.

# File lib/components/containers/window.rb, line 16
def show()
    view.show
end