move selection logic to mouse click

This commit is contained in:
takase1121 2021-12-19 09:36:24 +08:00
parent becdb99222
commit 1526cd176c
No known key found for this signature in database
GPG Key ID: 60EEFFC68EB3031B
3 changed files with 22 additions and 21 deletions

View File

@ -1,18 +1,6 @@
local core = require "core"
local command = require "core.command"
command.add("core.logview", {
["log:expand-item"] = function()
if core.active_view.hovered_item then
core.active_view:expand_item(core.active_view.hovered_item)
end
end,
["log:copy-entry"] = function()
if core.active_view.hovered_item then
system.set_clipboard(core.get_log(core.active_view.hovered_item))
end
end
})
command.add(nil, {
["log:open-as-doc"] = function()

View File

@ -235,8 +235,7 @@ keymap.add_direct {
["pagedown"] = "doc:move-to-next-page",
["shift+1lclick"] = "doc:select-to-cursor",
["ctrl+1lclick"] = { "doc:split-cursor", "log:copy-entry" },
["lclick"] = "log:expand-item",
["ctrl+1lclick"] = "doc:split-cursor",
["1lclick"] = "doc:set-cursor",
["2lclick"] = "doc:set-cursor-word",
["3lclick"] = "doc:set-cursor-line",

View File

@ -1,5 +1,6 @@
local core = require "core"
local common = require "core.common"
local keymap = require "core.keymap"
local style = require "core.style"
local View = require "core.view"
@ -78,17 +79,30 @@ function LogView:each_item()
end
function LogView:on_mouse_moved(px, py, ...)
LogView.super.on_mouse_moved(self, px, py, ...)
local hovered = false
for _, item, x, y, w, h in self:each_item() do
function LogView:on_mouse_pressed(button, px, py, clicks)
if LogView.super.on_mouse_pressed(self, button, px, py, clicks) then
return true
end
local index, selected
for i, item, x, y, w, h in self:each_item() do
if px >= x and py >= y and px < x + w and py < y + h then
hovered = true
self.hovered_item = item
index = i
selected = item
break
end
end
if not hovered then self.hovered_item = nil end
if selected then
if keymap.modkeys["ctrl"] then
system.set_clipboard(core.get_log(selected))
core.status_view:show_message("i", style.text, "copied entry #"..index.." to clipboard.")
else
self:expand_item(selected)
end
end
return true
end