1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

LibGUI: Let InputBox display an ImageWidget

InputBox can now be given a bitmap to display alongside its
prompt and editor. Prompts are now optional to allow for
compact dialogs.
This commit is contained in:
thankyouverycool 2023-04-16 16:02:29 -04:00 committed by Andreas Kling
parent 02a9e5d3f6
commit 7c314f3855
2 changed files with 38 additions and 16 deletions

View file

@ -23,9 +23,9 @@ class InputBox : public Dialog {
public:
virtual ~InputBox() override = default;
static ExecResult show(Window* parent_window, String& text_value, StringView prompt, StringView title, InputType input_type = InputType::Text, StringView placeholder = {});
static ErrorOr<ExecResult> try_show(Window* parent_window, String& text_value, StringView prompt, StringView title, InputType input_type = InputType::Text, StringView placeholder = {});
static ErrorOr<NonnullRefPtr<InputBox>> create(Window* parent_window, String text_value, StringView prompt, StringView title, InputType input_type);
static ExecResult show(Window* parent_window, String& text_value, StringView prompt, StringView title, InputType input_type = InputType::Text, StringView placeholder = {}, RefPtr<Gfx::Bitmap const> icon = nullptr);
static ErrorOr<ExecResult> try_show(Window* parent_window, String& text_value, StringView prompt, StringView title, InputType input_type = InputType::Text, StringView placeholder = {}, RefPtr<Gfx::Bitmap const> icon = nullptr);
static ErrorOr<NonnullRefPtr<InputBox>> create(Window* parent_window, String text_value, StringView prompt, StringView title, InputType input_type, RefPtr<Gfx::Bitmap const> icon = nullptr);
String const& text_value() const { return m_text_value; }
void set_text_value(String);
@ -33,7 +33,7 @@ public:
void set_placeholder(StringView);
private:
InputBox(Window* parent_window, String text_value, String title, String prompt, InputType input_type);
InputBox(Window* parent_window, String text_value, String title, String prompt, InputType input_type, RefPtr<Gfx::Bitmap const> icon);
virtual void on_done(ExecResult) override;
ErrorOr<void> build();
@ -46,6 +46,8 @@ private:
RefPtr<Button> m_cancel_button;
RefPtr<TextEditor> m_text_editor;
RefPtr<Label> m_prompt_label;
RefPtr<Widget> m_label_container;
RefPtr<Gfx::Bitmap const> m_icon;
};
}