2020-05-31 02:28:42 +03:00
|
|
|
module GUI
|
|
|
|
class MainWindow < BaseWindow
|
|
|
|
include ButtonPalette
|
|
|
|
def initialize()
|
|
|
|
super()
|
|
|
|
|
|
|
|
LVGL::LVLabel.new(@container).tap do |label|
|
|
|
|
label.set_long_mode(LVGL::LABEL_LONG::BREAK)
|
2020-05-31 04:12:49 +03:00
|
|
|
label.set_text(%Q{Your device booted to\nstage-2 of a NixOS system successfully!\n\nSelect from the following options})
|
2020-05-31 02:28:42 +03:00
|
|
|
label.set_align(LVGL::LABEL_ALIGN::CENTER)
|
|
|
|
label.set_width(@container.get_width_fit)
|
|
|
|
end
|
|
|
|
|
|
|
|
add_buttons([
|
|
|
|
["Display validation", ->() { DisplayValidationWindow.instance.present }],
|
2020-05-31 04:32:30 +03:00
|
|
|
["Logs", ->() { LogsWindow.instance.present }],
|
2020-05-31 02:28:42 +03:00
|
|
|
["About", ->() { AboutWindow.instance.present }],
|
|
|
|
["Quit", ->() { QuitWindow.instance.present }],
|
|
|
|
])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|