class InventoryRoom

Public Instance Methods

layout() click to toggle source
# File Views/Inventory/Room.rb, line 3
def layout
  set_data_class :Rooms
  
  gui_hbox do
    gui_vbox :nogroup do
      vtlp_list :rooms, 'name'
      show_button :new, :delete
    end

    gui_vbox :nogroup do
      show_block :all, :width => 200
      show_button :save
    end
  end
end