2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2021-07-06 16:47:44 +02:00
|
|
|
* Copyright (c) 2021, Jakob-Niklas See <git@nwex.de>
|
2022-02-26 10:50:04 -07:00
|
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-02-06 20:33:02 +01:00
|
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
|
#include <LibGUI/Button.h>
|
|
|
|
|
#include <LibGUI/InputBox.h>
|
|
|
|
|
#include <LibGUI/Label.h>
|
2020-02-23 10:31:26 +01:00
|
|
|
#include <LibGUI/TextBox.h>
|
2022-04-09 09:28:38 +02:00
|
|
|
#include <LibGfx/Font/Font.h>
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
namespace GUI {
|
|
|
|
|
|
2021-11-11 00:55:02 +01:00
|
|
|
InputBox::InputBox(Window* parent_window, String& text_value, StringView prompt, StringView title, StringView placeholder, InputType input_type)
|
2020-03-04 20:53:51 +01:00
|
|
|
: Dialog(parent_window)
|
2021-02-20 12:04:15 +01:00
|
|
|
, m_text_value(text_value)
|
2019-03-19 01:41:00 +01:00
|
|
|
, m_prompt(prompt)
|
2021-07-06 16:47:44 +02:00
|
|
|
, m_placeholder(placeholder)
|
2019-03-19 01:41:00 +01:00
|
|
|
{
|
|
|
|
|
set_title(title);
|
2021-07-24 22:59:39 -06:00
|
|
|
build(input_type);
|
2019-03-19 01:41:00 +01:00
|
|
|
}
|
|
|
|
|
|
2022-05-13 13:10:27 +01:00
|
|
|
Dialog::ExecResult InputBox::show(Window* parent_window, String& text_value, StringView prompt, StringView title, StringView placeholder, InputType input_type)
|
2020-07-16 07:54:42 -06:00
|
|
|
{
|
2021-07-24 22:59:39 -06:00
|
|
|
auto box = InputBox::construct(parent_window, text_value, prompt, title, placeholder, input_type);
|
2020-07-17 10:21:44 -04:00
|
|
|
box->set_resizable(false);
|
|
|
|
|
if (parent_window)
|
|
|
|
|
box->set_icon(parent_window->icon());
|
2020-07-16 07:54:42 -06:00
|
|
|
auto result = box->exec();
|
|
|
|
|
text_value = box->text_value();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-24 22:59:39 -06:00
|
|
|
void InputBox::build(InputType input_type)
|
2019-03-19 01:41:00 +01:00
|
|
|
{
|
2020-03-04 09:46:23 +01:00
|
|
|
auto& widget = set_main_widget<Widget>();
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-03-04 09:46:23 +01:00
|
|
|
int text_width = widget.font().width(m_prompt);
|
|
|
|
|
int title_width = widget.font().width(title()) + 24 /* icon, plus a little padding -- not perfect */;
|
2021-02-25 21:10:47 +01:00
|
|
|
int max_width = max(text_width, title_width);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2021-11-05 01:03:37 +01:00
|
|
|
set_rect(x(), y(), max_width + 140, 66);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-03-04 09:46:23 +01:00
|
|
|
widget.set_layout<VerticalBoxLayout>();
|
|
|
|
|
widget.set_fill_with_background_color(true);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
Userland+LibGUI: Add shorthand versions of the Margins constructor
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same
margin on all edges, for example. The constructors follow CSS' style of
specifying margins. The added constructors are:
- Margins(int all): Sets the same margin on all edges.
- Margins(int vertical, int horizontal): Sets the first argument to top
and bottom margins, and the second argument to left and right margins.
- Margins(int top, int vertical, int bottom): Sets the first argument to
the top margin, the second argument to the left and right margins,
and the third argument to the bottom margin.
2021-08-17 00:11:38 +00:00
|
|
|
widget.layout()->set_margins(6);
|
2020-07-17 10:21:44 -04:00
|
|
|
widget.layout()->set_spacing(6);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-07-17 10:21:44 -04:00
|
|
|
auto& label_editor_container = widget.add<Widget>();
|
|
|
|
|
label_editor_container.set_layout<HorizontalBoxLayout>();
|
|
|
|
|
|
|
|
|
|
auto& label = label_editor_container.add<Label>(m_prompt);
|
2020-12-30 01:23:32 +01:00
|
|
|
label.set_fixed_size(text_width, 16);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2021-07-24 22:59:39 -06:00
|
|
|
switch (input_type) {
|
|
|
|
|
case InputType::Text:
|
|
|
|
|
m_text_editor = label_editor_container.add<TextBox>();
|
|
|
|
|
break;
|
|
|
|
|
case InputType::Password:
|
|
|
|
|
m_text_editor = label_editor_container.add<PasswordBox>();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-20 12:04:15 +01:00
|
|
|
m_text_editor->set_text(m_text_value);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2021-07-06 16:47:44 +02:00
|
|
|
if (!m_placeholder.is_null())
|
|
|
|
|
m_text_editor->set_placeholder(m_placeholder);
|
|
|
|
|
|
2020-03-04 19:07:55 +01:00
|
|
|
auto& button_container_outer = widget.add<Widget>();
|
2021-11-05 01:03:37 +01:00
|
|
|
button_container_outer.set_fixed_height(22);
|
2020-03-04 19:07:55 +01:00
|
|
|
button_container_outer.set_layout<VerticalBoxLayout>();
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-03-04 19:07:55 +01:00
|
|
|
auto& button_container_inner = button_container_outer.add<Widget>();
|
|
|
|
|
button_container_inner.set_layout<HorizontalBoxLayout>();
|
2020-07-17 10:21:44 -04:00
|
|
|
button_container_inner.layout()->set_spacing(6);
|
2021-08-17 00:10:51 +00:00
|
|
|
button_container_inner.layout()->set_margins({ 4, 0, 4, 4 });
|
2020-07-17 10:21:44 -04:00
|
|
|
button_container_inner.layout()->add_spacer();
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-03-04 19:07:55 +01:00
|
|
|
m_ok_button = button_container_inner.add<Button>();
|
2019-05-24 16:32:20 +02:00
|
|
|
m_ok_button->set_text("OK");
|
2020-05-12 20:30:33 +02:00
|
|
|
m_ok_button->on_click = [this](auto) {
|
2021-01-10 10:02:20 +01:00
|
|
|
dbgln("GUI::InputBox: OK button clicked");
|
2019-03-19 02:20:00 +01:00
|
|
|
m_text_value = m_text_editor->text();
|
2022-05-13 13:10:27 +01:00
|
|
|
done(ExecResult::OK);
|
2019-03-19 01:41:00 +01:00
|
|
|
};
|
2022-01-24 14:29:21 -05:00
|
|
|
m_ok_button->set_default(true);
|
2019-03-19 01:41:00 +01:00
|
|
|
|
2020-04-29 19:31:15 +02:00
|
|
|
m_cancel_button = button_container_inner.add<Button>();
|
|
|
|
|
m_cancel_button->set_text("Cancel");
|
2020-05-12 20:30:33 +02:00
|
|
|
m_cancel_button->on_click = [this](auto) {
|
2021-01-10 10:02:20 +01:00
|
|
|
dbgln("GUI::InputBox: Cancel button clicked");
|
2022-05-13 13:10:27 +01:00
|
|
|
done(ExecResult::Cancel);
|
2020-04-29 19:31:15 +02:00
|
|
|
};
|
|
|
|
|
|
2019-04-10 03:08:29 +02:00
|
|
|
m_text_editor->on_escape_pressed = [this] {
|
2019-03-19 02:20:00 +01:00
|
|
|
m_cancel_button->click();
|
2019-03-19 01:41:00 +01:00
|
|
|
};
|
2019-03-19 02:20:00 +01:00
|
|
|
m_text_editor->set_focus(true);
|
2019-03-19 01:41:00 +01:00
|
|
|
}
|
2020-02-02 15:07:41 +01:00
|
|
|
|
|
|
|
|
}
|