1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/examples/hello/app/windows/base_log.rb

31 lines
1018 B
Ruby
Raw Normal View History

module GUI
class BaseLogWindow < LVGUI::BaseWindow
include LVGUI::ButtonPalette
def initialize(explanation:)
super()
LVGUI::BackButton.new(@toolbar, MainWindow.instance)
@explanation = LVGL::LVLabel.new(@toolbar).tap do |label|
label.set_long_mode(LVGL::LABEL_LONG::SROLL_CIRC)
label.set_align(LVGL::LABEL_ALIGN::CENTER)
label.set_y(@toolbar.get_height + @toolbar.get_style(LVGL::CONT_STYLE::MAIN).body_padding_inner)
label.set_width(@toolbar.get_width_fit)
label.set_text(explanation)
end
@container.refresh
@container.set_scrl_layout(LVGL::LAYOUT::COL_R)
end
def set_text(text)
@container.clean
text.split("\n").each do |line|
LVGL::LVLabel.new(@container).tap do |label|
label.set_long_mode(LVGL::LABEL_LONG::BREAK)
label.set_align(LVGL::LABEL_ALIGN::LEFT)
label.set_width(@container.get_width_fit)
label.set_text(line)
end
end
end
end
end