conky-config/drawing/common.lua

714 lines
19 KiB
Lua
Raw Normal View History

local M = {}
2021-08-08 18:13:52 -04:00
local geom = require 'geom'
2021-08-08 15:58:53 -04:00
local format = require 'format'
local theme = require 'theme'
2021-07-29 22:37:30 -04:00
local dial = require 'dial'
local rect = require 'rect'
2021-08-08 18:19:37 -04:00
local fill_rect = require 'fill_rect'
local compound_dial = require 'compound_dial'
2021-07-29 22:37:30 -04:00
local arc = require 'arc'
2021-08-06 23:41:17 -04:00
local circle = require 'circle'
2021-07-29 22:37:30 -04:00
local text = require 'text'
2021-08-08 18:19:37 -04:00
local tbl = require 'text_table'
local compound_bar = require 'compound_bar'
local text_threshold = require 'text_threshold'
local text_column = require 'text_column'
2021-07-29 22:37:30 -04:00
local line = require 'line'
local timeseries = require 'timeseries'
2021-08-08 18:19:37 -04:00
local scaled_timeseries = require 'scaled_timeseries'
2021-07-30 23:05:36 -04:00
local style = require 'style'
local source = require 'source'
local pure = require 'pure'
2021-07-11 21:11:38 -04:00
--------------------------------------------------------------------------------
-- constants
local FONT = 'Neuropolitical'
local NORMAL_FONT_SIZE = 13
local PLOT_LABEL_FONT_SIZE = 8
local TABLE_FONT_SIZE = 11
local HEADER_FONT_SIZE = 15
2021-07-11 21:11:38 -04:00
local HEADER_HEIGHT = 45
local HEADER_UNDERLINE_CAP = CAIRO_LINE_CAP_ROUND
2021-07-11 21:11:38 -04:00
local HEADER_UNDERLINE_OFFSET = 26
local HEADER_UNDERLINE_THICKNESS = 3
2021-07-11 21:11:38 -04:00
local SEPARATOR_THICKNESS = 1
local TABLE_BODY_FORMAT = 8
local TABLE_VERT_PAD = 15
local TABLE_HORZ_PAD = 5
local TABLE_HEADER_PAD = 20
local TABLE_LINE_THICKNESS = 1
local PLOT_NUM_POINTS = 90
local PLOT_GRID_X_N = 9
local PLOT_GRID_Y_N = 4
local ARC_WIDTH = 2
2021-07-11 23:10:35 -04:00
local DIAL_THETA0 = 90
local DIAL_THETA1 = 360
2021-08-06 23:41:17 -04:00
--------------------------------------------------------------------------------
-- line helper functions
local _make_horizontal_line = function(x, y, w)
2021-08-08 18:13:52 -04:00
return geom.make_line(geom.make_point(x, y), geom.make_point(x + w, y))
2021-08-06 23:41:17 -04:00
end
2021-07-11 21:11:38 -04:00
--------------------------------------------------------------------------------
2021-07-30 22:46:20 -04:00
-- text helper functions
2021-07-11 21:11:38 -04:00
2021-07-30 22:46:20 -04:00
local make_font_spec = function(f, size, bold)
2021-07-06 00:11:00 -04:00
return {
family = f,
2021-07-30 22:46:20 -04:00
size = size,
2021-07-06 00:11:00 -04:00
weight = bold and CAIRO_FONT_WEIGHT_BOLD or CAIRO_FONT_WEIGHT_NORMAL,
slant = CAIRO_FONT_WEIGHT_NORMAL,
}
end
local normal_font_spec = make_font_spec(FONT, NORMAL_FONT_SIZE, false)
local label_font_spec = make_font_spec(FONT, PLOT_LABEL_FONT_SIZE, false)
2021-07-06 00:11:00 -04:00
2021-07-11 23:57:56 -04:00
local _text_row_style = function(x_align, color)
2021-07-30 23:05:36 -04:00
return text.config(normal_font_spec, color, x_align, 'center')
2021-07-11 23:57:56 -04:00
end
2021-07-10 17:13:17 -04:00
2021-07-30 22:46:20 -04:00
local _left_text_style = _text_row_style('left', theme.INACTIVE_TEXT_FG)
local _right_text_style = _text_row_style('right', theme.PRIMARY_FG)
2021-07-10 17:13:17 -04:00
2021-07-30 23:05:36 -04:00
local _bare_text = function(pt, _text, _style)
return text.make_plain(pt, _text, _style)
2021-07-10 17:13:17 -04:00
end
2021-07-29 22:37:30 -04:00
local _left_text = function(pt, _text)
2021-07-30 22:46:20 -04:00
return _bare_text(pt, _text, _left_text_style)
2021-07-10 17:13:17 -04:00
end
2021-07-29 22:37:30 -04:00
local _right_text = function(pt, _text)
2021-07-30 22:46:20 -04:00
return _bare_text(pt, _text, _right_text_style)
end
--------------------------------------------------------------------------------
-- timeseries helper functions
local _default_grid_config = timeseries.grid_config(
PLOT_GRID_X_N,
PLOT_GRID_Y_N,
theme.PLOT_GRID_FG
)
local _default_plot_config = timeseries.config(
PLOT_NUM_POINTS,
theme.PLOT_OUTLINE_FG,
theme.PLOT_FILL_BORDER_PRIMARY,
theme.PLOT_FILL_BG_PRIMARY,
_default_grid_config
)
local _format_percent_label = function(_)
2021-08-08 15:58:53 -04:00
return function(z) return string.format('%i%%', z * 100) end
2021-07-30 22:46:20 -04:00
end
local _format_percent_maybe = function(z)
2021-07-30 23:05:36 -04:00
if z == -1 then return 'N/A' else return string.format('%s%%', z) end
2021-07-30 22:46:20 -04:00
end
local _percent_label_config = timeseries.label_config(
theme.INACTIVE_TEXT_FG,
label_font_spec,
_format_percent_label
)
local _make_timeseries = function(x, y, w, h, label_config, update_freq)
return timeseries.make(
2021-08-08 18:13:52 -04:00
geom.make_box(x, y, w, h),
2021-07-30 22:46:20 -04:00
update_freq,
_default_plot_config,
label_config
)
end
local _make_tagged_percent_timeseries = function(x, y, w, h, spacing, label, update_freq, _format)
2021-07-30 22:46:20 -04:00
return {
2021-08-08 18:13:52 -04:00
label = _left_text(geom.make_point(x, y), label),
2021-08-08 18:19:37 -04:00
value = text_threshold.make_formatted(
2021-08-08 18:13:52 -04:00
geom.make_point(x + w, y),
2021-07-30 22:46:20 -04:00
nil,
_right_text_style,
_format,
2021-11-10 16:26:48 -05:00
text_threshold.config(theme.CRITICAL_FG, 80, false)
2021-07-30 22:46:20 -04:00
),
plot = M.make_percent_timeseries(
x,
y + spacing,
w,
h,
update_freq
),
}
end
--------------------------------------------------------------------------------
-- scaled timeseries helper functions
local _base_2_scale_data = function(m)
2021-08-08 18:19:37 -04:00
return scaled_timeseries.scaling_parameters(2, m, 0.9)
2021-07-30 22:46:20 -04:00
end
local _make_scaled_timeseries = function(x, y, w, h, f, min_domain, update_freq)
2021-08-08 18:19:37 -04:00
return scaled_timeseries.make(
2021-08-08 18:13:52 -04:00
geom.make_box(x, y, w, h),
2021-07-30 22:46:20 -04:00
update_freq,
_default_plot_config,
timeseries.label_config(theme.INACTIVE_TEXT_FG, label_font_spec, f),
_base_2_scale_data(min_domain)
)
2021-07-10 17:13:17 -04:00
end
--------------------------------------------------------------------------------
-- header
M.make_header = function(x, y, w, _text)
local bottom_y = y + HEADER_HEIGHT
2021-07-11 21:11:38 -04:00
local underline_y = y + HEADER_UNDERLINE_OFFSET
return {
text = text.make_plain(
2021-08-08 18:13:52 -04:00
geom.make_point(x, y),
2021-07-29 22:37:30 -04:00
_text,
2021-07-30 23:05:36 -04:00
text.config(
make_font_spec(FONT, HEADER_FONT_SIZE, true),
theme.HEADER_FG,
'left',
'top'
2021-07-10 19:28:49 -04:00
)
2021-07-09 00:10:59 -04:00
),
bottom_y = bottom_y,
underline = line.make(
2021-08-06 23:41:17 -04:00
_make_horizontal_line(x, underline_y, w),
2021-07-29 22:37:30 -04:00
line.config(
2021-07-30 23:05:36 -04:00
style.line(HEADER_UNDERLINE_THICKNESS, HEADER_UNDERLINE_CAP),
theme.HEADER_FG,
2021-07-24 01:29:02 -04:00
true
2021-07-10 23:07:27 -04:00
)
)
}
end
M.draw_header = function(cr, header)
2021-07-29 22:37:30 -04:00
text.draw(header.text, cr)
line.draw(header.underline, cr)
end
--------------------------------------------------------------------------------
2021-07-30 22:46:20 -04:00
-- percent timeseries
2021-07-11 14:48:51 -04:00
2021-07-30 22:46:20 -04:00
M.make_percent_timeseries = function(x, y, w, h, update_freq)
return _make_timeseries(x, y, w, h, _percent_label_config, update_freq)
end
--------------------------------------------------------------------------------
2021-07-30 22:46:20 -04:00
-- tagged percent timeseries
2021-07-30 22:46:20 -04:00
M.make_tagged_percent_timeseries = function(x, y, w, h, spacing, label, update_freq)
return _make_tagged_percent_timeseries(
x, y, w, h, spacing, label, update_freq, '%s%%'
)
end
2021-07-30 22:46:20 -04:00
M.make_tagged_maybe_percent_timeseries = function(x, y, w, h, spacing, label, update_freq)
return _make_tagged_percent_timeseries(
x, y, w, h, spacing, label, update_freq, _format_percent_maybe
)
2021-07-13 00:14:04 -04:00
end
2021-07-30 22:46:20 -04:00
M.tagged_percent_timeseries_draw_static = function(pp, cr)
2021-07-29 22:37:30 -04:00
text.draw(pp.label, cr)
timeseries.draw_static(pp.plot, cr)
end
2021-07-30 22:46:20 -04:00
M.tagged_percent_timeseries_draw_dynamic = function(obj, cr)
2021-08-08 18:19:37 -04:00
text_threshold.draw(obj.value, cr)
2021-07-30 22:46:20 -04:00
timeseries.draw_dynamic(obj.plot, cr)
end
M.tagged_percent_timeseries_set = function(obj, percent)
local _percent = pure.round_percent(percent)
text.set(obj.value, _percent)
timeseries.update(obj.plot, _percent / 100)
end
M.tagged_maybe_percent_timeseries_set = function(obj, percent)
if percent == false then
2021-07-30 23:05:36 -04:00
text.set(obj.value, -1)
2021-07-30 22:46:20 -04:00
timeseries.update(obj.plot, 0)
else
M.tagged_percent_timeseries_set(obj, percent)
2021-07-13 00:14:04 -04:00
end
end
--------------------------------------------------------------------------------
-- scaled plot
2021-07-18 19:18:14 -04:00
-- Generate a format string for labels on y axis of plots. If the max of the
-- plot if numerically less than the number of grid lines, this means that
-- some number of decimal places are necessary to accurately display the number.
-- Note that this for now only works when the number of y grid lines if 4, as
-- it gives enough resolution for 1, 0.75, 0.5, and 0.25 but no more
M.y_label_format_string = function(plot_max, unit)
local num_fmt
if plot_max < 2 then
num_fmt = '%.2f'
elseif plot_max < 4 then
num_fmt = '%.1f'
else
num_fmt = '%.0f'
end
return string.format('%s %s', num_fmt, unit)
end
M.converted_y_label_format_generator = function(unit)
return function(plot_max)
2021-08-08 15:58:53 -04:00
local new_prefix, new_max = format.convert_data_val(plot_max)
2021-07-18 19:18:14 -04:00
local conversion_factor = plot_max / new_max
local fmt = M.y_label_format_string(new_max, new_prefix..unit..'/s')
return function(bytes)
return string.format(fmt, bytes / conversion_factor)
end
end
end
--------------------------------------------------------------------------------
2021-07-30 22:46:20 -04:00
-- tagged scaled plot
2021-07-30 22:46:20 -04:00
M.make_tagged_scaled_timeseries = function(x, y, w, h, format_fun, label_fun,
spacing, label, min_domain,
update_freq)
return {
2021-08-08 18:13:52 -04:00
label = _left_text(geom.make_point(x, y), label),
value = text.make_formatted(
2021-08-08 18:13:52 -04:00
geom.make_point(x + w, y),
0,
2021-07-30 22:46:20 -04:00
_right_text_style,
format_fun
2021-07-09 23:53:21 -04:00
),
2021-07-30 22:46:20 -04:00
plot = _make_scaled_timeseries(x, y + spacing, w, h, label_fun, min_domain, update_freq),
}
end
2021-07-30 22:46:20 -04:00
M.tagged_scaled_timeseries_draw_static = function(asp, cr)
2021-07-29 22:37:30 -04:00
text.draw(asp.label, cr)
end
2021-07-30 22:46:20 -04:00
M.tagged_scaled_timeseries_draw_dynamic = function(asp, cr)
2021-07-29 22:37:30 -04:00
text.draw(asp.value, cr)
2021-08-08 18:19:37 -04:00
scaled_timeseries.draw_dynamic(asp.plot, cr)
end
2021-07-30 22:46:20 -04:00
M.tagged_scaled_timeseries_set = function(asp, value)
2021-07-29 22:37:30 -04:00
text.set(asp.value, value)
2021-08-08 18:19:37 -04:00
scaled_timeseries.update(asp.plot, value)
end
2021-07-19 23:58:58 -04:00
--------------------------------------------------------------------------------
-- rate timecourse plots
local make_differential = function(update_frequency)
2021-07-19 23:58:58 -04:00
return function(x0, x1)
-- mask overflow
if x1 > x0 then
return (x1 - x0) * update_frequency
else
return 0
end
end
end
M.make_rate_timeseries = function(x, y, w, h, format_fun, label_fun, spacing,
2021-07-19 23:58:58 -04:00
label, min_domain, update_freq, init)
return {
2021-08-08 18:13:52 -04:00
label = _left_text(geom.make_point(x, y), label),
value = text.make_formatted(
2021-08-08 18:13:52 -04:00
geom.make_point(x + w, y),
2021-07-19 23:58:58 -04:00
0,
2021-07-30 22:46:20 -04:00
_right_text_style,
2021-07-19 23:58:58 -04:00
format_fun
),
2021-07-30 22:46:20 -04:00
plot = _make_scaled_timeseries(x, y + spacing, w, h, label_fun, min_domain, update_freq),
2021-07-19 23:58:58 -04:00
prev_value = init,
derive = make_differential(update_freq),
2021-07-19 23:58:58 -04:00
}
end
2021-07-26 23:45:54 -04:00
M.update_rate_timeseries = function(obj, value)
2021-07-19 23:58:58 -04:00
local rate = obj.derive(obj.prev_value, value)
2021-07-29 22:37:30 -04:00
text.set(obj.value, rate)
2021-08-08 18:19:37 -04:00
scaled_timeseries.update(obj.plot, rate)
2021-07-19 23:58:58 -04:00
obj.prev_value = value
end
--------------------------------------------------------------------------------
2021-07-30 22:46:20 -04:00
-- circle
M.make_circle = function(x, y, r)
2021-08-06 23:41:17 -04:00
return circle.make(
2021-08-08 18:13:52 -04:00
geom.make_circle(x, y, r),
2021-08-06 23:41:17 -04:00
circle.config(style.line(ARC_WIDTH, CAIRO_LINE_CAP_BUTT), theme.BORDER_FG)
2021-07-08 22:57:35 -04:00
)
end
--------------------------------------------------------------------------------
-- ring with text data in the center
2021-11-10 16:26:48 -05:00
M.make_text_circle = function(x, y, r, fmt, threshhold, pre_function)
return {
ring = M.make_circle(x, y, r),
2021-08-08 18:19:37 -04:00
value = text_threshold.make_formatted(
2021-08-08 18:13:52 -04:00
geom.make_point(x, y),
2021-07-19 01:37:47 -04:00
0,
2021-07-30 23:05:36 -04:00
text.config(normal_font_spec, theme.PRIMARY_FG, 'center', 'center'),
fmt,
2021-11-10 16:26:48 -05:00
text_threshold.config(theme.CRITICAL_FG, threshhold, pre_function)
2021-07-09 22:22:49 -04:00
),
}
end
2021-07-30 22:02:46 -04:00
M.text_circle_draw_static = function(tr, cr)
2021-07-29 22:37:30 -04:00
arc.draw(tr.ring, cr)
end
2021-07-30 22:02:46 -04:00
M.text_circle_draw_dynamic = function(tr, cr)
2021-08-08 18:19:37 -04:00
text_threshold.draw(tr.value, cr)
end
2021-07-30 22:02:46 -04:00
M.text_circle_set = function(tr, value)
2021-08-08 18:19:37 -04:00
text_threshold.set(tr.value, value)
end
--------------------------------------------------------------------------------
2021-07-11 23:02:45 -04:00
-- dial
2021-07-11 23:57:56 -04:00
local threshold_indicator = function(threshold)
2021-07-30 23:05:36 -04:00
return source.threshold_config(
theme.INDICATOR_FG_PRIMARY,
theme.INDICATOR_FG_CRITICAL,
2021-07-11 23:57:56 -04:00
threshold
)
end
2021-11-10 16:26:48 -05:00
M.make_dial = function(x, y, radius, thickness, threshold, _format, pre_function)
2021-07-19 21:14:38 -04:00
return {
dial = dial.make(
2021-08-08 18:13:52 -04:00
geom.make_arc(x, y, radius, DIAL_THETA0, DIAL_THETA1),
2021-07-30 23:05:36 -04:00
arc.config(style.line(thickness, CAIRO_LINE_CAP_BUTT), theme.INDICATOR_BG),
2021-07-19 21:14:38 -04:00
threshold_indicator(threshold)
),
2021-11-10 16:26:48 -05:00
text_circle = M.make_text_circle(x, y, radius - thickness / 2 - 2, _format, threshold, pre_function),
2021-07-19 21:14:38 -04:00
}
end
2021-07-26 23:45:54 -04:00
M.dial_set = function(dl, value)
2021-07-29 22:37:30 -04:00
dial.set(dl.dial, value)
2021-07-30 22:02:46 -04:00
M.text_circle_set(dl.text_circle, value)
2021-07-19 21:14:38 -04:00
end
M.dial_draw_static = function(dl, cr)
2021-07-29 22:37:30 -04:00
dial.draw_static(dl.dial, cr)
2021-07-30 22:02:46 -04:00
M.text_circle_draw_static(dl.text_circle, cr)
2021-07-19 21:14:38 -04:00
end
M.dial_draw_dynamic = function(dl, cr)
2021-07-29 22:37:30 -04:00
dial.draw_dynamic(dl.dial, cr)
2021-07-30 22:02:46 -04:00
M.text_circle_draw_dynamic(dl.text_circle, cr)
2021-07-11 23:02:45 -04:00
end
2021-07-11 23:10:35 -04:00
--------------------------------------------------------------------------------
-- compound dial
2021-07-30 22:02:46 -04:00
M.make_compound_dial = function(x, y, outer_radius, inner_radius, thickness,
2021-07-11 23:10:35 -04:00
threshold, num_dials)
2021-08-08 18:19:37 -04:00
return compound_dial.make(
2021-08-08 18:13:52 -04:00
geom.make_arc(x, y, outer_radius, DIAL_THETA0, DIAL_THETA1),
2021-07-30 23:05:36 -04:00
arc.config(style.line(thickness, CAIRO_LINE_CAP_BUTT), theme.INDICATOR_BG),
2021-07-11 23:57:56 -04:00
threshold_indicator(threshold),
2021-07-11 23:10:35 -04:00
inner_radius,
num_dials
)
end
2021-07-11 23:57:56 -04:00
--------------------------------------------------------------------------------
-- annotated compound bar
2021-07-30 22:02:46 -04:00
M.make_compound_bar = function(x, y, w, pad, labels, spacing, thickness, threshold)
2021-07-11 23:57:56 -04:00
return {
2021-08-08 18:19:37 -04:00
labels = text_column.make(
2021-08-08 18:13:52 -04:00
geom.make_point(x, y),
2021-07-11 23:57:56 -04:00
labels,
2021-07-30 22:46:20 -04:00
_left_text_style,
2021-07-11 23:57:56 -04:00
nil,
spacing
),
2021-08-08 18:19:37 -04:00
bars = compound_bar.make(
2021-08-08 18:13:52 -04:00
geom.make_point(x + pad, y),
2021-07-11 23:57:56 -04:00
w - pad,
2021-07-29 22:37:30 -04:00
line.config(
2021-07-30 23:05:36 -04:00
style.line(thickness, CAIRO_LINE_CAP_BUTT),
theme.INDICATOR_BG,
2021-07-22 01:50:15 -04:00
true
2021-07-11 23:57:56 -04:00
),
threshold_indicator(threshold),
spacing,
#labels,
false
)
}
end
M.compound_bar_draw_static = function(cb, cr)
2021-08-08 18:19:37 -04:00
text_column.draw(cb.labels, cr)
compound_bar.draw_static(cb.bars, cr)
2021-07-11 23:57:56 -04:00
end
M.compound_bar_draw_dynamic = function(cb, cr)
2021-08-08 18:19:37 -04:00
compound_bar.draw_dynamic(cb.bars, cr)
2021-07-11 23:57:56 -04:00
end
M.compound_bar_set = function(cb, i, value)
2021-08-08 18:19:37 -04:00
compound_bar.set(cb.bars, i, value)
2021-07-11 23:57:56 -04:00
end
2021-07-11 23:02:45 -04:00
--------------------------------------------------------------------------------
-- separator (eg a horizontal line)
2021-07-11 21:11:38 -04:00
M.make_separator = function(x, y, w)
return line.make(
2021-08-06 23:41:17 -04:00
_make_horizontal_line(x, y, w),
2021-07-29 22:37:30 -04:00
line.config(
2021-07-30 23:05:36 -04:00
style.line(SEPARATOR_THICKNESS, CAIRO_LINE_CAP_BUTT),
theme.BORDER_FG,
2021-07-24 01:29:02 -04:00
true
2021-07-10 23:07:27 -04:00
)
)
end
--------------------------------------------------------------------------------
-- text row (label with a value, aligned as far apart as possible)
M.make_text_row = function(x, y, w, label)
return {
2021-08-08 18:13:52 -04:00
label = _left_text(geom.make_point(x, y), label),
value = _right_text(geom.make_point(x + w, y), nil),
}
end
M.text_row_draw_static = function(row, cr)
2021-07-29 22:37:30 -04:00
text.draw(row.label, cr)
end
M.text_row_draw_dynamic = function(row, cr)
2021-07-29 22:37:30 -04:00
text.draw(row.value, cr)
end
2021-07-26 23:45:54 -04:00
M.text_row_set = function(row, value)
2021-07-29 22:37:30 -04:00
text.set(row.value, value)
end
--------------------------------------------------------------------------------
-- text row with critical indicator
M.make_threshold_text_row = function(x, y, w, label, append_end, limit)
return{
2021-08-08 18:13:52 -04:00
label = _left_text(geom.make_point(x, y), label),
2021-08-08 18:19:37 -04:00
value = text_threshold.make_formatted(
2021-08-08 18:13:52 -04:00
geom.make_point(x + w, y),
2021-07-09 22:22:49 -04:00
nil,
2021-07-30 22:46:20 -04:00
_right_text_style,
2021-07-11 21:11:38 -04:00
append_end,
2021-11-10 16:26:48 -05:00
text_threshold.config(theme.CRITICAL_FG, limit, false)
2021-07-09 22:22:49 -04:00
)
}
end
2021-07-30 22:02:46 -04:00
M.threshold_text_row_draw_static = M.text_row_draw_static
2021-07-30 22:02:46 -04:00
M.threshold_text_row_draw_dynamic = function(row, cr)
2021-08-08 18:19:37 -04:00
text_threshold.draw(row.value, cr)
end
2021-07-30 22:02:46 -04:00
M.threshold_text_row_set = function(row, value)
2021-08-08 18:19:37 -04:00
text_threshold.set(row.value, value)
end
--------------------------------------------------------------------------------
-- multiple text row separated by spacing
2021-07-30 22:02:46 -04:00
M.make_text_rows_formatted = function(x, y, w, spacing, labels, format)
return {
2021-08-08 18:19:37 -04:00
labels = text_column.make(
2021-08-08 18:13:52 -04:00
geom.make_point(x, y),
2021-07-10 17:13:17 -04:00
labels,
2021-07-30 22:46:20 -04:00
_left_text_style,
nil,
2021-07-10 17:13:17 -04:00
spacing
2021-07-09 22:22:49 -04:00
),
2021-08-08 18:19:37 -04:00
values = text_column.make_n(
2021-08-08 18:13:52 -04:00
geom.make_point(x + w, y),
2021-07-10 17:13:17 -04:00
#labels,
2021-07-30 22:46:20 -04:00
_right_text_style,
2021-07-11 23:57:56 -04:00
format,
2021-07-19 01:34:03 -04:00
spacing,
0
2021-07-09 22:22:49 -04:00
)
}
end
M.make_text_rows = function(x, y, w, spacing, labels)
return M.make_text_rows_formatted(
2021-07-18 14:38:41 -04:00
x,
y,
w,
spacing,
labels,
2021-07-11 23:57:56 -04:00
nil
)
end
M.text_rows_draw_static = function(rows, cr)
2021-08-08 18:19:37 -04:00
text_column.draw(rows.labels, cr)
end
M.text_rows_draw_dynamic = function(rows, cr)
2021-08-08 18:19:37 -04:00
text_column.draw(rows.values, cr)
end
2021-07-26 23:45:54 -04:00
M.text_rows_set = function(rows, i, value)
2021-08-08 18:19:37 -04:00
text_column.set(rows.values, i, value)
end
--------------------------------------------------------------------------------
-- table
local default_table_font_spec = make_font_spec(FONT, TABLE_FONT_SIZE, false)
2021-07-11 16:53:25 -04:00
2021-08-08 18:06:28 -04:00
local default_table_config = function(label)
return tbl.config(
rect.config(
style.closed_poly(TABLE_LINE_THICKNESS, CAIRO_LINE_JOIN_MITER),
theme.BORDER_FG
),
line.config(
style.line(TABLE_LINE_THICKNESS, CAIRO_LINE_CAP_BUTT),
theme.BORDER_FG,
true
),
tbl.header_config(
default_table_font_spec,
theme.PRIMARY_FG,
TABLE_HEADER_PAD
),
tbl.body_config(
default_table_font_spec,
theme.INACTIVE_TEXT_FG,
{
tbl.column_config('Name', TABLE_BODY_FORMAT),
tbl.column_config('PID', false),
tbl.column_config(label, false),
}
),
tbl.padding(
TABLE_HORZ_PAD,
TABLE_VERT_PAD,
TABLE_HORZ_PAD,
TABLE_VERT_PAD
)
2021-07-11 21:11:38 -04:00
)
2021-08-08 18:06:28 -04:00
end
2021-07-11 16:53:25 -04:00
2021-08-08 18:06:28 -04:00
M.make_text_table = function(x, y, w, h, n, label)
return tbl.make(
2021-08-08 18:13:52 -04:00
geom.make_box(x, y, w, h),
2021-07-11 16:53:25 -04:00
n,
2021-08-08 18:06:28 -04:00
default_table_config(label)
2021-07-11 16:53:25 -04:00
)
end
--------------------------------------------------------------------------------
-- panel
M.make_panel = function(x, y, w, h, thickness)
2021-08-08 18:19:37 -04:00
return fill_rect.make(
2021-08-08 18:13:52 -04:00
geom.make_box(x, y, w, h),
2021-07-29 22:37:30 -04:00
rect.config(
2021-07-30 23:05:36 -04:00
style.closed_poly(thickness, CAIRO_LINE_JOIN_MITER),
theme.BORDER_FG
2021-07-24 00:32:56 -04:00
),
theme.PANEL_BG
2021-07-10 00:22:02 -04:00
)
end
2022-07-12 01:23:59 -04:00
--------------------------------------------------------------------------------
-- setup functions
local _combine_blocks = function(acc, new)
if new.active == true then
local n = new.f(acc.y + new.offset)
table.insert(acc.objs, n.obj)
acc.y = acc.y + n.h + new.offset
end
return acc
end
local non_false = function(xs)
return pure.filter(function(x) return x ~= false end, xs)
end
2022-07-14 22:49:08 -04:00
M.reduce_blocks_inner = function(f, header, point, width, blocks)
local mk_header = function(y)
local obj = M.make_header(point.x, y, width, header)
return M.mk_acc_static(
obj.bottom_y - y,
function(cr) M.draw_header(cr, obj) end
)
end
local r = pure.reduce(
_combine_blocks,
{y = point.y, objs = {}},
{M.mk_block(mk_header, true, 0), table.unpack(blocks)}
)
2022-07-12 01:23:59 -04:00
local us, ss, ds = table.unpack(pure.unzip(r.objs))
return {
y = r.y,
update = f(table.unpack(non_false(pure.reverse(us)))),
static = pure.sequence(table.unpack(ss)),
dynamic = pure.sequence(table.unpack(non_false(ds)))
2022-07-12 01:23:59 -04:00
}
end
2022-07-13 01:06:15 -04:00
M.reduce_blocks = pure.partial(M.reduce_blocks_inner, pure.compose)
M.reduce_blocks_ = pure.partial(M.reduce_blocks_inner, pure.sequence)
2022-07-12 01:23:59 -04:00
M.mk_acc = function(h, u, s, d)
return {h = h, obj = {u, s, d}}
end
M.mk_acc_static = function(h, s)
return M.mk_acc(h, false, s, false)
end
M.mk_block = function(f, active, offset)
return {f = f, active = active, offset = offset}
end
2022-07-13 01:06:15 -04:00
M.mk_seperator = function(width, x, y)
local separator = M.make_separator(x, y, width)
return M.mk_acc_static(0, pure.partial(line.draw, separator))
end
return M