37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibCore/Version.h>
|
|
#include <LibGUI/Dialog.h>
|
|
|
|
namespace GUI {
|
|
|
|
class AboutDialog final : public Dialog {
|
|
C_OBJECT_ABSTRACT(AboutDialog)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<AboutDialog>> try_create(StringView name, StringView version, Gfx::Bitmap const* icon = nullptr, Window* parent_window = nullptr);
|
|
virtual ~AboutDialog() override = default;
|
|
|
|
static ErrorOr<void> show(StringView name, StringView version, Gfx::Bitmap const* icon = nullptr, Window* parent_window = nullptr, Gfx::Bitmap const* window_icon = nullptr)
|
|
{
|
|
auto dialog = TRY(AboutDialog::try_create(name, version, icon, parent_window));
|
|
if (window_icon)
|
|
dialog->set_icon(window_icon);
|
|
dialog->exec();
|
|
return {};
|
|
}
|
|
|
|
private:
|
|
AboutDialog(StringView name, StringView version, Gfx::Bitmap const* icon = nullptr, Window* parent_window = nullptr);
|
|
|
|
DeprecatedString m_name;
|
|
RefPtr<Gfx::Bitmap> m_icon;
|
|
DeprecatedString m_version_string;
|
|
};
|
|
}
|