mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
21 lines
450 B
Ruby
21 lines
450 B
Ruby
module TAC
|
|
class Dialog
|
|
class ConfirmDialog < Dialog
|
|
def build
|
|
background Gosu::Color::GRAY
|
|
label @options[:message], text_size: 18
|
|
|
|
flow width: 1.0 do
|
|
button "Cancel", width: 0.475, text_size: 18 do
|
|
close
|
|
end
|
|
button "Okay", width: 0.475, text_size: 18 do
|
|
@options[:callback_method].call
|
|
|
|
close
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |