Few more minor fixes to selection in game console

master
Konrad Kuśnierz 9 years ago
parent cf90bb9807
commit 559e545e36

@ -148,12 +148,12 @@ function init()
end end
function getSelection(widget) function getSelection(widget)
if not widget.selectionChildFirst or not widget.selectionChildLast then if not widget.selection then
return widget:getSelection() return widget:getSelection()
end end
local text = {} local text = {}
for selectionChild = widget.selectionChildFirst, widget.selectionChildLast do for selectionChild = widget.selection.first, widget.selection.last do
local label = widget:getParent():getChildByIndex(selectionChild) local label = widget:getParent():getChildByIndex(selectionChild)
table.insert(text, label:getSelection()) table.insert(text, label:getSelection())
end end
@ -161,6 +161,19 @@ function getSelection(widget)
return table.concat(text, '\r\n') return table.concat(text, '\r\n')
end end
function invalidateSelection(widget)
local parent = widget:getParent()
if widget.selection then
for selectionChild = widget.selection.first, widget.selection.last do
local label = parent:getChildByIndex(selectionChild)
if label ~= widget then
label:clearSelection()
end
end
widget.selection = nil
end
end
function toggleChat() function toggleChat()
if consoleToggleChat:isChecked() then if consoleToggleChat:isChecked() then
disableChat() disableChat()
@ -590,21 +603,6 @@ function addTabText(text, speaktype, tab, creatureName)
end end
end end
-- remove selection
local removeSelectedText = function(self)
local parent = self:getParent()
if self.selectionChildFirst and self.selectionChildLast then
for selectionChild = self.selectionChildFirst, self.selectionChildLast do
local label = parent:getChildByIndex(selectionChild)
if label ~= self then
label:clearSelection()
end
end
self.selectionChildFirst = nil
self.selectionChildLast = nil
end
end
label.name = creatureName label.name = creatureName
label.onMouseRelease = function(self, mousePos, mouseButton) label.onMouseRelease = function(self, mousePos, mouseButton)
-- TODO: regain lost selection -- TODO: regain lost selection
@ -612,10 +610,10 @@ function addTabText(text, speaktype, tab, creatureName)
end end
label.onFocusChange = function(self, focused, reason) label.onFocusChange = function(self, focused, reason)
-- TODO: we are losing focus on context menu and therefore the selection -- TODO: we are losing focus on context menu and therefore the selection
if not focused then removeSelectedText(self) end if not focused then invalidateSelection(self) end
end end
label.onMousePress = function(self, mousePos, button) label.onMousePress = function(self, mousePos, button)
if button == MouseLeftButton then removeSelectedText(self) end if button == MouseLeftButton then invalidateSelection(self) end
end end
label.onMouseMove = function(self, mousePos, mouseMoved) label.onMouseMove = function(self, mousePos, mouseMoved)
if self:isPressed() then if self:isPressed() then
@ -625,16 +623,13 @@ function addTabText(text, speaktype, tab, creatureName)
local childIndex = parent:getChildIndex(child) local childIndex = parent:getChildIndex(child)
-- remove old selection -- remove old selection
removeSelectedText(self) invalidateSelection(self)
-- choose new selection -- choose new selection
if child and child ~= self then if child and child ~= self then
self.selectionChildFirst = math.min(selfIndex, childIndex) self.selection = {first = math.min(selfIndex, childIndex), last = math.max(selfIndex, childIndex)}
self.selectionChildLast = math.max(selfIndex, childIndex) for selectionChild = self.selection.first + 1, self.selection.last - 1 do
parent:getChildByIndex(selectionChild):selectAll()
for selectionChild = self.selectionChildFirst + 1, self.selectionChildLast - 1 do
local label = parent:getChildByIndex(selectionChild)
label:selectAll()
end end
local textPos = child:getTextPos(mousePos) local textPos = child:getTextPos(mousePos)
@ -650,7 +645,9 @@ function addTabText(text, speaktype, tab, creatureName)
end end
if consoleBuffer:getChildCount() > MAX_LINES then if consoleBuffer:getChildCount() > MAX_LINES then
consoleBuffer:getFirstChild():destroy() local child = consoleBuffer:getFirstChild()
if child.selection then invalidateSelection(child) end
child:destroy()
end end
end end
@ -712,8 +709,9 @@ function processMessageMenu(mousePos, mouseButton, creatureName, text, label, ta
menu:addOption(tr('Copy name'), function () g_window.setClipboardText(creatureName) end) menu:addOption(tr('Copy name'), function () g_window.setClipboardText(creatureName) end)
end end
if label:hasSelection() then local selectedText = getSelection(label)
menu:addOption(tr('Copy'), function() g_window.setClipboardText(getSelection(label)) end, '(Ctrl+C)') if #selectedText > 0 then
menu:addOption(tr('Copy'), function() g_window.setClipboardText(selectedText) end, '(Ctrl+C)')
end end
menu:addOption(tr('Copy message'), function() g_window.setClipboardText(text) end) menu:addOption(tr('Copy message'), function() g_window.setClipboardText(text) end)
menu:addOption(tr('Select all'), function() label:selectAll() end) menu:addOption(tr('Select all'), function() label:selectAll() end)

Loading…
Cancel
Save