1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
-- mod-version:3
--[[
scalestatus.lua
displays current scale (zoom) in status view
version: 20200628_155804
originally by SwissalpS
--]]
local core = require "core"
local common = require "core.common"
local config = require "core.config"
local scale = require "plugins.scale"
local StatusView = require "core.statusview"
config.plugins.scalestatus = common.merge({
enabled = true,
format = '%.0f%%',
-- The config specification used by the settings gui
config_spec = {
name = "Scale Status",
{
label = "Enabled",
description = "Show or hide the scale status from the status bar.",
path = "enabled",
type = "toggle",
default = true,
on_apply = function(enabled)
core.add_thread(function()
if enabled then
core.status_view:get_item("status:scale"):show()
else
core.status_view:get_item("status:scale"):hide()
end
end)
end
}
}
}, config.plugins.scalestatus)
core.status_view:add_item({
name = "status:scale",
alignment = StatusView.Item.RIGHT,
get_item = function()
return {string.format(
config.plugins.scalestatus.format,
scale.get() * 100
)}
end,
position = 1,
tooltip = "scale",
separator = core.status_view.separator2
})
return true
|