goo.panel.luadoc 348 B

12345678910111213
  1. --[[ A panel is a draggable box with a close button and a title ]]
  2. module 'goo.panel'
  3. --[[ Sets the title of the panel
  4. @param title:string The title.
  5. ]]
  6. function setTitle(title)
  7. --[[ Set whether the panel can be dragged ]]
  8. function setDraggable( draggable )
  9. --[[ Set whether the close button should be shown ]]
  10. function showCloseButton( bool )