/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include #include namespace GUI { InputBox::InputBox(Window* parent_window, String& text_value, const StringView& prompt, const StringView& title) : Dialog(parent_window) , m_text_value(text_value) , m_prompt(prompt) { set_title(title); build(); } InputBox::~InputBox() { } int InputBox::show(Window* parent_window, String& text_value, const StringView& prompt, const StringView& title) { auto box = InputBox::construct(parent_window, text_value, prompt, title); box->set_resizable(false); if (parent_window) box->set_icon(parent_window->icon()); auto result = box->exec(); text_value = box->text_value(); return result; } void InputBox::build() { auto& widget = set_main_widget(); int text_width = widget.font().width(m_prompt); int title_width = widget.font().width(title()) + 24 /* icon, plus a little padding -- not perfect */; int max_width = max(text_width, title_width); set_rect(x(), y(), max_width + 140, 62); widget.set_layout(); widget.set_fill_with_background_color(true); widget.layout()->set_margins({ 6, 6, 6, 6 }); widget.layout()->set_spacing(6); auto& label_editor_container = widget.add(); label_editor_container.set_layout(); auto& label = label_editor_container.add