mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
24 lines
651 B
Ruby
24 lines
651 B
Ruby
module TAC
|
|
class Dialog
|
|
class ConfirmDialog < Dialog
|
|
def build
|
|
@dialog_root.style.border_color = [ Palette::ALERT, darken(Palette::ALERT, 50) ]
|
|
@titlebar.style.background = [ Palette::ALERT, darken(Palette::ALERT, 50) ]
|
|
|
|
background Gosu::Color::GRAY
|
|
label @options[:message]
|
|
|
|
flow width: 1.0, margin_top: THEME_DIALOG_BUTTON_PADDING do
|
|
button "Cancel", width: 0.475 do
|
|
close
|
|
end
|
|
button "Proceed", width: 0.475, **TAC::THEME_DANGER_BUTTON do
|
|
close
|
|
|
|
@options[:callback_method].call
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |