UIMiniWindowContainer = extends(UIWidget) function UIMiniWindowContainer.create() local container = UIMiniWindowContainer.internalCreate() container:setFocusable(false) container:setPhantom(true) return container end function UIMiniWindowContainer:onDrop(widget, mousePos) widget:setParent(self) return true end function UIMiniWindowContainer:getClassName() return 'UIMiniWindowContainer' end