2012-06-26 00:13:30 +02:00
|
|
|
-- @docclass
|
2012-03-27 00:24:01 +02:00
|
|
|
UIMiniWindow = extends(UIWindow)
|
|
|
|
|
|
|
|
function UIMiniWindow.create()
|
|
|
|
local miniwindow = UIMiniWindow.internalCreate()
|
|
|
|
return miniwindow
|
|
|
|
end
|
|
|
|
|
2012-06-21 21:31:22 +02:00
|
|
|
function UIMiniWindow:getClassName()
|
|
|
|
return 'UIMiniWindow'
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:open(dontSave)
|
|
|
|
self:setVisible(true)
|
|
|
|
|
|
|
|
if not dontSave then
|
|
|
|
self:setSettings({closed = false})
|
|
|
|
end
|
|
|
|
|
|
|
|
signalcall(self.onOpen, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:close(dontSave)
|
|
|
|
self:setVisible(false)
|
|
|
|
|
|
|
|
if not dontSave then
|
|
|
|
self:setSettings({closed = true})
|
|
|
|
end
|
|
|
|
|
|
|
|
signalcall(self.onClose, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:minimize(dontSave)
|
|
|
|
self:setOn(true)
|
|
|
|
self:getChildById('contentsPanel'):hide()
|
|
|
|
self:getChildById('miniwindowScrollBar'):hide()
|
|
|
|
self:getChildById('bottomResizeBorder'):hide()
|
|
|
|
self:getChildById('minimizeButton'):setOn(true)
|
|
|
|
self.savedHeight = self:getHeight()
|
|
|
|
self:setHeight(self.minimizedHeight)
|
|
|
|
|
|
|
|
if not dontSave then
|
|
|
|
self:setSettings({minimized = true})
|
|
|
|
end
|
|
|
|
|
|
|
|
signalcall(self.onMinimize, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:maximize(dontSave)
|
|
|
|
self:setOn(false)
|
|
|
|
self:getChildById('contentsPanel'):show()
|
|
|
|
self:getChildById('miniwindowScrollBar'):show()
|
|
|
|
self:getChildById('bottomResizeBorder'):show()
|
|
|
|
self:getChildById('minimizeButton'):setOn(false)
|
|
|
|
self:setHeight(self.savedHeight)
|
|
|
|
|
|
|
|
if not dontSave then
|
|
|
|
self:setSettings({minimized = false})
|
|
|
|
end
|
|
|
|
|
|
|
|
signalcall(self.onMaximize, self)
|
|
|
|
end
|
|
|
|
|
2012-03-28 16:10:21 +02:00
|
|
|
function UIMiniWindow:onSetup()
|
2012-06-21 21:31:22 +02:00
|
|
|
self:getChildById('closeButton').onClick =
|
|
|
|
function()
|
|
|
|
self:close()
|
|
|
|
end
|
|
|
|
|
|
|
|
self:getChildById('minimizeButton').onClick =
|
|
|
|
function()
|
|
|
|
if self:isOn() then
|
|
|
|
self:maximize()
|
|
|
|
else
|
|
|
|
self:minimize()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-24 14:41:39 +02:00
|
|
|
local oldParent = self:getParent()
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
local settings = g_settings.getNode('MiniWindows')
|
2012-06-21 21:31:22 +02:00
|
|
|
if settings then
|
|
|
|
local selfSettings = settings[self:getId()]
|
|
|
|
if selfSettings then
|
|
|
|
if selfSettings.parentId then
|
|
|
|
local parent = rootWidget:recursiveGetChildById(selfSettings.parentId)
|
|
|
|
if parent then
|
|
|
|
if parent:getClassName() == 'UIMiniWindowContainer' and selfSettings.index and parent:isOn() then
|
2012-06-24 14:41:39 +02:00
|
|
|
self.miniIndex = selfSettings.index
|
2012-06-21 21:31:22 +02:00
|
|
|
parent:scheduleInsert(self, selfSettings.index)
|
|
|
|
elseif selfSettings.position then
|
|
|
|
self:setParent(parent)
|
|
|
|
self:setPosition(topoint(selfSettings.position))
|
|
|
|
self:bindRectToParent()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if selfSettings.minimized then
|
|
|
|
self:minimize(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
if selfSettings.closed then
|
|
|
|
self:close(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-06-24 14:41:39 +02:00
|
|
|
|
|
|
|
local newParent = self:getParent()
|
|
|
|
|
|
|
|
self.miniLoaded = true
|
|
|
|
|
|
|
|
if oldParent and oldParent:getClassName() == 'UIMiniWindowContainer' then
|
|
|
|
oldParent:order()
|
|
|
|
end
|
|
|
|
if newParent and newParent:getClassName() == 'UIMiniWindowContainer' and newParent ~= oldParent then
|
|
|
|
newParent:order()
|
|
|
|
end
|
2012-03-28 16:10:21 +02:00
|
|
|
end
|
|
|
|
|
2012-03-27 00:24:01 +02:00
|
|
|
function UIMiniWindow:onDragEnter(mousePos)
|
|
|
|
local parent = self:getParent()
|
|
|
|
if not parent then return false end
|
|
|
|
|
|
|
|
if parent:getClassName() == 'UIMiniWindowContainer' then
|
|
|
|
local containerParent = parent:getParent()
|
|
|
|
parent:removeChild(self)
|
|
|
|
containerParent:addChild(self)
|
2012-06-21 21:31:22 +02:00
|
|
|
parent:saveChildren()
|
2012-03-27 00:24:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local oldPos = self:getPosition()
|
|
|
|
self.movingReference = { x = mousePos.x - oldPos.x, y = mousePos.y - oldPos.y }
|
|
|
|
self:setPosition(oldPos)
|
2012-03-28 16:10:21 +02:00
|
|
|
self.free = true
|
2012-03-27 00:24:01 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2012-06-11 07:38:08 +02:00
|
|
|
function UIMiniWindow:onDragMove(mousePos, mouseMoved)
|
|
|
|
local oldMousePosY = mousePos.y - mouseMoved.y
|
2012-06-11 16:10:03 +02:00
|
|
|
local children = rootWidget:recursiveGetChildrenByMarginPos(mousePos)
|
2012-06-11 07:38:08 +02:00
|
|
|
local overAnyWidget = false
|
|
|
|
for i=1,#children do
|
|
|
|
local child = children[i]
|
|
|
|
if child:getParent():getClassName() == 'UIMiniWindowContainer' then
|
|
|
|
overAnyWidget = true
|
|
|
|
|
|
|
|
local childCenterY = child:getY() + child:getHeight() / 2
|
|
|
|
if child == self.movedWidget and mousePos.y < childCenterY and oldMousePosY < childCenterY then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.movedWidget then
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin(0)
|
|
|
|
self.setMovedChildMargin = nil
|
2012-06-11 07:38:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if mousePos.y < childCenterY then
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin = function(v) child:setMarginTop(v) end
|
2012-06-11 07:38:08 +02:00
|
|
|
self.movedIndex = 0
|
|
|
|
else
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin = function(v) child:setMarginBottom(v) end
|
2012-06-11 07:38:08 +02:00
|
|
|
self.movedIndex = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
self.movedWidget = child
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin(self:getHeight())
|
2012-06-11 07:38:08 +02:00
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if not overAnyWidget and self.movedWidget then
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin(0)
|
2012-06-11 07:38:08 +02:00
|
|
|
self.movedWidget = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
return UIWindow.onDragMove(self, mousePos, mouseMoved)
|
|
|
|
end
|
|
|
|
|
2012-03-28 16:10:21 +02:00
|
|
|
function UIMiniWindow:onMousePress()
|
|
|
|
local parent = self:getParent()
|
|
|
|
if not parent then return false end
|
|
|
|
if parent:getClassName() ~= 'UIMiniWindowContainer' then
|
|
|
|
self:raise()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-27 00:24:01 +02:00
|
|
|
function UIMiniWindow:onDragLeave(droppedWidget, mousePos)
|
2012-06-11 07:38:08 +02:00
|
|
|
if self.movedWidget then
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin(0)
|
2012-06-11 07:38:08 +02:00
|
|
|
self.movedWidget = nil
|
2012-06-11 16:10:03 +02:00
|
|
|
self.setMovedChildMargin = nil
|
2012-06-11 07:38:08 +02:00
|
|
|
self.movedIndex = nil
|
|
|
|
end
|
2012-06-21 21:31:22 +02:00
|
|
|
|
|
|
|
local parent = self:getParent()
|
|
|
|
if parent then
|
|
|
|
if parent:getClassName() == 'UIMiniWindowContainer' then
|
|
|
|
parent:saveChildren()
|
|
|
|
else
|
|
|
|
self:saveParentPosition(parent:getId(), self:getPosition())
|
|
|
|
end
|
|
|
|
end
|
2012-03-27 00:24:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:onFocusChange(focused)
|
|
|
|
-- miniwindows only raises when its outside MiniWindowContainers
|
|
|
|
if not focused then return end
|
|
|
|
local parent = self:getParent()
|
|
|
|
if parent and parent:getClassName() ~= 'UIMiniWindowContainer' then
|
|
|
|
self:raise()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-21 21:31:22 +02:00
|
|
|
function UIMiniWindow:setSettings(data)
|
2012-06-24 14:41:39 +02:00
|
|
|
if not self.save then return end
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
local settings = g_settings.getNode('MiniWindows')
|
2012-06-21 21:31:22 +02:00
|
|
|
if not settings then
|
|
|
|
settings = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
local id = self:getId()
|
|
|
|
if not settings[id] then
|
|
|
|
settings[id] = {}
|
|
|
|
end
|
2012-03-28 16:10:21 +02:00
|
|
|
|
2012-06-21 21:31:22 +02:00
|
|
|
for key,value in pairs(data) do
|
|
|
|
settings[id][key] = value
|
2012-03-28 16:10:21 +02:00
|
|
|
end
|
2012-06-21 21:31:22 +02:00
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
g_settings.setNode('MiniWindows', settings)
|
2012-03-28 16:10:21 +02:00
|
|
|
end
|
|
|
|
|
2012-06-21 21:31:22 +02:00
|
|
|
function UIMiniWindow:saveParentPosition(parentId, position)
|
|
|
|
local selfSettings = {}
|
|
|
|
selfSettings.parentId = parentId
|
|
|
|
selfSettings.position = pointtostring(position)
|
|
|
|
self:setSettings(selfSettings)
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIMiniWindow:saveParentIndex(parentId, index)
|
|
|
|
local selfSettings = {}
|
|
|
|
selfSettings.parentId = parentId
|
|
|
|
selfSettings.index = index
|
|
|
|
self:setSettings(selfSettings)
|
2012-03-28 21:09:45 +02:00
|
|
|
end
|