1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 21:41:53 +03:00
mobile-nixos/boot/gui/main.rb

107 lines
3.2 KiB
Ruby
Raw Normal View History

# File with boot selection
SELECTIONS = "/run/boot/selection.json"
2020-07-24 01:09:50 +03:00
# Runs and prints a command. Probably.
2020-02-29 06:00:06 +03:00
def run(*cmd)
$stderr.puts " $ " + cmd.join(" ")
2020-05-20 06:27:36 +03:00
system(*cmd) unless LVGL::Introspection.simulator?
2020-02-29 06:00:06 +03:00
end
2020-07-24 01:09:50 +03:00
module BootGUI
class MainWindow < LVGUI::BaseWindow
include LVGUI::ButtonPalette
# Add the logo to the view.
def logo()
# Try to find the logo, but don't fail if there isn't one.
file = nil
file = "/etc/logo.svg" if File.exist?("/etc/logo.svg")
file = "./logo.svg" if File.exist?("./logo.svg")
return unless file
if @container.get_height > @container.get_width
LVGL::Hacks::LVNanoSVG.resize_next_width((@container.get_width_fit * 0.8).to_i)
else
# Detecting the available space where the layout will stretch into is
# apparently hard with lvgl, thus we rely on the vertical resolution.
# Meh, that's not *so* bad.
# While it's a crude approximation, for layouting it's fine.
LVGL::Hacks::LVNanoSVG.resize_next_height((@container.get_height * 0.15).to_i)
end
2020-02-29 06:00:06 +03:00
2020-07-24 01:09:50 +03:00
@logo = LVGL::LVImage.new(@container)
@logo.set_src(file)
2020-02-29 06:00:06 +03:00
end
2020-07-24 01:09:50 +03:00
def initialize()
super()
2020-02-29 06:00:06 +03:00
2020-07-24 01:09:50 +03:00
# Add the logo
logo
2020-02-29 06:00:06 +03:00
2020-07-24 01:09:50 +03:00
# An explanatory label
LVGL::LVLabel.new(@container).tap do |label|
label.set_long_mode(LVGL::LABEL_LONG::BREAK)
label.set_text(%Q{Your device booted in recovery mode.})
label.set_align(LVGL::LABEL_ALIGN::CENTER)
label.set_width(@container.get_width_fit)
end
# Our buttons palette!
add_buttons([
["Generations #{LVGL::Symbols::RIGHT}", ->() { GenerationsWindow.instance.present }],
["Reboot to bootloader", ->() { run("reboot bootloader") }],
["Reboot to recovery", ->() { run("reboot recovery") }],
["Reboot to system", ->() { run("reboot") }],
["Power off", ->() { run("poweroff") }],
])
2020-02-29 06:00:06 +03:00
end
end
2020-07-24 01:09:50 +03:00
# Shows the list of generations to boot into.
class GenerationsWindow < LVGUI::BaseWindow
include LVGUI::ButtonPalette
include LVGUI::Window::WithBackButton
goes_back_to ->() { MainWindow.instance }
2020-02-29 06:00:06 +03:00
2020-07-24 01:09:50 +03:00
def initialize()
super()
2020-07-24 01:09:50 +03:00
if File.exist?(::SELECTIONS)
JSON.parse(File.read(::SELECTIONS)).each do |selection|
add_button(selection["name"]) do
File.open("/run/boot/choice", "w") do |file|
file.write(selection["id"])
end
# Put back the console on the framebuffer
VTConsole.map_console(1)
exit 0
end
end
else
LVGL::LVLabel.new(@container).tap do |label|
text = "No generations could be found.\n\n"
if LVGL::Introspection.simulator?
text += "This is normal in the simulator."
else
text += "This is anormal, and may be a sign of things being wrong."
end
label.set_long_mode(LVGL::LABEL_LONG::BREAK)
label.set_text(text)
label.set_align(LVGL::LABEL_ALIGN::CENTER)
label.set_width(@container.get_width_fit)
end
end
end
2020-02-29 06:00:06 +03:00
end
end
2020-07-24 01:09:50 +03:00
# We need to start somewhere...
BootGUI::MainWindow.instance.present
# And keep the GUI active.
LVGUI.main_loop