mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-16 05:42:35 +00:00
25 lines
519 B
Ruby
25 lines
519 B
Ruby
module TAC
|
|
class Dialog
|
|
class NamePromptDialog < Dialog
|
|
def build
|
|
background Gosu::Color::GRAY
|
|
label @options[:subtitle]
|
|
|
|
flow width: 1.0 do
|
|
label "Name", width: 0.25
|
|
edit_line "", width: 0.70
|
|
end
|
|
|
|
flow width: 1.0 do
|
|
button "Cancel", width: 0.475 do
|
|
close
|
|
end
|
|
|
|
button @options[:submit_label], width: 0.475 do
|
|
@options[:callback].call(self)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |