/* * Copyright (c) 2018-2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace GUI { class MessageBox : public Dialog { C_OBJECT(MessageBox) public: enum class Type { None, Information, Warning, Error, Question }; enum class InputType { OK, OKCancel, YesNo, YesNoCancel, }; virtual ~MessageBox() override; static int show(Window* parent_window, StringView text, StringView title, Type type = Type::None, InputType input_type = InputType::OK); static int show_error(Window* parent_window, StringView text); static int ask_about_unsaved_changes(Window* parent_window, StringView path, Optional