mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 13:32:33 +00:00
28 lines
617 B
Ruby
28 lines
617 B
Ruby
module TAC
|
|
class Dialog
|
|
class TACNETStatusDialog < Dialog
|
|
def build
|
|
background Gosu::Color::GRAY
|
|
@message_label = label CyberarmEngine::Window.instance.backend.tacnet.full_status
|
|
|
|
button "Close", width: 1.0, margin_top: THEME_DIALOG_BUTTON_PADDING do
|
|
try_commit
|
|
end
|
|
|
|
@timer = CyberarmEngine::Timer.new(1000.0) do
|
|
@message_label.value = CyberarmEngine::Window.instance.backend.tacnet.full_status
|
|
end
|
|
end
|
|
|
|
def try_commit
|
|
close
|
|
end
|
|
|
|
def update
|
|
super
|
|
|
|
@timer.update
|
|
end
|
|
end
|
|
end
|
|
end |